@webos-tools/cli 3.1.3 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1271) hide show
  1. package/.vscode/c_cpp_properties.json +21 -0
  2. package/.vscode/launch.json +97 -0
  3. package/.vscode/settings.json +13 -0
  4. package/.vscode/tasks.json +32 -0
  5. package/CHANGELOG.md +34 -0
  6. package/README.md +226 -219
  7. package/bin/ares-config.js +210 -201
  8. package/bin/ares-device.js +222 -219
  9. package/bin/ares-launch.js +318 -318
  10. package/bin/ares-novacom.js +220 -220
  11. package/bin/ares-package.js +347 -336
  12. package/files/conf/ares.json +48 -48
  13. package/files/conf/command-service.json +78 -73
  14. package/files/conf/config.json +31 -31
  15. package/files/conf/novacom-devices.json +68 -51
  16. package/files/conf/sdk.json +8 -8
  17. package/files/conf/template.json +57 -57
  18. package/files/conf-base/env/sdk-signage.json +8 -0
  19. package/files/conf-base/key/pubkey-signage.pem +9 -0
  20. package/files/conf-base/profile/config-signage.json +29 -0
  21. package/files/conf-base/query/signage/query-app.json +14 -0
  22. package/files/conf-base/query/signage/query-service.json +6 -0
  23. package/files/conf-base/template-conf/signage-sdk-templates.json +239 -0
  24. package/files/help/ares-config.help +48 -48
  25. package/files/help/ares-generate.help +101 -91
  26. package/files/help/ares-inspect.help +77 -76
  27. package/files/help/ares-launch.help +111 -105
  28. package/files/help/ares-package.help +103 -101
  29. package/files/help/ares-setup-device.help +196 -156
  30. package/files/schema/NovacomDevices.schema +63 -62
  31. package/files/templates/signage-sdk-templates/Backlight_Scheduling/clockTable.js +29 -0
  32. package/files/templates/signage-sdk-templates/Backlight_Scheduling/index.html +53 -0
  33. package/files/templates/signage-sdk-templates/Backlight_Scheduling/js/idcap.js +21 -0
  34. package/files/templates/signage-sdk-templates/Backlight_Scheduling/remocon.js +214 -0
  35. package/files/templates/signage-sdk-templates/Backlight_Scheduling/scheduler.js +122 -0
  36. package/files/templates/signage-sdk-templates/Backlight_Scheduling/setanddelete.js +25 -0
  37. package/files/templates/signage-sdk-templates/Backlight_Scheduling/style.css +213 -0
  38. package/files/templates/signage-sdk-templates/Download_Progress/app.css +27 -0
  39. package/files/templates/signage-sdk-templates/Download_Progress/app.js +407 -0
  40. package/files/templates/signage-sdk-templates/Download_Progress/index.html +32 -0
  41. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/2.7.0/cordova.webos.js +7038 -0
  42. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova/LICENSE +201 -0
  43. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/configuration.js +1 -0
  44. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/deviceInfo.js +1 -0
  45. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/inputSource.js +1 -0
  46. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/power.js +1 -0
  47. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/signage.js +1 -0
  48. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/sound.js +1 -0
  49. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/storage.js +1 -0
  50. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.0/video.js +1 -0
  51. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/configuration.js +1 -0
  52. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/deviceInfo.js +1 -0
  53. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/inputSource.js +1 -0
  54. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/power.js +1 -0
  55. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/signage.js +1 -0
  56. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/sound.js +1 -0
  57. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/storage.js +1 -0
  58. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.1/video.js +1 -0
  59. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/configuration.js +1 -0
  60. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/deviceInfo.js +1 -0
  61. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/inputSource.js +1 -0
  62. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/power.js +1 -0
  63. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/signage.js +1 -0
  64. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/sound.js +1 -0
  65. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/storage.js +23 -0
  66. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.2/video.js +1 -0
  67. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/configuration.js +1 -0
  68. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/deviceInfo.js +1 -0
  69. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/inputSource.js +1 -0
  70. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/power.js +1 -0
  71. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/signage.js +1 -0
  72. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/sound.js +1 -0
  73. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/storage.js +1 -0
  74. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.3/video.js +1 -0
  75. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/configuration.js +9 -0
  76. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/deviceInfo.js +9 -0
  77. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/inputSource.js +9 -0
  78. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/power.js +9 -0
  79. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/security.js +9 -0
  80. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/signage.js +9 -0
  81. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/sound.js +9 -0
  82. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/storage.js +9 -0
  83. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/time.js +9 -0
  84. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/utility.js +9 -0
  85. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.0/video.js +9 -0
  86. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/configuration.js +9 -0
  87. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/deviceInfo.js +9 -0
  88. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/inputSource.js +9 -0
  89. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/power.js +9 -0
  90. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/security.js +9 -0
  91. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/signage.js +9 -0
  92. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/sound.js +9 -0
  93. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/storage.js +9 -0
  94. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/time.js +9 -0
  95. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/utility.js +9 -0
  96. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.1/video.js +9 -0
  97. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/configuration.js +9 -0
  98. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/deviceInfo.js +9 -0
  99. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/inputSource.js +9 -0
  100. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/power.js +9 -0
  101. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/security.js +9 -0
  102. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/signage.js +8 -0
  103. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/sound.js +9 -0
  104. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/storage.js +9 -0
  105. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/time.js +9 -0
  106. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/utility.js +9 -0
  107. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.2/video.js +9 -0
  108. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/configuration.js +9 -0
  109. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/deviceInfo.js +9 -0
  110. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/inputSource.js +9 -0
  111. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/power.js +9 -0
  112. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/security.js +9 -0
  113. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/signage.js +9 -0
  114. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/sound.js +9 -0
  115. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/storage.js +9 -0
  116. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/time.js +9 -0
  117. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/utility.js +9 -0
  118. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.3/video.js +9 -0
  119. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/configuration.js +1 -0
  120. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/deviceInfo.js +1 -0
  121. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/inputSource.js +1 -0
  122. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/power.js +1 -0
  123. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/security.js +1 -0
  124. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/signage.js +1 -0
  125. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/sound.js +1 -0
  126. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/storage.js +1 -0
  127. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/time.js +1 -0
  128. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/utility.js +1 -0
  129. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.4/video.js +1 -0
  130. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/configuration.js +1 -0
  131. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  132. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/inputSource.js +1 -0
  133. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/power.js +1 -0
  134. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/security.js +1 -0
  135. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/signage.js +1 -0
  136. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/sound.js +1 -0
  137. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/storage.js +1 -0
  138. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/time.js +1 -0
  139. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/utility.js +1 -0
  140. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.4.5/video.js +1 -0
  141. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/configuration.js +1 -0
  142. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/deviceInfo.js +1 -0
  143. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/inputSource.js +1 -0
  144. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/power.js +1 -0
  145. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/security.js +1 -0
  146. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/signage.js +1 -0
  147. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/sound.js +1 -0
  148. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/storage.js +1 -0
  149. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/time.js +1 -0
  150. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/utility.js +1 -0
  151. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.0/video.js +1 -0
  152. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/configuration.js +1 -0
  153. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/deviceInfo.js +1 -0
  154. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/inputSource.js +1 -0
  155. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/power.js +1 -0
  156. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/security.js +1 -0
  157. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/signage.js +1 -0
  158. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/sound.js +1 -0
  159. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/storage.js +1 -0
  160. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/time.js +1 -0
  161. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/utility.js +1 -0
  162. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.1/video.js +1 -0
  163. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/configuration.js +1 -0
  164. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/deviceInfo.js +1 -0
  165. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/inputSource.js +1 -0
  166. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/power.js +1 -0
  167. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/security.js +1 -0
  168. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/signage.js +1 -0
  169. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/sound.js +1 -0
  170. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/storage.js +1 -0
  171. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/time.js +1 -0
  172. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/utility.js +1 -0
  173. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.11/video.js +1 -0
  174. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/configuration.js +1 -0
  175. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  176. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/inputSource.js +1 -0
  177. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/power.js +1 -0
  178. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/security.js +1 -0
  179. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/signage.js +1 -0
  180. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/sound.js +1 -0
  181. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/storage.js +1 -0
  182. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/time.js +1 -0
  183. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/utility.js +1 -0
  184. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.12/video.js +1 -0
  185. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/configuration.js +1 -0
  186. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/deviceInfo.js +1 -0
  187. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/inputSource.js +1 -0
  188. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/power.js +1 -0
  189. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/security.js +1 -0
  190. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/signage.js +1 -0
  191. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/sound.js +1 -0
  192. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/storage.js +1 -0
  193. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/time.js +1 -0
  194. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/utility.js +1 -0
  195. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.2/video.js +1 -0
  196. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/configuration.js +1 -0
  197. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/deviceInfo.js +1 -0
  198. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/inputSource.js +1 -0
  199. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/power.js +1 -0
  200. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/security.js +1 -0
  201. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/signage.js +1 -0
  202. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/sound.js +1 -0
  203. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/storage.js +1 -0
  204. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/time.js +1 -0
  205. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/utility.js +1 -0
  206. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.3/video.js +1 -0
  207. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/configuration.js +1 -0
  208. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/deviceInfo.js +1 -0
  209. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/inputSource.js +1 -0
  210. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/power.js +1 -0
  211. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/security.js +1 -0
  212. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/signage.js +1 -0
  213. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/sound.js +1 -0
  214. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/storage.js +1 -0
  215. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/time.js +1 -0
  216. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/utility.js +1 -0
  217. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.4/video.js +1 -0
  218. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/configuration.js +1 -0
  219. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/deviceInfo.js +1 -0
  220. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/inputSource.js +1 -0
  221. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/power.js +1 -0
  222. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/security.js +1 -0
  223. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/signage.js +1 -0
  224. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/sound.js +1 -0
  225. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/storage.js +1 -0
  226. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/time.js +1 -0
  227. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/utility.js +1 -0
  228. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.5/video.js +1 -0
  229. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/configuration.js +1 -0
  230. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/deviceInfo.js +1 -0
  231. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/inputSource.js +1 -0
  232. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/power.js +1 -0
  233. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/security.js +1 -0
  234. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/signage.js +1 -0
  235. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/sound.js +1 -0
  236. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/storage.js +1 -0
  237. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/time.js +1 -0
  238. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/utility.js +1 -0
  239. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.6/video.js +1 -0
  240. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/configuration.js +1 -0
  241. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/deviceInfo.js +1 -0
  242. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/inputSource.js +1 -0
  243. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/power.js +1 -0
  244. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/security.js +1 -0
  245. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/signage.js +1 -0
  246. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/sound.js +1 -0
  247. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/storage.js +1 -0
  248. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/time.js +1 -0
  249. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/utility.js +1 -0
  250. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.7/video.js +1 -0
  251. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/configuration.js +1 -0
  252. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/deviceInfo.js +1 -0
  253. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/inputSource.js +1 -0
  254. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/power.js +1 -0
  255. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/security.js +1 -0
  256. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/signage.js +1 -0
  257. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/sound.js +1 -0
  258. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/storage.js +1 -0
  259. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/time.js +1 -0
  260. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/utility.js +1 -0
  261. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.5.8/video.js +1 -0
  262. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/configuration.js +1 -0
  263. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/deviceInfo.js +1 -0
  264. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/inputSource.js +1 -0
  265. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/power.js +1 -0
  266. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/security.js +1 -0
  267. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/signage.js +1 -0
  268. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/sound.js +1 -0
  269. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/storage.js +1 -0
  270. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/time.js +1 -0
  271. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/utility.js +1 -0
  272. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.0/video.js +1 -0
  273. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/configuration.js +1 -0
  274. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/deviceInfo.js +1 -0
  275. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/inputSource.js +1 -0
  276. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/power.js +1 -0
  277. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/security.js +1 -0
  278. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/signage.js +1 -0
  279. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/sound.js +1 -0
  280. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/storage.js +1 -0
  281. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/time.js +1 -0
  282. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/utility.js +1 -0
  283. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.1/video.js +1 -0
  284. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/configuration.js +1 -0
  285. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/deviceInfo.js +1 -0
  286. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/inputSource.js +1 -0
  287. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/power.js +1 -0
  288. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/security.js +1 -0
  289. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/signage.js +1 -0
  290. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/sound.js +1 -0
  291. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/storage.js +1 -0
  292. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/time.js +1 -0
  293. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/utility.js +1 -0
  294. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.2/video.js +1 -0
  295. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/configuration.js +1 -0
  296. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/deviceInfo.js +1 -0
  297. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/inputSource.js +1 -0
  298. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/power.js +1 -0
  299. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/security.js +1 -0
  300. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/signage.js +1 -0
  301. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/sound.js +1 -0
  302. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/storage.js +1 -0
  303. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/time.js +1 -0
  304. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/utility.js +1 -0
  305. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.3/video.js +1 -0
  306. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/configuration.js +1 -0
  307. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/deviceInfo.js +1 -0
  308. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/inputSource.js +1 -0
  309. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/led.js +1 -0
  310. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/power.js +1 -0
  311. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/security.js +1 -0
  312. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/signage.js +1 -0
  313. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/sound.js +1 -0
  314. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/storage.js +1 -0
  315. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/time.js +1 -0
  316. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/utility.js +1 -0
  317. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.7/video.js +1 -0
  318. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/configuration.js +1 -0
  319. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  320. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/inputSource.js +1 -0
  321. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/led.js +1 -0
  322. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/power.js +1 -0
  323. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/security.js +1 -0
  324. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/signage.js +1 -0
  325. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/sound.js +1 -0
  326. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/storage.js +1 -0
  327. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/time.js +1 -0
  328. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/utility.js +1 -0
  329. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.6.8/video.js +1 -0
  330. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/configuration.js +1 -0
  331. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/deviceInfo.js +1 -0
  332. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/inputSource.js +1 -0
  333. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/iot.js +1 -0
  334. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/power.js +1 -0
  335. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/security.js +1 -0
  336. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/signage.js +1 -0
  337. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/sound.js +1 -0
  338. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/storage.js +1 -0
  339. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/time.js +1 -0
  340. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/utility.js +1 -0
  341. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.0/video.js +1 -0
  342. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/configuration.js +1 -0
  343. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/deviceInfo.js +1 -0
  344. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/inputSource.js +1 -0
  345. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/iot.js +1 -0
  346. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/power.js +1 -0
  347. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/security.js +1 -0
  348. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/signage.js +1 -0
  349. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/sound.js +1 -0
  350. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/storage.js +1 -0
  351. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/time.js +1 -0
  352. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/utility.js +1 -0
  353. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.1/video.js +1 -0
  354. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/configuration.js +1 -0
  355. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/deviceInfo.js +1 -0
  356. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/inputSource.js +1 -0
  357. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/iot.js +1 -0
  358. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/led.js +1 -0
  359. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/power.js +1 -0
  360. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/security.js +1 -0
  361. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/signage.js +1 -0
  362. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/sound.js +1 -0
  363. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/storage.js +1 -0
  364. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/time.js +1 -0
  365. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/utility.js +1 -0
  366. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.5/video.js +1 -0
  367. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/configuration.js +1 -0
  368. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  369. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/inputSource.js +1 -0
  370. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/iot.js +1 -0
  371. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/led.js +1 -0
  372. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/power.js +1 -0
  373. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/security.js +1 -0
  374. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/signage.js +1 -0
  375. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/sound.js +1 -0
  376. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/storage.js +1 -0
  377. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/time.js +1 -0
  378. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/utility.js +1 -0
  379. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.7.6/video.js +1 -0
  380. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/configuration.js +1 -0
  381. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/deviceInfo.js +1 -0
  382. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/inputSource.js +1 -0
  383. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/iot.js +1 -0
  384. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/power.js +1 -0
  385. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/security.js +1 -0
  386. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/signage.js +1 -0
  387. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/sound.js +1 -0
  388. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/storage.js +1 -0
  389. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/time.js +1 -0
  390. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/utility.js +1 -0
  391. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.0/video.js +1 -0
  392. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/configuration.js +1 -0
  393. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  394. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/inputSource.js +1 -0
  395. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/iot.js +1 -0
  396. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/power.js +1 -0
  397. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/security.js +1 -0
  398. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/signage.js +1 -0
  399. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/sound.js +1 -0
  400. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/storage.js +1 -0
  401. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/time.js +1 -0
  402. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/utility.js +1 -0
  403. package/files/templates/signage-sdk-templates/Download_Progress/js/cordova-cd/1.8.1/video.js +1 -0
  404. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.2.js +14 -0
  405. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.1.js +1 -0
  406. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.3.js +1 -0
  407. package/files/templates/signage-sdk-templates/Download_Progress/js/custom/custom1.4.js +14 -0
  408. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/README.txt +40 -0
  409. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gpio.js +16 -0
  410. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/gps.js +16 -0
  411. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/humidity.js +16 -0
  412. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/light.js +16 -0
  413. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/nfc.js +16 -0
  414. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/rfid.js +16 -0
  415. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/temperature.js +16 -0
  416. package/files/templates/signage-sdk-templates/Download_Progress/js/harmony/thermalPrinter.js +16 -0
  417. package/files/templates/signage-sdk-templates/Download_Progress/js/idcap.js +21 -0
  418. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/LICENSE-2.0.txt +202 -0
  419. package/files/templates/signage-sdk-templates/Download_Progress/js/webOS/webOS.js +1 -0
  420. package/files/templates/signage-sdk-templates/Download_Progress/res/webossignage_logo.png +0 -0
  421. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/css/styles.css +270 -0
  422. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/data/data.json +12 -0
  423. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans300.otf +0 -0
  424. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/fonts/MuseoSans700Italic.otf +0 -0
  425. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/index.html +43 -0
  426. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/controller.js +263 -0
  427. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/js/helpers/util.js +130 -0
  428. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/readme.txt +26 -0
  429. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_img_sign.png +0 -0
  430. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/images/tpl_01_logo_nike.png +0 -0
  431. package/files/templates/signage-sdk-templates/Fashion_Multimedia_Ad/res/videos/tpl_01_video.mp4 +0 -0
  432. package/files/templates/signage-sdk-templates/File_Explorer/README.txt +16 -0
  433. package/files/templates/signage-sdk-templates/File_Explorer/index.html +12 -0
  434. package/files/templates/signage-sdk-templates/File_Explorer/js/Root.js +39 -0
  435. package/files/templates/signage-sdk-templates/File_Explorer/js/definition.js +59 -0
  436. package/files/templates/signage-sdk-templates/File_Explorer/js/explorer.js +367 -0
  437. package/files/templates/signage-sdk-templates/File_Explorer/js/explorerController.js +462 -0
  438. package/files/templates/signage-sdk-templates/File_Explorer/js/idcap.js +21 -0
  439. package/files/templates/signage-sdk-templates/File_Explorer/js/mainController.js +261 -0
  440. package/files/templates/signage-sdk-templates/File_Explorer/style.css +233 -0
  441. package/files/templates/signage-sdk-templates/Flight_Schedule/appinfo.json +11 -0
  442. package/files/templates/signage-sdk-templates/Flight_Schedule/css/styles.css +168 -0
  443. package/files/templates/signage-sdk-templates/Flight_Schedule/data/data.json +5 -0
  444. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans300.otf +0 -0
  445. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans500.otf +0 -0
  446. package/files/templates/signage-sdk-templates/Flight_Schedule/fonts/MuseoSans700.otf +0 -0
  447. package/files/templates/signage-sdk-templates/Flight_Schedule/images/AAir.png +0 -0
  448. package/files/templates/signage-sdk-templates/Flight_Schedule/images/BAirline.png +0 -0
  449. package/files/templates/signage-sdk-templates/Flight_Schedule/images/CAirline.png +0 -0
  450. package/files/templates/signage-sdk-templates/Flight_Schedule/images/DAir.png +0 -0
  451. package/files/templates/signage-sdk-templates/Flight_Schedule/images/EAirline.png +0 -0
  452. package/files/templates/signage-sdk-templates/Flight_Schedule/images/tpl_05_img_flight.png +0 -0
  453. package/files/templates/signage-sdk-templates/Flight_Schedule/index.html +32 -0
  454. package/files/templates/signage-sdk-templates/Flight_Schedule/js/controller.js +235 -0
  455. package/files/templates/signage-sdk-templates/Flight_Schedule/js/helpers/util.js +183 -0
  456. package/files/templates/signage-sdk-templates/Flight_Schedule/readme.txt +29 -0
  457. package/files/templates/signage-sdk-templates/Flight_Schedule/server/example.json +4 -0
  458. package/files/templates/signage-sdk-templates/Flight_Schedule/server/package.json +9 -0
  459. package/files/templates/signage-sdk-templates/Flight_Schedule/server/readme.txt +30 -0
  460. package/files/templates/signage-sdk-templates/Flight_Schedule/server/routes/flights.js +493 -0
  461. package/files/templates/signage-sdk-templates/Flight_Schedule/server/server.js +43 -0
  462. package/files/templates/signage-sdk-templates/Information_Board/css/styles.css +239 -0
  463. package/files/templates/signage-sdk-templates/Information_Board/data/data.json +49 -0
  464. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 300.otf +0 -0
  465. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 500.otf +0 -0
  466. package/files/templates/signage-sdk-templates/Information_Board/fonts/Museo Sans 700.otf +0 -0
  467. package/files/templates/signage-sdk-templates/Information_Board/index.html +101 -0
  468. package/files/templates/signage-sdk-templates/Information_Board/js/controller.js +111 -0
  469. package/files/templates/signage-sdk-templates/Information_Board/js/helpers/util.js +130 -0
  470. package/files/templates/signage-sdk-templates/Information_Board/readme.txt +22 -0
  471. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_main_01.png +0 -0
  472. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_img_news.png +0 -0
  473. package/files/templates/signage-sdk-templates/Information_Board/res/images/tpl_06_logo_harvard.png +0 -0
  474. package/files/templates/signage-sdk-templates/Information_Kiosk/css/styles.css +387 -0
  475. package/files/templates/signage-sdk-templates/Information_Kiosk/data/data.json +185 -0
  476. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300 Italic.otf +0 -0
  477. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 300.otf +0 -0
  478. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500 Italic.otf +0 -0
  479. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 500.otf +0 -0
  480. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700 Italic.otf +0 -0
  481. package/files/templates/signage-sdk-templates/Information_Kiosk/fonts/Museo Sans 700.otf +0 -0
  482. package/files/templates/signage-sdk-templates/Information_Kiosk/index.html +320 -0
  483. package/files/templates/signage-sdk-templates/Information_Kiosk/js/controller.js +373 -0
  484. package/files/templates/signage-sdk-templates/Information_Kiosk/js/helpers/util.js +130 -0
  485. package/files/templates/signage-sdk-templates/Information_Kiosk/readme.txt +26 -0
  486. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_n.png +0 -0
  487. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_l_p.png +0 -0
  488. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_n.png +0 -0
  489. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_arrow_r_p.png +0 -0
  490. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_n.png +0 -0
  491. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_close_p.png +0 -0
  492. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_n.png +0 -0
  493. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_btn_rotation_p.png +0 -0
  494. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_bg_01.png +0 -0
  495. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_01.png +0 -0
  496. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_02.png +0 -0
  497. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_03.png +0 -0
  498. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_04.png +0 -0
  499. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_05.png +0 -0
  500. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_06.png +0 -0
  501. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_07.png +0 -0
  502. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_08.png +0 -0
  503. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_09.png +0 -0
  504. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_10.png +0 -0
  505. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_11.png +0 -0
  506. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_12.png +0 -0
  507. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_01.png +0 -0
  508. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_02.png +0 -0
  509. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_03.png +0 -0
  510. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_04.png +0 -0
  511. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_05.png +0 -0
  512. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_list_3_06.png +0 -0
  513. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_01.png +0 -0
  514. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_02.png +0 -0
  515. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_03.png +0 -0
  516. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_04.png +0 -0
  517. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_05.png +0 -0
  518. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_06.png +0 -0
  519. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_07.png +0 -0
  520. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_08.png +0 -0
  521. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_09.png +0 -0
  522. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_10.png +0 -0
  523. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_11.png +0 -0
  524. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_popup_list_12.png +0 -0
  525. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_01.png +0 -0
  526. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_img_style_02.png +0 -0
  527. package/files/templates/signage-sdk-templates/Information_Kiosk/res/images/tpl_10_logo.png +0 -0
  528. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/index.html +40 -0
  529. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/2.7.0/cordova.webos.js +7038 -0
  530. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova/LICENSE +201 -0
  531. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/configuration.js +1 -0
  532. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/deviceInfo.js +1 -0
  533. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/inputSource.js +1 -0
  534. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/power.js +1 -0
  535. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/signage.js +1 -0
  536. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/sound.js +1 -0
  537. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/storage.js +23 -0
  538. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.2/video.js +1 -0
  539. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/configuration.js +1 -0
  540. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/deviceInfo.js +1 -0
  541. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/inputSource.js +1 -0
  542. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/power.js +1 -0
  543. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/signage.js +1 -0
  544. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/sound.js +1 -0
  545. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/storage.js +1 -0
  546. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.3/video.js +1 -0
  547. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/configuration.js +1 -0
  548. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/deviceInfo.js +1 -0
  549. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/inputSource.js +1 -0
  550. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/power.js +1 -0
  551. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/security.js +1 -0
  552. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/signage.js +1 -0
  553. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/sound.js +1 -0
  554. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/storage.js +1 -0
  555. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/time.js +1 -0
  556. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/utility.js +1 -0
  557. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.4.5/video.js +1 -0
  558. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/configuration.js +1 -0
  559. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/deviceInfo.js +1 -0
  560. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/inputSource.js +1 -0
  561. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/power.js +1 -0
  562. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/security.js +1 -0
  563. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/signage.js +1 -0
  564. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/sound.js +1 -0
  565. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/storage.js +1 -0
  566. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/time.js +1 -0
  567. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/utility.js +1 -0
  568. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.5.12/video.js +1 -0
  569. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/configuration.js +1 -0
  570. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/deviceInfo.js +1 -0
  571. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/inputSource.js +1 -0
  572. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/led.js +1 -0
  573. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/power.js +1 -0
  574. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/security.js +1 -0
  575. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/signage.js +1 -0
  576. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/sound.js +1 -0
  577. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/storage.js +1 -0
  578. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/time.js +1 -0
  579. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/utility.js +1 -0
  580. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.6.8/video.js +1 -0
  581. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/configuration.js +1 -0
  582. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/deviceInfo.js +1 -0
  583. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/inputSource.js +1 -0
  584. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/iot.js +1 -0
  585. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/led.js +1 -0
  586. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/power.js +1 -0
  587. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/security.js +1 -0
  588. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/signage.js +1 -0
  589. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/sound.js +1 -0
  590. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/storage.js +1 -0
  591. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/time.js +1 -0
  592. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/utility.js +1 -0
  593. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.7.6/video.js +1 -0
  594. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/configuration.js +1 -0
  595. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/deviceInfo.js +1 -0
  596. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/inputSource.js +1 -0
  597. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/iot.js +1 -0
  598. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/power.js +1 -0
  599. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/security.js +1 -0
  600. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/signage.js +1 -0
  601. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/sound.js +1 -0
  602. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/storage.js +1 -0
  603. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/time.js +1 -0
  604. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/utility.js +1 -0
  605. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/cordova-cd/1.8.1/video.js +1 -0
  606. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/custom1.4.js +14 -0
  607. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/idcap.js +21 -0
  608. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/initializer.js +234 -0
  609. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/remocon.js +73 -0
  610. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/scheduler.js +84 -0
  611. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/js/videoPlayer.js +352 -0
  612. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/remocon.png +0 -0
  613. package/files/templates/signage-sdk-templates/Local_Content_Scheduling/style.css +99 -0
  614. package/files/templates/signage-sdk-templates/Mart/css/styles.css +248 -0
  615. package/files/templates/signage-sdk-templates/Mart/data/data.json +37 -0
  616. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300 Italic.otf +0 -0
  617. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 300.otf +0 -0
  618. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 500.otf +0 -0
  619. package/files/templates/signage-sdk-templates/Mart/fonts/Museo Sans 700.otf +0 -0
  620. package/files/templates/signage-sdk-templates/Mart/index.html +81 -0
  621. package/files/templates/signage-sdk-templates/Mart/js/controller.js +102 -0
  622. package/files/templates/signage-sdk-templates/Mart/js/helpers/util.js +130 -0
  623. package/files/templates/signage-sdk-templates/Mart/readme.txt +26 -0
  624. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img.png +0 -0
  625. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_bg.png +0 -0
  626. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_brand.png +0 -0
  627. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_01.png +0 -0
  628. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_02.png +0 -0
  629. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_03.png +0 -0
  630. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_list_04.png +0 -0
  631. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_img_tag.png +0 -0
  632. package/files/templates/signage-sdk-templates/Mart/res/images/tpl_09_logo.png +0 -0
  633. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/css/styles.css +40 -0
  634. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/data/data.json +6 -0
  635. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/index.html +28 -0
  636. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/controller.js +427 -0
  637. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/js/helpers/util.js +134 -0
  638. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/readme.txt +26 -0
  639. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/images/tpl_02_img_poster.jpg +0 -0
  640. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_01.mp4 +0 -0
  641. package/files/templates/signage-sdk-templates/Multimedia_Advertisement/res/videos/tpl_02_video_02.mp4 +0 -0
  642. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/css/styles.css +163 -0
  643. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/data/data.json +92 -0
  644. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans300.otf +0 -0
  645. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans500.otf +0 -0
  646. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700.otf +0 -0
  647. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/fonts/MuseoSans700Italic.otf +0 -0
  648. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/index.html +197 -0
  649. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/controller.js +158 -0
  650. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/js/helpers/util.js +130 -0
  651. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/readme.txt +26 -0
  652. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_bg_top.png +0 -0
  653. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_01.png +0 -0
  654. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_02.png +0 -0
  655. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_03.png +0 -0
  656. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_04.png +0 -0
  657. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_05.png +0 -0
  658. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_06.png +0 -0
  659. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_07.png +0 -0
  660. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_08.png +0 -0
  661. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_img_menu_09.png +0 -0
  662. package/files/templates/signage-sdk-templates/Price_Board_for_QSR/res/images/tpl_04_logo.png +0 -0
  663. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/index.html +29 -0
  664. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/js/idcap.js +21 -0
  665. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/networkMonitor.js +136 -0
  666. package/files/templates/signage-sdk-templates/Simple_Network_FailOver/style.css +142 -0
  667. package/files/templates/signage-sdk-templates/Special_Menu_Board/css/styles.css +281 -0
  668. package/files/templates/signage-sdk-templates/Special_Menu_Board/data/data.json +33 -0
  669. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300 Italic.otf +0 -0
  670. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 300.otf +0 -0
  671. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500 Italic.otf +0 -0
  672. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 500.otf +0 -0
  673. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700 Italic.otf +0 -0
  674. package/files/templates/signage-sdk-templates/Special_Menu_Board/fonts/Museo Sans 700.otf +0 -0
  675. package/files/templates/signage-sdk-templates/Special_Menu_Board/index.html +110 -0
  676. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/controller.js +171 -0
  677. package/files/templates/signage-sdk-templates/Special_Menu_Board/js/helpers/util.js +130 -0
  678. package/files/templates/signage-sdk-templates/Special_Menu_Board/readme.txt +26 -0
  679. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_bg.png +0 -0
  680. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01.png +0 -0
  681. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_01_l.png +0 -0
  682. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_02.png +0 -0
  683. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_03.png +0 -0
  684. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_04.png +0 -0
  685. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_img_coffe_05.png +0 -0
  686. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_01.png +0 -0
  687. package/files/templates/signage-sdk-templates/Special_Menu_Board/res/images/tpl_03_logo_02.png +0 -0
  688. package/files/templates/signage-sdk-templates/Wayfinder/css/styles.css +634 -0
  689. package/files/templates/signage-sdk-templates/Wayfinder/data/data.json +339 -0
  690. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans300.otf +0 -0
  691. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans500.otf +0 -0
  692. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700.otf +0 -0
  693. package/files/templates/signage-sdk-templates/Wayfinder/fonts/MuseoSans700Italic.otf +0 -0
  694. package/files/templates/signage-sdk-templates/Wayfinder/index.html +171 -0
  695. package/files/templates/signage-sdk-templates/Wayfinder/js/controller.js +447 -0
  696. package/files/templates/signage-sdk-templates/Wayfinder/js/helpers/util.js +175 -0
  697. package/files/templates/signage-sdk-templates/Wayfinder/readme.txt +26 -0
  698. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_btn_back_n.png +0 -0
  699. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_n.png +0 -0
  700. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_icon_dot_s.png +0 -0
  701. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_01.png +0 -0
  702. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_02.png +0 -0
  703. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_03.png +0 -0
  704. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_d.png +0 -0
  705. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_01_n.png +0 -0
  706. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_d.png +0 -0
  707. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_02_n.png +0 -0
  708. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_d.png +0 -0
  709. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_03_n.png +0 -0
  710. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_all_shadow.png +0 -0
  711. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_01_n.png +0 -0
  712. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_02_n.png +0 -0
  713. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_floormap_home_03_n.png +0 -0
  714. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point.png +0 -0
  715. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_img_point_shadow.png +0 -0
  716. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_elevator.png +0 -0
  717. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_escalator.png +0 -0
  718. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_exit.png +0 -0
  719. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_info.png +0 -0
  720. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_parking.png +0 -0
  721. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_list_icon_toilet.png +0 -0
  722. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_lg.png +0 -0
  723. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_shoppingmall_name.png +0 -0
  724. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_logo_store.png +0 -0
  725. package/files/templates/signage-sdk-templates/Wayfinder/res/images/tpl_11_popup_bg.png +0 -0
  726. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/css/styles.css +136 -0
  727. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/data/data.json +33 -0
  728. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 300.otf +0 -0
  729. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 500.otf +0 -0
  730. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/fonts/Museo Sans 700.otf +0 -0
  731. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/index.html +51 -0
  732. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/controller.js +265 -0
  733. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/js/helpers/util.js +130 -0
  734. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/readme.txt +26 -0
  735. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/ajax.gif +0 -0
  736. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_cloudy.png +0 -0
  737. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_partlycloudy.png +0 -0
  738. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_rainy.png +0 -0
  739. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_snowy.png +0 -0
  740. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_sunny.png +0 -0
  741. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_thunder.png +0 -0
  742. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_icon_windy.png +0 -0
  743. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_01.png +0 -0
  744. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_02.png +0 -0
  745. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_03.png +0 -0
  746. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_04.png +0 -0
  747. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_05.png +0 -0
  748. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_06.png +0 -0
  749. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_img_07.png +0 -0
  750. package/files/templates/signage-sdk-templates/Weather-dependent_Ad/res/images/tpl_08_logo.png +0 -0
  751. package/files/templates/signage-sdk-templates/Widget_Overlay/css/styles.css +312 -0
  752. package/files/templates/signage-sdk-templates/Widget_Overlay/data/data.json +16 -0
  753. package/files/templates/signage-sdk-templates/Widget_Overlay/data/newsWidget.json +21 -0
  754. package/files/templates/signage-sdk-templates/Widget_Overlay/data/shareWidget.json +112 -0
  755. package/files/templates/signage-sdk-templates/Widget_Overlay/data/weatherWidget.json +45 -0
  756. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans300.otf +0 -0
  757. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans500.otf +0 -0
  758. package/files/templates/signage-sdk-templates/Widget_Overlay/fonts/MuseoSans700.otf +0 -0
  759. package/files/templates/signage-sdk-templates/Widget_Overlay/index.html +62 -0
  760. package/files/templates/signage-sdk-templates/Widget_Overlay/js/controller.js +390 -0
  761. package/files/templates/signage-sdk-templates/Widget_Overlay/js/helpers/util.js +162 -0
  762. package/files/templates/signage-sdk-templates/Widget_Overlay/readme.txt +26 -0
  763. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/Namo.jpg +0 -0
  764. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/NotAvailable.png +0 -0
  765. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clear.png +0 -0
  766. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/clouds.png +0 -0
  767. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/default.png +0 -0
  768. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/koreanFt.jpg +0 -0
  769. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/mist.png +0 -0
  770. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/rain.png +0 -0
  771. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/snow.png +0 -0
  772. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/thunder.png +0 -0
  773. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_01.png +0 -0
  774. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_down_02.png +0 -0
  775. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_01.png +0 -0
  776. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_icon_up_02.png +0 -0
  777. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news.png +0 -0
  778. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_img_news1.png +0 -0
  779. package/files/templates/signage-sdk-templates/Widget_Overlay/res/images/tpl_07_video_dim.png +0 -0
  780. package/files/templates/signage-sdk-templates/Widget_Overlay/res/videos/tpl_07_video.mp4 +0 -0
  781. package/files/templates/signage-sdk-templates/appinfo/appinfo.json +11 -0
  782. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/idcap.js +21 -0
  783. package/files/templates/signage-sdk-templates/idcap_api/1.1.0/js/release_notes.txt +25 -0
  784. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/2.7.0/cordova.webos.js +7025 -0
  785. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova/LICENSE +7025 -0
  786. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/configuration.js +1 -0
  787. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/deviceInfo.js +1 -0
  788. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/inputSource.js +1 -0
  789. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/power.js +1 -0
  790. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/signage.js +1 -0
  791. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/sound.js +1 -0
  792. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/storage.js +1 -0
  793. package/files/templates/signage-sdk-templates/scap_api/1.3/js/cordova-cd/1.3/video.js +1 -0
  794. package/files/templates/signage-sdk-templates/scap_api/1.3/js/release_notes.txt +109 -0
  795. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/2.7.0/cordova.webos.js +7038 -0
  796. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova/LICENSE +201 -0
  797. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/configuration.js +1 -0
  798. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/deviceInfo.js +1 -0
  799. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/inputSource.js +1 -0
  800. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/power.js +1 -0
  801. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/security.js +1 -0
  802. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/signage.js +1 -0
  803. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/sound.js +1 -0
  804. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/storage.js +1 -0
  805. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/time.js +1 -0
  806. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/utility.js +1 -0
  807. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/cordova-cd/video.js +1 -0
  808. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/all.css +358 -0
  809. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  810. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  811. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  812. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  813. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  814. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  815. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  816. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  817. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/handheld.css +217 -0
  818. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/css/screen.css +405 -0
  819. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/files.html +577 -0
  820. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/index.html +1203 -0
  821. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/intro.html +100 -0
  822. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/all.js +326 -0
  823. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/dessert.css +34 -0
  824. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  825. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-clj.js +64 -0
  826. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-css.js +78 -0
  827. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-go.js +58 -0
  828. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-hs.js +101 -0
  829. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  830. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-lua.js +59 -0
  831. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-ml.js +56 -0
  832. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-n.js +62 -0
  833. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-proto.js +35 -0
  834. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-scala.js +54 -0
  835. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-sql.js +57 -0
  836. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-tex.js +46 -0
  837. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vb.js +61 -0
  838. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  839. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  840. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-xq.js +67 -0
  841. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  842. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.css +52 -0
  843. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/highlighter/prettify.js +1477 -0
  844. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/javascript/html5.js +6 -0
  845. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#clearCache.html +550 -0
  846. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getCurrentTime.html +560 -0
  847. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getLocaleList.html +560 -0
  848. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLanguage.html +560 -0
  849. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getOSDLock.html +560 -0
  850. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureMode.html +560 -0
  851. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getPictureProperty.html +560 -0
  852. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getProperty.html +561 -0
  853. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getServerProperty.html +560 -0
  854. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZone.html +560 -0
  855. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getTimeZoneList.html +560 -0
  856. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getUSBLock.html +560 -0
  857. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +560 -0
  858. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#restartApplication.html +550 -0
  859. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setCurrentTime.html +566 -0
  860. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLanguage.html +566 -0
  861. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setOSDLock.html +566 -0
  862. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureMode.html +566 -0
  863. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setPictureProperty.html +566 -0
  864. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setProperty.html +561 -0
  865. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setServerProperty.html +610 -0
  866. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setTimeZone.html +566 -0
  867. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setUSBLock.html +566 -0
  868. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +566 -0
  869. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppMode.html +685 -0
  870. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.AppType.html +640 -0
  871. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Configuration.PictureMode.html +910 -0
  872. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#connectWifi.html +561 -0
  873. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getBeaconInfo.html +560 -0
  874. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +560 -0
  875. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkInfo.html +560 -0
  876. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +560 -0
  877. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getPlatformInfo.html +560 -0
  878. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getProxyInfo.html +560 -0
  879. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSoftApInfo.html +560 -0
  880. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +566 -0
  881. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getWifiList.html +560 -0
  882. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +560 -0
  883. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setBeaconInfo.html +561 -0
  884. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +566 -0
  885. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setNetworkInfo.html +561 -0
  886. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setProxyInfo.html +566 -0
  887. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setSoftApInfo.html +561 -0
  888. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +566 -0
  889. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#startWps.html +566 -0
  890. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo#stopWps.html +555 -0
  891. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/DeviceInfo.EddystoneFrame.html +640 -0
  892. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.ERROR_CODE.html +820 -0
  893. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Error.html +460 -0
  894. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#changeInputSource.html +566 -0
  895. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#getInputSourceStatus.html +560 -0
  896. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/InputSource#initialize.html +561 -0
  897. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOffTimer.html +566 -0
  898. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#addOnTimer.html +566 -0
  899. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOffTimer.html +566 -0
  900. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#deleteOnTimer.html +566 -0
  901. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOffTimer.html +566 -0
  902. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableAllOnTimer.html +566 -0
  903. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#enableWakeOnLan.html +566 -0
  904. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#executePowerCommand.html +566 -0
  905. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getDPMWakeup.html +560 -0
  906. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOffTimerList.html +560 -0
  907. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getOnTimerList.html +560 -0
  908. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPMMode.html +560 -0
  909. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerOnDelay.html +560 -0
  910. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#getPowerStatus.html +560 -0
  911. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDPMWakeup.html +566 -0
  912. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setDisplayMode.html +566 -0
  913. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPMMode.html +566 -0
  914. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power#setPowerOnDelay.html +566 -0
  915. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DPMSignalType.html +640 -0
  916. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.DisplayMode.html +640 -0
  917. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PMMode.html +775 -0
  918. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.PowerCommand.html +640 -0
  919. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Power.TimerWeek.html +910 -0
  920. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#existServerCertificate.html +561 -0
  921. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#registerServerCertificate.html +561 -2
  922. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Security#unregisterServerCertificate.html +561 -0
  923. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#captureScreen.html +561 -0
  924. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#enableCheckScreen.html +566 -0
  925. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getFailoverMode.html +555 -0
  926. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getIntelligentAuto.html +560 -0
  927. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getLanDaisyChain.html +560 -0
  928. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getPowerSaveMode.html +555 -0
  929. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSignageInfo.html +555 -0
  930. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getStudioMode.html +560 -0
  931. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getSystemMonitoringInfo.html +555 -0
  932. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getTileInfo.html +555 -0
  933. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsageData.html +555 -0
  934. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#getUsagePermission.html +555 -0
  935. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#registerSystemMonitor.html +573 -0
  936. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setDigitalAudioInputMode.html +567 -0
  937. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setFailoverMode.html +567 -0
  938. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIntelligentAuto.html +566 -0
  939. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setIsmMethod.html +567 -0
  940. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setLanDaisyChain.html +566 -0
  941. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPortraitMode.html +567 -0
  942. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setPowerSaveMode.html +567 -0
  943. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setStudioMode.html +566 -0
  944. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setTileInfo.html +567 -0
  945. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#setUsagePermission.html +567 -0
  946. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage#unregisterSystemMonitor.html +555 -0
  947. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.AutomaticStandbyMode.html +640 -0
  948. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DigitalAudioInput.html +640 -0
  949. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.DpmMode.html +910 -0
  950. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.EventType.html +775 -0
  951. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.FailoverMode.html +685 -0
  952. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.ImgResolution.html +640 -0
  953. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.IsmMethod.html +910 -0
  954. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.KeyOperationMode.html +685 -0
  955. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.MonitoringSource.html +775 -0
  956. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Signage.OsdPortraitMode.html +640 -0
  957. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundMode.html +560 -0
  958. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundOut.html +560 -0
  959. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#getSoundStatus.html +560 -0
  960. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setExternalSpeaker.html +566 -0
  961. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setMuted.html +566 -0
  962. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundMode.html +566 -0
  963. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setSoundOut.html +566 -0
  964. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound#setVolumeLevel.html +566 -0
  965. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SoundMode.html +820 -0
  966. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Sound.SpeakerType.html +640 -0
  967. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#changeLogoImage.html +566 -0
  968. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#copyFile.html +561 -0
  969. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#downloadFirmware.html +566 -0
  970. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#exists.html +561 -0
  971. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#fsync.html +561 -0
  972. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +560 -0
  973. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#getStorageInfo.html +555 -0
  974. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#listFiles.html +561 -0
  975. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#mkdir.html +561 -0
  976. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#moveFile.html +561 -0
  977. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#readFile.html +563 -0
  978. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeAll.html +561 -0
  979. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeApplication.html +566 -0
  980. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#removeFile.html +561 -0
  981. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#statFile.html +561 -0
  982. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#unzipFile.html +561 -0
  983. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeApplication.html +566 -0
  984. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#upgradeFirmware.html +560 -0
  985. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage#writeFile.html +561 -0
  986. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppMode.html +640 -0
  987. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.AppType.html +640 -0
  988. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Storage.SCAP_URI.html +512 -0
  989. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#addHolidaySchedule.html +566 -0
  990. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delAllHolidaySchedules.html +566 -0
  991. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#delHolidaySchedule.html +566 -0
  992. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getAllHolidaySchedules.html +560 -0
  993. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#getHolidayScheduleMode.html +560 -0
  994. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Time#setHolidayScheduleMode.html +566 -0
  995. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Utility#createToast.html +561 -0
  996. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getContentRotation.html +560 -0
  997. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#getVideoStatus.html +560 -0
  998. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setContentRotation.html +566 -0
  999. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setRotatedVideoTransform.html +566 -0
  1000. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoSize.html +566 -0
  1001. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/Video#setVideoViewTransform.html +566 -0
  1002. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/_global_.html +453 -0
  1003. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/media_status.jpg +0 -0
  1004. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/image/setVideoSize.png +0 -0
  1005. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1006. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_deviceInfo.js.html +1860 -0
  1007. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_inputSource.js.html +1382 -0
  1008. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_power.js.html +2697 -0
  1009. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_security.js.html +357 -0
  1010. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_signage.js.html +3601 -0
  1011. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_sound.js.html +1123 -0
  1012. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_storage.js.html +2615 -0
  1013. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_time.js.html +720 -0
  1014. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_utility.js.html +196 -0
  1015. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/doc/symbols/src/js_video.js.html +1090 -0
  1016. package/files/templates/signage-sdk-templates/scap_api/1.4.1/js/release_notes.txt +148 -0
  1017. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/2.7.0/cordova.webos.js +7038 -0
  1018. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova/LICENSE +201 -0
  1019. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/configuration.js +1 -0
  1020. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/deviceInfo.js +1 -0
  1021. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/inputSource.js +1 -0
  1022. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/power.js +1 -0
  1023. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/security.js +1 -0
  1024. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/signage.js +1 -0
  1025. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/sound.js +1 -0
  1026. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/storage.js +1 -0
  1027. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/time.js +1 -0
  1028. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/utility.js +1 -0
  1029. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/cordova-cd/video.js +1 -0
  1030. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/all.css +358 -0
  1031. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.eot +0 -0
  1032. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.svg +134 -0
  1033. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.ttf +0 -0
  1034. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-bold-webfont.woff +0 -0
  1035. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.eot +0 -0
  1036. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.svg +134 -0
  1037. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.ttf +0 -0
  1038. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/fonts/mplus-1m-regular-webfont.woff +0 -0
  1039. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/handheld.css +217 -0
  1040. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/css/screen.css +405 -0
  1041. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/files.html +599 -0
  1042. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/index.html +1280 -0
  1043. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/intro.html +100 -0
  1044. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/all.js +326 -0
  1045. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/dessert.css +34 -0
  1046. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-apollo.js +51 -0
  1047. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-clj.js +64 -0
  1048. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-css.js +78 -0
  1049. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-go.js +58 -0
  1050. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-hs.js +101 -0
  1051. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lisp.js +93 -0
  1052. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-lua.js +59 -0
  1053. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-ml.js +56 -0
  1054. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-n.js +62 -0
  1055. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-proto.js +35 -0
  1056. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-scala.js +54 -0
  1057. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-sql.js +57 -0
  1058. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-tex.js +46 -0
  1059. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vb.js +61 -0
  1060. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-vhdl.js +34 -0
  1061. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-wiki.js +53 -0
  1062. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-xq.js +67 -0
  1063. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/lang-yaml.js +27 -0
  1064. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.css +52 -0
  1065. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/highlighter/prettify.js +1477 -0
  1066. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/javascript/html5.js +6 -0
  1067. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#clearCache.html +572 -0
  1068. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getCurrentTime.html +582 -0
  1069. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getLocaleList.html +582 -0
  1070. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLanguage.html +582 -0
  1071. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getOSDLock.html +582 -0
  1072. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureMode.html +582 -0
  1073. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getPictureProperty.html +582 -0
  1074. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getProperty.html +583 -0
  1075. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getServerProperty.html +582 -0
  1076. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZone.html +582 -0
  1077. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getTimeZoneList.html +582 -0
  1078. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getUSBLock.html +582 -0
  1079. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#getVirtualKeyboardLanguage.html +582 -0
  1080. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#restartApplication.html +572 -0
  1081. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setCurrentTime.html +588 -0
  1082. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLanguage.html +588 -0
  1083. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setOSDLock.html +588 -0
  1084. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureMode.html +588 -0
  1085. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setPictureProperty.html +588 -0
  1086. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setProperty.html +583 -0
  1087. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setServerProperty.html +632 -0
  1088. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setTimeZone.html +588 -0
  1089. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setUSBLock.html +588 -0
  1090. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration#setVirtualKeyboardLanguage.html +588 -0
  1091. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppMode.html +707 -0
  1092. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.AppType.html +662 -0
  1093. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Configuration.PictureMode.html +932 -0
  1094. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#connectWifi.html +583 -0
  1095. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getBeaconInfo.html +582 -0
  1096. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getEddystoneInfo.html +582 -0
  1097. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getExternalInputList.html +588 -0
  1098. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkInfo.html +582 -0
  1099. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getNetworkMacInfo.html +582 -0
  1100. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getPlatformInfo.html +582 -0
  1101. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getProxyInfo.html +582 -0
  1102. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSoftApInfo.html +582 -0
  1103. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getSystemUsageInfo.html +588 -0
  1104. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getWifiList.html +582 -0
  1105. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#getiBeaconInfo.html +582 -0
  1106. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setBeaconInfo.html +583 -0
  1107. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setEddystoneInfo.html +588 -0
  1108. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setNetworkInfo.html +583 -0
  1109. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setProxyInfo.html +588 -0
  1110. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setSoftApInfo.html +583 -0
  1111. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#setiBeaconInfo.html +588 -0
  1112. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#startWps.html +588 -0
  1113. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo#stopWps.html +577 -0
  1114. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/DeviceInfo.EddystoneFrame.html +662 -0
  1115. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.ERROR_CODE.html +842 -0
  1116. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Error.html +482 -0
  1117. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#changeInputSource.html +588 -0
  1118. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#getInputSourceStatus.html +582 -0
  1119. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/InputSource#initialize.html +583 -0
  1120. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOffTimer.html +588 -0
  1121. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#addOnTimer.html +588 -0
  1122. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOffTimer.html +588 -0
  1123. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#deleteOnTimer.html +588 -0
  1124. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOffTimer.html +588 -0
  1125. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableAllOnTimer.html +588 -0
  1126. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#enableWakeOnLan.html +588 -0
  1127. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#executePowerCommand.html +588 -0
  1128. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getDPMWakeup.html +582 -0
  1129. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOffTimerList.html +582 -0
  1130. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnOffTimeSchedule.html +582 -0
  1131. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getOnTimerList.html +582 -0
  1132. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPMMode.html +582 -0
  1133. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerOnDelay.html +582 -0
  1134. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#getPowerStatus.html +582 -0
  1135. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDPMWakeup.html +588 -0
  1136. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setDisplayMode.html +588 -0
  1137. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setOnOffTimeSchedule.html +583 -0
  1138. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPMMode.html +588 -0
  1139. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#setPowerOnDelay.html +588 -0
  1140. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power#unsetOnOffTimeSchedule.html +582 -0
  1141. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DPMSignalType.html +662 -0
  1142. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.DisplayMode.html +662 -0
  1143. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PMMode.html +797 -0
  1144. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.PowerCommand.html +662 -0
  1145. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Power.TimerWeek.html +932 -0
  1146. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#existServerCertificate.html +583 -0
  1147. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#registerServerCertificate.html +583 -2
  1148. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Security#unregisterServerCertificate.html +583 -0
  1149. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#captureScreen.html +583 -0
  1150. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#enableCheckScreen.html +588 -0
  1151. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getFailoverMode.html +577 -0
  1152. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getIntelligentAuto.html +582 -0
  1153. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getLanDaisyChain.html +582 -0
  1154. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getPowerSaveMode.html +577 -0
  1155. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSignageInfo.html +577 -0
  1156. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getStudioMode.html +582 -0
  1157. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getSystemMonitoringInfo.html +577 -0
  1158. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getTileInfo.html +577 -0
  1159. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsageData.html +577 -0
  1160. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#getUsagePermission.html +577 -0
  1161. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerRS232CEventListener.html +594 -0
  1162. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#registerSystemMonitor.html +595 -0
  1163. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setDigitalAudioInputMode.html +589 -0
  1164. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setFailoverMode.html +589 -0
  1165. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIntelligentAuto.html +588 -0
  1166. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setIsmMethod.html +589 -0
  1167. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setLanDaisyChain.html +588 -0
  1168. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPortraitMode.html +589 -0
  1169. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setPowerSaveMode.html +589 -0
  1170. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setStudioMode.html +588 -0
  1171. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setTileInfo.html +589 -0
  1172. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#setUsagePermission.html +589 -0
  1173. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterRS232CEventListener.html +582 -0
  1174. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage#unregisterSystemMonitor.html +577 -0
  1175. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.AutomaticStandbyMode.html +662 -0
  1176. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DigitalAudioInput.html +662 -0
  1177. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.DpmMode.html +932 -0
  1178. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.EventType.html +797 -0
  1179. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.FailoverMode.html +707 -0
  1180. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.ImgResolution.html +662 -0
  1181. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.IsmMethod.html +932 -0
  1182. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.KeyOperationMode.html +707 -0
  1183. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.MonitoringSource.html +797 -0
  1184. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Signage.OsdPortraitMode.html +662 -0
  1185. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundMode.html +582 -0
  1186. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundOut.html +582 -0
  1187. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#getSoundStatus.html +582 -0
  1188. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setExternalSpeaker.html +588 -0
  1189. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setMuted.html +588 -0
  1190. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundMode.html +588 -0
  1191. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setSoundOut.html +588 -0
  1192. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound#setVolumeLevel.html +588 -0
  1193. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SoundMode.html +842 -0
  1194. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Sound.SpeakerType.html +662 -0
  1195. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#changeLogoImage.html +588 -0
  1196. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#copyFile.html +583 -0
  1197. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#decryptFile.html +583 -0
  1198. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#downloadFirmware.html +588 -0
  1199. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#exists.html +583 -0
  1200. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#fsync.html +583 -0
  1201. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getFirmwareUpgradeStatus.html +582 -0
  1202. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getMD5Hash.html +583 -0
  1203. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#getStorageInfo.html +577 -0
  1204. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#listFiles.html +583 -0
  1205. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#mkdir.html +583 -0
  1206. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#moveFile.html +583 -0
  1207. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#readFile.html +585 -0
  1208. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeAll.html +583 -0
  1209. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeApplication.html +588 -0
  1210. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#removeFile.html +583 -0
  1211. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#statFile.html +583 -0
  1212. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#unzipFile.html +583 -0
  1213. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeApplication.html +588 -0
  1214. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#upgradeFirmware.html +582 -0
  1215. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage#writeFile.html +583 -0
  1216. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppMode.html +662 -0
  1217. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.AppType.html +662 -0
  1218. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Storage.SCAP_URI.html +534 -0
  1219. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#addHolidaySchedule.html +588 -0
  1220. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delAllHolidaySchedules.html +588 -0
  1221. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#delHolidaySchedule.html +588 -0
  1222. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getAllHolidaySchedules.html +582 -0
  1223. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidaySchedule.html +582 -0
  1224. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#getHolidayScheduleMode.html +582 -0
  1225. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidaySchedule.html +583 -0
  1226. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#setHolidayScheduleMode.html +588 -0
  1227. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Time#unsetHolidaySchedule.html +582 -0
  1228. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Utility#createToast.html +583 -0
  1229. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getContentRotation.html +586 -0
  1230. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#getVideoStatus.html +582 -0
  1231. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setContentRotation.html +592 -0
  1232. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setRotatedVideoTransform.html +592 -0
  1233. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoSize.html +588 -0
  1234. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/Video#setVideoViewTransform.html +592 -0
  1235. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/_global_.html +475 -0
  1236. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/media_status.jpg +0 -0
  1237. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/image/setVideoSize.png +0 -0
  1238. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_configuration.js.html +2651 -0
  1239. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_deviceInfo.js.html +1930 -0
  1240. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_inputSource.js.html +1383 -0
  1241. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_power.js.html +2942 -0
  1242. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_security.js.html +352 -0
  1243. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_signage.js.html +3853 -0
  1244. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_sound.js.html +1123 -0
  1245. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_storage.js.html +2747 -0
  1246. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_time.js.html +976 -0
  1247. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_utility.js.html +196 -0
  1248. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/doc/symbols/src/js_video.js.html +754 -0
  1249. package/files/templates/signage-sdk-templates/scap_api/1.5.0/js/release_notes.txt +148 -0
  1250. package/files/templates/signage-sdk-templates/serviceinfo/package.json +11 -0
  1251. package/files/templates/signage-sdk-templates/serviceinfo/services.json +8 -0
  1252. package/files/templates/signage-sdk-templates/signageicon/icon.png +0 -0
  1253. package/files/templates/signage-sdk-templates/signageicon/largeIcon.png +0 -0
  1254. package/files/templates/signage-sdk-templates/webos-service/helloclient.js +23 -0
  1255. package/files/templates/signage-sdk-templates/webos-service/helloworld_webos_service.js +128 -0
  1256. package/lib/base/novacom.js +1214 -1202
  1257. package/lib/base/setup-device.js +25 -7
  1258. package/lib/com.sdk.ares.signage.hostedapp.ipk +0 -0
  1259. package/lib/install.js +465 -463
  1260. package/lib/launch.js +607 -605
  1261. package/lib/package.js +2307 -2149
  1262. package/npm-shrinkwrap.json +2 -2
  1263. package/package.json +1 -1
  1264. package/spec/jsSpecs/ares-launch.spec.js +303 -301
  1265. package/spec/jsSpecs/ares-package.spec.js +1277 -1211
  1266. package/spec/jsSpecs/ares-server.spec.js +160 -160
  1267. package/spec/jsSpecs/ares-setup-device.spec.js +300 -300
  1268. package/spec/jsSpecs/common-spec.js +177 -169
  1269. package/spec/tempFiles/com.lg.app.signage.dev_0.0.1_all.ipk +0 -0
  1270. package/webos-tools-cli-3.2.1.tgz +0 -0
  1271. package/webos-tools-cli-3.1.3.tgz +0 -0
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/configuration",function(e,t,r){function n(e){}function o(e,t,r){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=t),(void 0===e.errorText||null===e.errorText)&&(e.errorText=r)}function i(e){null===a?u.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["sdkVersion"]},onSuccess:function(t){n("getPlatformInfo: onSuccess");var r=t.sdkVersion.split(".");a=r.length>=1&&"1"===r[0]?1:r.length>=1&&"2"===r[0]?2:0,delete t.returnValue,e(a)},onFailure:function(t){n("getPlatformInfo: onFailure"),delete t.returnValue,a=0,e(a)}}):e(a)}var u;window.PalmSystem?(n("Window.PalmSystem Available"),u=e("cordova/plugin/webos/service")):u={Request:function(e,t){n(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof t.onFailure&&t.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var s=function(){};s.PictureMode={VIVID:"vivid",STANDARD:"normal",APS:"eco",CINEMA:"cinema",GAME:"game",SPORTS:"sports",EXPERT1:"expert1",EXPERT2:"expert2"},s.AppMode={LOCAL:"local",USB:"usb",REMOTE:"remote"};var a=null;s.prototype.setPictureMode=function(e,t,r){n("setPictureMode: "+JSON.stringify(r)),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"picture",settings:{pictureMode:r.mode}},onSuccess:function(t){n("setPictureMode: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){n("setPictureMode: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSPM","Configuration.setPictureMode returns failure."),t(e))}}),n("Configuration.setPictureMode Done")},s.prototype.getPictureMode=function(e,t){n("getPictureMode: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"picture",keys:["pictureMode"]},onSuccess:function(t){if(n("getPictureMode: On Success"),t.returnValue===!0&&"function"==typeof e){var r={};r.mode=t.settings.pictureMode,e(r)}},onFailure:function(e){n("getPictureMode: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGPM","Configuration.getPictureMode returns failure."),t(e))}}),n("Configuration.getPictureMode Done")},s.prototype.setPictureProperty=function(e,t,r){n("setPictureProperty: "+JSON.stringify(r)),i(function(i){var s={};for(var a in r)if(void 0!==a&&null!==a)if(s[a]=r[a],"tint"===a||"colorTemperature"===a)s[a]-=50;else if("blackLevel"===a){if(s[a]={unknown:r[a]},"low"!==r[a]&&"high"!==r[a]){n("setPictureProperty: gamma value error "+JSON.stringify(r));var c={};return o(c,"CSPP","Configuration.setPictureProperty, There is No matched item : blackLevel."),void t(c)}}else"gamma"===a&&2===i&&"high"===r[a]&&(s[a]="high1");n(JSON.stringify(s)),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"picture",settings:s},onSuccess:function(t){n("setPictureProperty: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){n("setPictureProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSPP","Configuration.setPictureProperty returns failure."),t(e))}}),n("Configuration.setPictureProperty Done")})},s.prototype.getPictureProperty=function(e,t){n("getPictureProperty: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"picture",keys:["brightness","contrast","color","tint","backlight","sharpness","hSharpness","vSharpness","colorTemperature","dynamicContrast","superResolution","colorGamut","dynamicColor","noiseReduction","mpegNoiseReduction","blackLevel","gamma"]},onSuccess:function(t){if(n("getPictureProperty: On Success"),t.returnValue===!0&&"function"==typeof e){var r={};for(var o in t.settings)void 0!==o&&null!==o&&(r[o]=isNaN(t.settings[o])?t.settings[o]:Number(t.settings[o]),"tint"===o||"colorTemperature"===o?r[o]+=50:"blackLevel"===o&&(r[o]=t.settings[o].unknown));e(r)}},onFailure:function(e){n("getPictureProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGPP","Configuration.getPictureProperty returns failure."),t(e))}}),n("Configuration.getPictureProperty Done")};var c={alias:"signageName"};s.prototype.setProperty=function(e,t,r){n("setProperty: "+JSON.stringify(r));var i=JSON.parse(r),s={};for(var a in i)void 0!==c[a]&&(s[c[a]]=i[a]);u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:s},onSuccess:function(t){n("setProperty: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){n("setProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSP","Configuration.setProperty returns failure."),t(e))}}),n("Configuration.setProperty Done")},s.prototype.getProperty=function(e,t,r){n("getProperty: ");var i=JSON.parse(r),s=i.keys,a=[];for(var f in s)null!==f&&void 0!==f&&(n("key"+s[f]),a.push(c[s[f]]));n(a),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:a},onSuccess:function(t){if(n("getProperty: On Success"),t.returnValue===!0&&"function"==typeof e){var r={};for(var o in s)(null!==o||void 0!==o)&&(n("key"+s[o]),(void 0!==t.settings[c[s[o]]]||null!==t.settings[c[s[o]]])&&(r[s[o]]=t.settings[c[s[o]]]));e(JSON.stringify(r))}},onFailure:function(e){n("getProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGP","Configuration.getProperty returns failure."),t(e))}}),n("Configuration.getProperty Done")},s.prototype.setCurrentTime=function(e,t,r){n("setCurrentTime: "+JSON.stringify(r));var i=new Date(r.year,r.month-1,r.day,r.hour,r.minute,r.sec);if((r.year<2e3||r.year>2037||i.getFullYear()!==r.year||i.getMonth()!==r.month-1||i.getDate()!==r.day||i.getHours()!==r.hour||i.getMinutes()!==r.minute||i.getSeconds()!==r.sec)&&"function"==typeof t){n("setCurrentTime: out of range or invalid parameter type");var s={};return o(s,"CSCT","Configuration.setCurrentTime returns failure for out of range."),void t(s)}n("setCurrentTime: "+i);var a=i.getTime()/1e3;u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"setSystemTime",parameters:{utc:a,ntp:r.ntp},onSuccess:function(){n("setCurrentTime: On Success"),"function"==typeof e&&e()},onFailure:function(r){n("setCurrentTime: On Failure"),u.Request("luna://com.palm.systemservice/time/",{method:"setSystemTime",parameters:{utc:a},onSuccess:function(){n("setCurrentTime: On Success"),"function"==typeof e&&e()},onFailure:function(e){n("setCurrentTime: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSCT","Configuration.setCurrentTime returns failure."),t(e))}})}}),n("Configuration.setCurrentTime Done")},s.prototype.getCurrentTime=function(e,t){n("getCurrentTime: "),u.Request("luna://com.palm.systemservice/time/",{method:"getEffectiveBroadcastTime",onSuccess:function(r){if(n("getCurrentTime : On Success"),r.returnValue===!0){var i={},s=new Date(1e3*r.adjustedUtc);i.year=s.getFullYear(),i.month=s.getMonth()+1,i.day=s.getDate(),i.hour=s.getHours(),i.minute=s.getMinutes(),i.sec=s.getSeconds(),u.Request("luna://com.palm.systemservice/",{method:"getPreferences",parameters:{keys:["useNetworkTime"]},onSuccess:function(u){n("getPreferences : On Success"),u.returnValue===!0?(i.ntp=u.useNetworkTime,"function"==typeof e&&e(i)):"function"==typeof t&&(o(r,"CGCT","Configuration.getCurrentTime returns failure."),t(r))},onFailure:function(e){n("getCurrentTime: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGCT","Configuration.getCurrentTime returns failure."),t(e))}})}else"function"==typeof t&&(o(r,"CGCT","Configuration.getCurrentTime returns failure."),t(r))},onFailure:function(e){n("getCurrentTime: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGCT","Configuration.getCurrentTime returns failure."),t(e))}}),n("Configuration.getCurrentTime Done")},s.prototype.restartApplication=function(e,t){n("restartApp: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"restart_application",onSuccess:function(t){n("restartApp: On Success"),"function"==typeof e&&e(t)},onFailure:function(e){n("restartApp: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CRA","Configuration.restartApp returns failure."),t(e))}}),n("Configuration.restartApp Done")},s.prototype.getServerProperty=function(e,t){n("getServerProperty: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["serverIpPort","siServerIp","secureConnection","appLaunchMode","fqdnAddr","fqdnMode","appType"]},onSuccess:function(t){if(n("getPictureProperty: On Success"),t.returnValue===!0&&"function"==typeof e){var r={};r.serverIp=t.settings.siServerIp,r.serverPort=parseInt(t.settings.serverIpPort,10),r.secureConnection="off"===t.settings.secureConnection?!1:!0,r.appLaunchMode=t.settings.appLaunchMode,r.fqdnMode="off"===t.settings.fqdnMode?!1:!0,r.fqdnAddr=t.settings.fqdnAddr,r.appType=t.settings.appType,e(r)}},onFailure:function(e){n("getServerProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGSP","Configuration.getServerProperty returns failure."),t(e))}}),n("Configuration.getServerProperty Done")},s.prototype.setServerProperty=function(e,t,r){if(n("setServerProperty: "+JSON.stringify(r)),(void 0===r||"string"!=typeof r.serverIp||/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/.test(r.serverIp)===!1||isNaN(r.serverPort)||r.serverPort<0||r.serverPort>65535||"number"!=typeof r.serverPort||"boolean"!=typeof r.secureConnection||"string"!=typeof r.appLaunchMode||r.appLaunchMode!==s.AppMode.USB&&r.appLaunchMode!==s.AppMode.LOCAL&&r.appLaunchMode!==s.AppMode.REMOTE||"boolean"!=typeof r.fqdnMode||"string"!=typeof r.fqdnAddr||"string"==typeof r.appType&&"zip"!==r.appType&&"ipk"!==r.appType)&&"function"==typeof t){var i={};return o(i,"CSSP","Configuration.setServerProperty, Invalid parameters."),n("options.serverIp : "+typeof r.serverIp+" options.serverPort : "+typeof r.serverPort+" options.secureConnection : "+typeof r.secureConnection+" options.appLaunchMode : "+typeof r.appLaunchMode+" options.fqdnMode : "+typeof r.fqdnMode+" options.fqdnAddr : "+r.fqdnAddr),void t(i)}var a={};a.siServerIp=r.serverIp,a.serverIpPort=r.serverPort+"",a.secureConnection=r.secureConnection===!0?"on":"off",a.appLaunchMode=r.appLaunchMode,a.fqdnMode=r.fqdnMode===!0?"on":"off",a.fqdnAddr=r.fqdnAddr,a.appType="string"==typeof r.appType?r.appType:"zip",n(JSON.stringify(a)),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:a},onSuccess:function(t){n("setServerProperty: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){n("setServerProperty: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSSP","Configuration.setServerProperty returns failure."),t(e))}}),n("Configuration.setServerProperty Done")},s.prototype.clearCache=function(e,t){n("clearCache: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"clearCache",onSuccess:function(t){n("clearCache: On Success"),"function"==typeof e&&e()},onFailure:function(e){n("clearCache: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CCC","Configuration.clearCache returns failure."),t(e))}}),n("Configuration.clearCache Done")},s.prototype.getTimeZoneList=function(e,t){n("getTimeZoneList: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"getTimeZoneList",onSuccess:function(t){n("getTimeZoneList: On Success"),t.returnValue===!0&&"function"==typeof e&&(delete t.returnValue,e(t))},onFailure:function(e){n("getTimeZoneList: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGTL","Configuration.getTimeZoneList returns failure."),t(e))}}),n("Configuration.getTimeZoneList Done")},s.prototype.getTimeZone=function(e,t){n("getTimeZone: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"getTimeZone",onSuccess:function(t){n("getTimeZone: On Success"),t.returnValue===!0&&"function"==typeof e&&(delete t.returnValue,e(t))},onFailure:function(e){n("getTimeZone: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CGTZ","Configuration.getTimeZone returns failure."),t(e))}}),n("Configuration.getTimeZone Done")},s.prototype.setTimeZone=function(e,t,r){n("setTimeZone: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"setTimeZone",parameters:r,onSuccess:function(t){n("setTimeZone: On Success"),t.returnValue===!0&&"function"==typeof e&&(delete t.returnValue,e(t))},onFailure:function(e){n("setTimeZone: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CSTZ","Configuration.setTimeZone returns failure."),t(e))}}),n("Configuration.setTimeZone Done")},s.prototype.debug=function(e,t,r){n("debug: "+r.enabled),u.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"debug",parameters:{enabled:r.enabled},onSuccess:function(t){n("debug: On Success"),"function"==typeof e&&e(t)},onFailure:function(e){n("debug: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"CD","Configuration.debug returns failure."),t(e))}}),n("Configuration.debug Done")},r.exports=s}),Configuration=cordova.require("cordova/plugin/configuration");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/deviceInfo",function(e,o,n){function t(e){}function r(e,o,n){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=o),(void 0===e.errorText||null===e.errorText)&&(e.errorText=n)}var c;window.PalmSystem?(console.log("Window.PalmSystem Available"),c=e("cordova/plugin/webos/service")):c={Request:function(e,o){console.log(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof o.onFailure&&o.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var i=function(){};i.prototype.getNetworkInfo=function(e,o){t("getNetworkInfo: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"getNetworkInfo",parameters:{},onSuccess:function(o){"function"==typeof e&&(delete o.returnValue,e(o))},onFailure:function(n){t("getNetworkInfo: onFailure"),-1!==n.errorText.indexOf("Unknown method")?c.Request("luna://com.palm.connectionmanager",{method:"getstatus",parameters:{},onSuccess:function(o){t("getNetworkInfo: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getNetworkInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}):(delete n.returnValue,"function"==typeof o&&o(n))}}),t("DeviceInfo.getNetworkInfo Done")},i.prototype.setNetworkInfo=function(e,o,n){t("setNetworkInfo: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"setNetworkInfo",parameters:n,onSuccess:function(o){t("setNetworkInfo: onSuccess"),"function"==typeof e&&e()},onFailure:function(e){t("setNetworkInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.setNetworkInfo Done")},i.prototype.getBeaconInfo=function(e,o){t("getBeaconInfo: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"getBeaconInfo",parameters:{},onSuccess:function(o){t("getBeaconInfo: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getBeaconInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.getBeaconInfo Done")},i.prototype.setBeaconInfo=function(e,o,n){t("setBeaconInfo: ");var i=function(e){if("undefined"==typeof e||null===e||32!=e.length)return!1;var o=new RegExp(/^[a-fA-F0-9]*$/g);return null!==o.exec(e)?!0:!1};if(n.enabled===!0&&(i(n.uuid)===!1||isNaN(n.major)||n.major<0||n.major>65535||isNaN(n.minor)||n.minor<0||n.minor>65535)){if(t("setBeaconInfo: options are invalid."),"function"==typeof o){var s={};r(s,"DSBI","DeviceInfo.setBeaconInfo. Invalid options."),o(s)}}else c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"setBeaconInfo",parameters:n,onSuccess:function(o){t("setBeaconInfo: onSuccess"),"function"==typeof e&&e()},onFailure:function(e){t("setBeaconInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.setBeaconInfo Done")},i.prototype.getSoftApInfo=function(e,o){t("getSoftApInfo: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"getSoftApInfo",parameters:{},onSuccess:function(o){t("getSoftApInfo: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getSoftApInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.getSoftApInfo Done")},i.prototype.setSoftApInfo=function(e,o,n){if(t("setSoftApInfo: "),n.enabled===!0&&(null!==n.ssid&&n.ssid.length>32||null!==n.securityKey&&6!==n.securityKey.length)){if(t("setSoftApInfo: options are invalid."),"function"==typeof o){var i={};r(i,"DSSI","DeviceInfo.setSoftApInfo. Invalid options."),o(i)}}else c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"setSoftApInfo",parameters:n,onSuccess:function(o){t("setSoftApInfo: onSuccess"),"function"==typeof e&&e()},onFailure:function(e){t("setSoftApInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.setSoftApInfo Done")},i.prototype.getWifiList=function(e,o){t("getWifiList: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"getWifiList",parameters:{},onSuccess:function(o){t("getWifiList: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getWifiList: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.getWifiList Done")},i.prototype.connectWifi=function(e,o,n){t("connectWifi: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"connectWifi",parameters:n,onSuccess:function(o){t("connectWifi: onSuccess"),"function"==typeof e&&e()},onFailure:function(e){t("connectWifi: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.connectWifi Done")},i.prototype.startWps=function(e,o,n){t("startWps: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"startWps",parameters:n,onSuccess:function(o){t("startWps: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("startWps: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.startWps Done")},i.prototype.stopWps=function(e,o){t("stopWps: "),c.Request("luna://com.webos.service.commercial.signage.storageservice/network/",{method:"stopWps",parameters:{},onSuccess:function(o){t("stopWps: onSuccess"),"function"==typeof e&&e()},onFailure:function(e){t("stopWPS: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.stopWps Done")},i.prototype.getNetworkMacInfo=function(e,o){t("getNetworkMacInfo: "),c.Request("luna://com.webos.service.tv.signage",{method:"getinfo",parameters:{},onSuccess:function(o){t("getNetworkMacInfo: onSuccess"),delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getNetworkMacInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.getNetworkMacInfo Done")},i.prototype.getPlatformInfo=function(e,o){t("getPlatformInfo: "),c.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["modelName","serialNumber","firmwareVersion","hardwareVersion","sdkVersion"]},onSuccess:function(o){t("getPlatformInfo: onSuccess"),o.manufacturer="LGE",o.sdkVersion="1.3.22102",delete o.returnValue,"function"==typeof e&&e(o)},onFailure:function(e){t("getPlatformInfo: onFailure"),delete e.returnValue,"function"==typeof o&&o(e)}}),t("DeviceInfo.getPlatformInfo Done")},i.prototype.getSystemUsageInfo=function(e,o,n){t("getSystemUsageInfo: "),c.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"getSystemUsageInfo",parameters:{cpus:n.cpus,memory:n.memory},onSuccess:function(n){if(n.returnValue===!0){var t={};"undefined"!=typeof n.memory&&(t.memory=n.memory),"undefined"!=typeof n.cpus&&(t.cpus=n.cpus),"function"==typeof e&&e(t)}else"function"==typeof o&&o({errorCode:n.errorCode,errorText:n.errorText})},onFailure:function(e){"function"==typeof o&&o({errorCode:e.errorCode,errorText:e.errorText})}}),t("DeviceInfo.getSystemUsageInfo Done")},n.exports=i}),DeviceInfo=cordova.require("cordova/plugin/deviceInfo");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/broadcast",function(e,t,n){var r=e("cordova/plugin/webos/service"),o=e("cordova/utils"),a=e("cordova/argscheck"),i=function(e){this.isATSC=!1,this.tokenChannelChange=0,this.tokenSignalState=0,this.broadcastDivId=null,this.broadcastElement=null,this.currentInput=null,this.currentSource=null,this.isLastInput=!0,this.isLastChannel=!0;var t=this;r.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["atsc"]},onSuccess:function(e){t.isATSC=e.atsc},onFailure:function(e){}})};i.prototype.onchannelchange=function(e){},i.prototype.onsignalstatuschange=function(e){},i.prototype.initialize=function(e,t,n){a.checkArgs("fFo","broadcastCordova.initialize",arguments);var r=o.clone(n);if(this.broadcastDivId=document.getElementById(r.divId),r.broadcastPlugin=this,1!=r.isLastInput&&r.src){if(this.isLastInput=!1,-1!=r.src.indexOf("tv://"))1==r.isLastChannel?(this.isLastChannel=!0,r.type="service/webos-broadcast"):(this.isLastChannel=!1,r.type="service/webos-broadcast-standalone"),this.currentInput="tv",this.currentSource=r.src.substr(5);else{r.type="service/webos-external";var i=r.src.split(":");this.currentInput=i[1].substr(2).toLowerCase(),this.currentSource=i[2]}s(r),e&&e()}else this.isLastInput=!0,u(e,t,r)},i.prototype.channelUp=function(e,t){a.checkArgs("fF","broadcastCordova.channelUp",arguments);var n={broadcastId:this.broadcastElement.mediaId};r.Request("luna://com.webos.service.tv.broadcast",{method:"changeChannelUp",parameters:n,onSuccess:function(t){e&&e()},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.channelDown=function(e,t){a.checkArgs("fF","broadcastCordova.channelDown",arguments);var n={broadcastId:this.broadcastElement.mediaId};r.Request("luna://com.webos.service.tv.broadcast",{method:"changeChannelDown",parameters:n,onSuccess:function(t){e&&e()},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.setChannel=function(e,t,n){a.checkArgs("fFo","broadcastCordova.setChannel",arguments);var o={broadcastId:this.broadcastElement.mediaId,channelId:n.id};r.Request("luna://com.webos.service.tv.broadcast",{method:"changeChannel",parameters:o,onSuccess:function(t){e&&e()},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getCurrentChannel=function(e,t){a.checkArgs("fF","broadcastCordova.getCurrentChannel",arguments);var n={broadcastId:this.broadcastElement.mediaId,subscribe:!1};r.Request("luna://com.webos.service.tv.broadcast",{method:"getCurrentChannel",parameters:n,onSuccess:function(t){var n={};n=S(t.channel,"api"),e&&e(n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getSignalStatus=function(e,t){a.checkArgs("fF","broadcastCordova.getSignalStatus",arguments);var n;"tv"==this.currentInput?(n={broadcastId:this.broadcastElement.mediaId,subscribe:!1},r.Request("luna://com.webos.service.tv.broadcast",{method:"getChannelState",parameters:n,onSuccess:function(t){var n=t.channelState;n.screensaverType=n.channelScreensaverType,delete n.channelScreensaverType,e&&e(n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})):(n={externalInputId:this.broadcastElement.mediaId,subscribe:!1},r.Request("luna://com.webos.service.tv.externaldevice/input/",{method:"getSignalState",parameters:n,onSuccess:function(t){e&&e(t.signalState)},onFailure:function(e){delete e.returnValue,t&&t(e)}}))},i.prototype.getCurrentProgram=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getCurrentProgram",arguments),r.Request("luna://com.palm.systemservice/time",{method:"getEffectiveBroadcastTime",parameters:{},onSuccess:function(r){var o={};o.id=n.id,o.startTime=r.localtime,o.endTime=r.localtime,o.request="nowInfo",f(e,t,o)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getNextProgram=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getNextProgram",arguments),r.Request("luna://com.palm.systemservice/time",{method:"getEffectiveBroadcastTime",parameters:{},onSuccess:function(r){var o={};o.id=n.id,o.startTime=r.localtime,o.endTime=r.localtime,o.request="nextInfo",f(e,t,o)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getProgramCount=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getProgramCount",arguments);var r=o.clone(n);r.request="count",f(e,t,r)},i.prototype.getProgramList=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getProgramList",arguments);var r=o.clone(n);r.request="list",f(e,t,r)},i.prototype.getChannelCount=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getChannelCount",arguments);var o={from:"com.webos.service.tv.channel.dblist:1",select:[""],where:[{prop:"channelType",op:"=",val:n.type}],filter:[{prop:"Invisible",op:"=",val:!1}]};r.Request("luna://com.palm.db/",{method:"search",parameters:{query:o},onSuccess:function(t){var n={};n.count=t.results.length,e&&e(n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getChannelList=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getChannelList",arguments);var o=n.startIndex-1;0>o&&(o=0);var i=o+n.count,c={from:"com.webos.service.tv.channel.dblist:1",select:["channelId","channelName","channelMode","channelNumber","channelType","skipped","locked","descrambled","scrambled"],where:[{prop:"channelType",op:"=",val:n.type}],filter:[{prop:"Invisible",op:"=",val:!1}],limit:i};r.Request("luna://com.palm.db/",{method:"search",parameters:{query:c},onSuccess:function(t){var n={};n.channel=[];var r=t.results.length-o;if(r>0)for(var a=0;r>a;a++)n.channel[a]=S(t.results[a+o],"db8");e&&e(n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.getChannelListByName=function(e,t,n){a.checkArgs("fFo","broadcastCordova.getChannelListByName",arguments);var o={from:"com.webos.service.tv.channel.dblist:1",select:["channelId","channelName","channelMode","channelNumber","channelType","skipped","locked","descrambled","scrambled"],where:[{prop:"channelName",op:"%",val:n.name}],filter:[{prop:"Invisible",op:"=",val:!1}]};n.type&&o.filter.push({prop:"channelType",op:"=",val:n.type}),r.Request("luna://com.palm.db/",{method:"search",parameters:{query:o},onSuccess:function(t){var n={};if(n.channel=[],t.results.length>0)for(var r=0;r<t.results.length;r++)n.channel[r]=S(t.results[r],"db8");e&&e(n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},i.prototype.setInput=function(e){a.checkArgs("o","broadcastCordova.setInput",arguments);var t=!1;if(-1!=e.src.indexOf("tv://"))1==this.isLastChannel?e.type="service/webos-broadcast":e.type="service/webos-broadcast-standalone",this.currentInput="tv",this.currentSource=e.src.substr(5);else{e.type="service/webos-external";var n=e.src.split(":");this.currentInput=n[1].substr(2).toLowerCase(),this.currentSource=n[2]}for(var r=0;r<this.broadcastElement.childNodes.length;r++)"SOURCE"==this.broadcastElement.childNodes[r].nodeName&&(this.broadcastElement.childNodes[r].src=e.src,this.broadcastElement.childNodes[r].type=e.type,this.broadcastElement.load(),t=!0);return t},i.prototype.addEventListener=function(e,t,n){"channelchange"==e?this.tokenChannelChange=r.Request("luna://com.webos.service.tv.broadcast",{method:"getCurrentChannel",parameters:{broadcastId:this.broadcastElement.mediaId,subscribe:!1},onSuccess:function(e){var n=e.channel;t&&t(n)},onFailure:function(e){}}):"signalstatus"==e&&("tv"==this.currentInput?this.tokenSignalState=r.Request("luna://com.webos.service.tv.broadcast",{method:"getChannelState",parameters:{broadcastId:this.broadcastElement.mediaId,subscribe:!1},onSuccess:function(e){var n=e.channelState;n.screensaverType=n.channelScreensaverType,delete n.channelScreensaverType,t&&t(n)},onFailure:function(e){}}):this.tokenSignalState=r.Request("luna://com.webos.service.tv.externaldevice/input/",{method:"getSignalState",parameters:{externalInputId:this.broadcastElement.mediaId,subscribe:!0},onSuccess:function(e){var n=e.signalState;t&&t(n)},onFailure:function(e){}}))};var c=function(e,t){v(e),"tv"==e.currentInput?(d(e),p(e)):(m(e),t())},s=function(e){var t=document.createElement("VIDEO");t.setAttribute("id",e.videoId),t.setAttribute("width","100%"),t.setAttribute("height","100%"),t.setAttribute("autoplay",""),t.addEventListener("loadedmetadata",function(){c(e.broadcastPlugin,e.callback)},!1);var n=document.createElement("SOURCE");n.setAttribute("src",e.src),n.setAttribute("type",e.type),t.appendChild(n),e.broadcastPlugin.broadcastDivId.appendChild(t),e.broadcastPlugin.broadcastElement=t},u=function(e,t,n){r.Request("luna://com.webos.service.eim",{method:"getCurrentInput",parameters:{},onSuccess:function(r){if("ATV"==r.mainInputSourceId||"DTV"==r.mainInputSourceId)n.broadcastPlugin.currentInput="tv",l(e,t,n);else{var o=r.mainInputSourceId.split("_");n.broadcastPlugin.currentInput=o[0].toLowerCase(),n.broadcastPlugin.currentSource=o[1],n.src="ext://"+n.broadcastPlugin.currentInput+":"+n.broadcastPlugin.currentSource,n.type="service/webos-external",s(n),e&&e()}},onFailure:function(e){delete e.returnValue,t&&t(e)}})},l=function(e,t,n){},d=function(e){e.tokenChannelChange=r.Request("luna://com.webos.service.tv.broadcast",{method:"getCurrentChannel",parameters:{broadcastId:e.broadcastElement.mediaId,subscribe:!0},onSuccess:function(t){e.currentSource=t.channel.channelId;var n={};n=S(t.channel,"api"),e.onchannelchange(n)},onFailure:function(e){}})},p=function(e){e.tokenSignalState=r.Request("luna://com.webos.service.tv.broadcast",{method:"getChannelState",parameters:{broadcastId:e.broadcastElement.mediaId,subscribe:!0},onSuccess:function(t){var n=t.channelState;n.screensaverType=n.channelScreensaverType,delete n.channelScreensaverType,e.onsignalstatuschange(n)},onFailure:function(e){}})},m=function(e){e.tokenSignalState=r.Request("luna://com.webos.service.tv.externaldevice/input/",{method:"getSignalState",parameters:{externalInputId:e.broadcastElement.mediaId,subscribe:!0},onSuccess:function(t){var n=t.signalState;e.onsignalstatuschange(n)},onFailure:function(e){}})},v=function(e){e.tokenChannelChange&&e.tokenChannelChange.cancel(),e.tokenSignalState&&e.tokenSignalState.cancel()},h=function(e,t,n){var r=g(n.startTime),o=g(n.endTime),a={};"count"==n.request?a={from:"com.webos.service.tv.programSCH:4",select:[""],where:[{prop:"signalChannelId",op:"=",val:n.signalChannelId}],filter:[{prop:"localStartTime",op:"<=",val:o},{prop:"localEndTime",op:">=",val:r}]}:"nextInfo"==n.request?a={from:"com.webos.service.tv.programSCH:4",select:["programId","eventId","localStartTime","localEndTime","duration","programName","description"],where:[{prop:"channelId",op:"=",val:n.signalChannelId}],filter:[{prop:"localStartTime",op:">",val:r}],orderBy:"localStartTime",limit:1}:("list"==n.request||"nowInfo"==n.request)&&(a={from:"com.webos.service.tv.programSCH:4",select:["programId","eventId","localStartTime","localEndTime","duration","programName","description"],where:[{prop:"channelId",op:"=",val:n.signalChannelId}],filter:[{prop:"localStartTime",op:"<=",val:o},{prop:"localEndTime",op:">=",val:r}]})},f=function(e,t,n){var o={from:"com.webos.service.tv.channel.dblist:1",select:["signalChannelId"],where:[{prop:"channelId",op:"=",val:n.id}]};r.Request("luna://com.palm.db/",{method:"find",parameters:{query:o},onSuccess:function(r){n.signalChannelId=r.results[0].signalChannelId,h(e,t,n)},onFailure:function(e){delete e.returnValue,t&&t(e)}})},S=function(e,t){var n={};return n.id=e.channelId,n.number=e.channelNumber,n.name=e.channelName,"api"==t?(n.mode=e.channelModeName,n.type=e.channelTypeName,n.isSkipped=e.isSkipped,n.isLocked=e.isLocked,n.isDescrambled=e.isDescrambled,n.isScrambled=e.isScrambled):(n.mode=e.channelMode,n.type=e.channelType,n.isSkipped=e.skipped,n.isLocked=e.locked,n.isDescrambled=e.descrambled,n.isScrambled=e.scrambled),n},g=function(e){var t=e.year+",";return t+=(e.month<10?"0":"")+e.month+",",t+=(e.day<10?"0":"")+e.day+",",t+=(e.hour<10?"0":"")+e.hour+",",t+=(e.minute<10?"0":"")+e.minute+",",t+=(e.second<10?"0":"")+e.second};n.exports=i});var Broadcast=cordova.require("cordova/plugin/broadcast");cordova.define("cordova/plugin/inputSource",function(e,t,n){function r(e){}function o(e,t,n){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=t),(void 0===e.errorText||null===e.errorText)&&(e.errorText=n)}function a(e){var t=1,n=e.length;return isNaN(parseInt(e.charAt(n-1),10))||(t=e.charAt(n-1),n--),e=e.substring(0,n)+":"+t,e="ext://"+e.toLowerCase()}function i(e){null===m?s.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["sdkVersion","boardType"]},onSuccess:function(t){r("getPlatformInfo: onSuccess"),r("version : "+t.sdkVersion);var n=t.sdkVersion.split(".");v=n.length>=1&&"1"===n[0]?{webOSVer:1,chipset:t.boardType.split("_")[0]}:n.length>=1&&"2"===n[0]?{webOSVer:2,chipset:t.boardType.split("_")[0]}:{webOSVer:0,chipset:""},m=v.webOSVer,e(v)},onFailure:function(t){r("getPlatformInfo: onFailure"),v={webOSVer:0,chipset:""},e(v)}}):e(v)}function c(e,t,n){s.Request("luna://com.webos.service.eim/",{method:"getAllInputStatus",onSuccess:function(c){if(r("convertInputSource: On Success "+e),c.returnValue===!0&&"function"==typeof t){var s=new Array(c.totalCount);i(function(i){var u=i.webOSVer;switch(r("convertInputSource: "+JSON.stringify(c.totalCount)),r("convertInputSource: "+JSON.stringify(c.devices)),r("version: "+u),u){case 1:"ext://dp:1"===e?e="ext://hdmi:3":"ext://dvi:1"===e&&(e="ext://hdmi:4");break;case 2:"H15"===v.chipset?"ext://dvi:1"===e?e="ext://hdmi:3":"ext://ops:1"===e?e="ext://hdmi:3":"ext://dp:1"===e?e="ext://hdmi:3":"ext://hdmi:4"===e&&(e="ext://dp:1"):"ext://dp:1"===e?e="ext://hdmi:3":"ext://dvi:1"===e?e="ext://hdmi:2":"ext://ops:1"===e&&(e="ext://hdmi:4")}for(var l=0;l<s.length;l++){s[l]={},"H15"===v.chipset?s[l].inputPort=a(c.devices[l].deviceName):s[l].inputPort=a(c.devices[l].label);var d=c.devices[l].id.split("_");if(s[l].id="ext://"+d[0].toLowerCase()+":"+d[1],e===s[l].id)return r("convertInputSource: On Success ok "+e),void t(e)}for(var p=0;p<s.length;p++)if(e===s[p].inputPort)return e=s[p].id,r("convertInputSource: On Success converted "+e),void t(e);r("convertInputSource: On Failure "+e);var m={};o(m,"IGISS","convertInputSource. It does not support inputsource type."),n(m)})}},onFailure:function(e){r("convertInputSource: On Failure"),delete e.returnValue,"function"==typeof n&&(o(e,"IGISS","convertInputSource returns failure on gathering input list."),n(e))}})}var s;window.PalmSystem?(r("Window.PalmSystem Available"),s=e("cordova/plugin/webos/service")):s={Request:function(e,t){r(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof t.onFailure&&t.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var u=function(){},l=!1,d="",p=null;u.prototype.initialize=function(e,t,n){if(r("initialize: "+JSON.stringify(n)),void 0===n.divId||"string"!=typeof n.divId||null===n.divId||n.divId.length<=0||void 0===n.videoId||"string"!=typeof n.videoId||null===n.videoId||n.videoId.length<=0||void 0===n.callback||"function"!=typeof n.callback||void 0===n.src||"string"!=typeof n.src||null===n.src||n.src.length<=0){if("function"==typeof t){var a={};o(a,"II","InputSource.initialize returns failure. invalid parameters."),t(a)}}else{if(null===document.getElementById(n.divId)||void 0===document.getElementById(n.divId))return void("function"==typeof t&&t({errorCode:"II",errorText:"options.divId:["+n.divId+"] element not exists or cannot approach"}));if(document.getElementById(n.videoId))return void("function"==typeof t&&t({errorCode:"II",errorText:"options.videoId:["+n.videoId+"] element already exists."}));c(n.src,function(r){n.src=r,p=new Broadcast,p.initialize(e,t,n),l=!0,d=n.videoId},function(e){if(r("initialize: failure "+JSON.stringify(e)),"function"==typeof t){var n={};o(n,"II","InputSource.initialize returns failure. invalid parameters."),t(n)}}),r("initialize: Done")}},u.prototype.changeInputSource=function(e,t,n){if(void 0===n.src||"string"!=typeof n.src||null===n.src||n.src.length<=0){if("function"==typeof t){var a={};o(a,"ICIS","InputSource.changeInputSource returns failure. invalid argument."),t(a)}}else if(l!==!1&&null!==document.getElementById(d)&&void 0!==document.getElementById(d))r("changeInputSource: "+JSON.stringify(n)),c(n.src,function(a){if(n.src=a,p.setInput(n))r("changeInputSource: On Success"),"function"==typeof e&&e();else if("function"==typeof t){var i={};r("changeInputSource: On Failure"),o(i,"ICIS","InputSource.changeInputSource returns failure."),t(i)}},function(e){if(r("changeInputSource: failure "+JSON.stringify(e)),"function"==typeof t){var n={};o(n,"ICIS","InputSource.changeInputSource returns failure. invalid argument. "),t(n)}}),r("changeInputSource: Done");else if("function"==typeof t){var a={};o(a,"ICIS","InputSource.changeInputSource returns failure. Call initialize() first."),t(a)}},u.prototype.getInputSourceStatus=function(e,t){r("getInputSourceStatus: "),s.Request("luna://com.webos.service.eim/",{method:"getAllInputStatus",onSuccess:function(n){r("getInputSourceStatus: On Success"),n.returnValue===!0&&i(function(i){var c=i.webOSVer;r("convertInputSource: "+JSON.stringify(n.totalCount)),r("convertInputSource: "+JSON.stringify(n.devices)),r("version: "+c);for(var u={},l=new Array(n.totalCount),d=new Array(n.totalCount),m=0;m<l.length;m++){l[m]={},l[m].inputPort=a(n.devices[m].label);var v=null;switch(c){case 1:v=n.devices[m].id.split("_"),l[m].inputPort="ext://"+v[0].toLowerCase()+":"+v[1],"ext://hdmi:3"===l[m].inputPort?l[m].inputPort="ext://dp:1":"ext://hdmi:4"===l[m].inputPort&&(l[m].inputPort="ext://dvi:1");break;case 2:v=n.devices[m].id.split("_"),l[m].inputPort="ext://"+v[0].toLowerCase()+":"+v[1],"H15"===i.chipset?("ext://dvi:4"===l[m].inputPort&&(l[m].inputPort="ext://hdmi:3"),"ext://ops:1"===l[m].inputPort&&(l[m].inputPort="ext://hdmi:3"),"ext://hdmi:4"===l[m].inputPort&&(l[m].inputPort="ext://dp:1")):"ext://hdmi:3"===l[m].inputPort?l[m].inputPort="ext://dp:1":"ext://hdmi:2"===l[m].inputPort?l[m].inputPort="ext://dvi:1":"ext://hdmi:4"===l[m].inputPort&&(l[m].inputPort="ext://ops:1")}d[m]={},d[m].inputPort=l[m].inputPort,d[m].id=n.devices[m].id}u.inputSourceList=l,s.Request("luna://com.webos.service.eim/",{method:"getCurrentInput",parameters:{},onSuccess:function(t){if(r("InputSource.getInputSourceStatus: On Success 3"),t.returnValue===!0&&"function"==typeof e){u.currentInputSource={};for(var n=0;n<d.length;n++)if(d[n].id===t.mainInputSourceId){u.currentInputSource=d[n].inputPort;break}if(u.currentSignalState="unknown",null!==p)r("InputSource.getInputSourceStatus : broadcast is not null"),p.getSignalStatus(function(t){return u.currentSignalState=t.videoSignalState,r("InputSource.getInputSourceStatus: On Success 2"),"function"==typeof e?(r("getInputSourceStatus: On Success"+JSON.stringify(u)),void e(u)):void 0},function(){return r("InputSource.getInputSourceStatus : signal state is fail."),"function"==typeof e?(r("getInputSourceStatus: On Success"+JSON.stringify(u)),void e(u)):void 0});else if(r("InputSource.getInputSourceStatus : it does not initialize."),"function"==typeof e)return r("getInputSourceStatus: On Success"+JSON.stringify(u)),void e(u)}},onFailure:function(e){return r("InputSource.getInputSourceStatus: On Failure 2"),delete e.returnValue,"function"==typeof t?(o(e,"IGISS","InputSource.getInputSourceStatus returns failure."),void t(e)):void 0}})})},onFailure:function(e){r("getInputSourceStatus: On Failure"),delete e.returnValue,"function"==typeof t&&(o(e,"IGISS","InputSource.changeInputSource returns failure on gathering input list."),t(e))}}),r("InputSource.getInputSourceStatus Done")};var m=null,v={};n.exports=u}),InputSource=cordova.require("cordova/plugin/inputSource");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/power",function(e,t,i){function r(e){}function n(e,t,i){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=t),(void 0===e.errorText||null===e.errorText)&&(e.errorText=i)}function o(e){null===a?s.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["sdkVersion","boardType"]},onSuccess:function(t){r("getPlatformInfo: onSuccess"),r("version : "+t.sdkVersion);var i=t.sdkVersion.split(".");l=i.length>=1&&"1"===i[0]?{webOSVer:1,chipset:t.boardType.split("_")[0]}:i.length>=1&&"2"===i[0]?{webOSVer:2,chipset:t.boardType.split("_")[0]}:{webOSVer:0,chipset:""},a=l.webOSVer,delete t.returnValue,e(l)},onFailure:function(t){r("getPlatformInfo: onFailure"),delete t.returnValue,l={webOSVer:0,chipset:""},e(l)}}):e(l)}function u(e){if("H15"==l.chipset)switch(e){case"ext://hdmi:1":return"HDMI1";case"ext://hdmi:2":return"HDMI2";case"ext://hdmi:3":return"OPS/HDMI3/DVI";case"ext://dvi:1":return"OPS/HDMI3/DVI";case"ext://dp:1":return"DISPLAYPORT";case"ext://rgb:1":return"RGB";case"ext://ops:1":return"OPS/HDMI3/DVI";case"HDMI1":return"ext://hdmi:1";case"HDMI2":return"ext://hdmi:2";case"HDMI3":return"ext://hdmi:3";case"DVI":return"ext://dvi:1";case"DISPLAYPORT":return"ext://dp:1";case"RGB":return"ext://rgb:1";case"OPS":return"ext://ops:1";case"OPS/HDMI3/DVI":return"ext://hdmi:3"}else switch(e){case"ext://hdmi:1":return 1===l.webOSVer?"HDMI1":"HDMI";case"ext://hdmi:2":return"HDMI2";case"ext://hdmi:3":return"HDMI3";case"ext://dvi:1":return"DVI";case"ext://dp:1":return"DISPLAYPORT";case"ext://rgb:1":return"RGB";case"ext://ops:1":return"OPS";case"HDMI1":return"ext://hdmi:1";case"HDMI":return"ext://hdmi:1";case"HDMI2":return"ext://hdmi:2";case"HDMI3":return"ext://hdmi:3";case"DVI":return"ext://dvi:1";case"DISPLAYPORT":return"ext://dp:1";case"RGB":return"ext://rgb:1";case"OPS":return"ext://ops:1";case"OPS/HDMI3/DVI":return"ext://hdmi:3"}return null}var s;window.PalmSystem?(r("Window.PalmSystem Available"),s=e("cordova/plugin/webos/service")):s={Request:function(e,t){r(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof t.onFailure&&t.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var m=function(){},a=null,l={};m.PowerCommand={SHUTDOWN:"powerOff",REBOOT:"reboot"},m.DisplayMode={DISPLAY_OFF:"Screen Off",DISPLAY_ON:"Active"},m.TimerWeek={MONDAY:1,TUESDAY:2,WEDNESDAY:4,THURSDAY:8,FRIDAY:16,SATURDAY:32,SUNDAY:64,EVERYDAY:127},m.prototype.getPowerStatus=function(e,t){r("getPowerStatus: "),s.Request("luna://com.webos.service.tv.signage/",{method:"getPowerState",onSuccess:function(i){r("getPowerStatus: On Success");var o={};i.returnValue===!0&&(o.displayMode=i.state),s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["wolEnable"]},onSuccess:function(i){r("getPowerStatus: On Success 2"),i.returnValue===!0&&(o.wakeOnLan="1"===i.settings.wolEnable?!0:!1),s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"time",keys:["onTimerEnable","offTimerEnable"]},onSuccess:function(t){r("getPowerStatus: On Success 3"),t.returnValue===!0&&(o.allOnTimer="on"===t.settings.onTimerEnable?!0:!1,o.allOffTimer="on"===t.settings.offTimerEnable?!0:!1,"function"==typeof e&&e(o))},onFailure:function(e){r("getPowerStatus: On Failure 3"),delete e.returnValue,"function"==typeof t&&(n(e,"PGPS","Power.getPowerStatus returns failure."),t(e))}})},onFailure:function(e){r("getPowerStatus: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PGPS","Power.getPowerStatus returns failure."),t(e))}})},onFailure:function(e){r("getPowerStatus: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PGPS","Power.getPowerStatus returns failure."),t(e))}}),r("Power.getPowerStatus Done")},m.prototype.enableAllOnTimer=function(e,t,i){r("enableAllOnTimer: "+JSON.stringify(i));var o=null;switch(i.allOnTimer){case!0:o="on";break;case!1:o="off";break;default:if("function"==typeof t){var u={};n(u,"PEAOT","Power.enableAllOnTimer returns failure. Invalid option value."),t(u)}return}s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"time",settings:{onTimerEnable:o}},onSuccess:function(){if(i.clearOnTimer===!0){var o=0,u=["0","0","0","0","0","0","0"],m=["0","0","0","0","0","0","0"],a=["0","0","0","0","0","0","0"],l=["0","0","0","0","0","0","0"],f=[];s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOnTimerHour:u,multiOnTimerMinute:m,multiOnTimerWeekday:a,multiOnTimerSource:l,onTimerCount:o,onTimerSchedule:f}},onSuccess:function(){r("enableAllOnTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("enableAllOnTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PEAOT","Power.enableAllOnTimer returns failure. / clearOnTimer"),t(e))}})}else"function"==typeof e&&(r("enableAllOnTimer: On Success"),e())},onFailure:function(e){delete e.returnValue,"function"==typeof t&&(r("enableAllOnTimer: On Failure"),n(e,"PEAOT","Power.enableAllOnTimer returns failure."),t(e))}}),r("Power.enableAllOnTimer Done")},m.prototype.enableAllOffTimer=function(e,t,i){r("enableAllOffTimer: "+JSON.stringify(i));var o=null;switch(i.allOffTimer){case!0:o="on";break;case!1:o="off";break;default:if("function"==typeof t){var u={};n(u,"PEAOT","Power.enableAllOffTimer returns failure. Invalid option value."),t(u)}return}s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"time",settings:{offTimerEnable:o}},onSuccess:function(){if(i.clearOffTimer===!0){var o=0,u=["0","0","0","0","0","0","0"],m=["0","0","0","0","0","0","0"],a=["0","0","0","0","0","0","0"],l=[];s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOffTimerHour:u,multiOffTimerMinute:m,multiOffTimerWeekday:a,offTimerCount:o,offTimerSchedule:l}},onSuccess:function(){r("enableAllOffTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("enableAllOffTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PEAOT","Power.enableAllOffTimer returns failure. / clearOffTimer"),t(e))}})}else"function"==typeof e&&(r("enableAllOffTimer: On Success"),e())},onFailure:function(e){delete e.returnValue,"function"==typeof t&&(r("enableAllOffTimer: On Failure"),n(e,"PEAOT","Power.enableAllOffTimer returns failure."),t(e))}}),r("Power.enableAllOffTimer Done")},m.prototype.enableWakeOnLan=function(e,t,i){r("enableWakeOnLan: "+JSON.stringify(i));var o=null;switch(i.wakeOnLan){case!0:o="1";break;case!1:o="0";break;default:if("function"==typeof t){var u={};n(u,"PSWOL","Power.enableWakeOnLan returns failure. Invalid option value."),t(u)}return}s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{wolEnable:o}},onSuccess:function(){"function"==typeof e&&(r("enableWakeOnLan: On Success"),e())},onFailure:function(e){delete e.returnValue,"function"==typeof t&&(r("enableWakeOnLan: On Failure"),n(e,"PSWOL","Power.enableWakeOnLan returns failure."),t(e))}}),r("Power.enableWakeOnLan Done")},m.prototype.addOnTimer=function(e,t,i){if(r("addOnTimer: "+JSON.stringify(i)),void 0===i.hour||isNaN(i.hour)||"number"!=typeof i.hour||i.hour<0||i.hour>23||void 0===i.minute||isNaN(i.minute)||"number"!=typeof i.minute||i.minute<0||i.minute>59||void 0===i.week||isNaN(i.week)||"number"!=typeof i.week||i.week<0||i.week>127||void 0===i.inputSource||"string"!=typeof i.inputSource||0!==i.inputSource.indexOf("ext://")){if("function"==typeof t){var m={};n(m,"PAOT","Power.addOnTimer returns failure. invalid parameters or out of range."),t(m)}}else s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["multiOnTimerHour","multiOnTimerMinute","multiOnTimerWeekday","multiOnTimerSource","onTimerSchedule","onTimerCount"]},onSuccess:function(m){m.returnValue===!0&&o(function(o){r("version : "+o),"string"==typeof m.settings.multiOnTimerHour&&(m.settings.multiOnTimerHour=JSON.parse(m.settings.multiOnTimerHour)),"string"==typeof m.settings.multiOnTimerMinute&&(m.settings.multiOnTimerMinute=JSON.parse(m.settings.multiOnTimerMinute)),"string"==typeof m.settings.multiOnTimerWeekday&&(m.settings.multiOnTimerWeekday=JSON.parse(m.settings.multiOnTimerWeekday)),"string"==typeof m.settings.multiOnTimerSource&&(m.settings.multiOnTimerSource=JSON.parse(m.settings.multiOnTimerSource)),"string"==typeof m.settings.onTimerSchedule&&(m.settings.onTimerSchedule=JSON.parse(m.settings.onTimerSchedule));var a=null===m.settings.onTimerSchedule||void 0===m.settings.onTimerSchedule?0:m.settings.onTimerSchedule.length;if(m.settings.multiOnTimerHour.length<=a)return void("function"==typeof t&&(n(m,"PSOT","Power.addOnTimer returns failure. No space to add timer."),t(m)));m.settings.multiOnTimerHour[a]=i.hour,m.settings.multiOnTimerMinute[a]=i.minute,m.settings.multiOnTimerWeekday[a]=i.week,m.settings.multiOnTimerSource[a]=u(i.inputSource);var l=360;m.settings.onTimerSchedule[a]={_id:""+l++,hour:i.hour,input:u(i.inputSource),minute:i.minute,weekday:i.week},s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOnTimerHour:m.settings.multiOnTimerHour,multiOnTimerMinute:m.settings.multiOnTimerMinute,multiOnTimerWeekday:m.settings.multiOnTimerWeekday,multiOnTimerSource:m.settings.multiOnTimerSource,onTimerCount:a+1,onTimerSchedule:m.settings.onTimerSchedule}},onSuccess:function(){r("addOnTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("addOnTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PAOT","Power.addOnTimer returns failure."),t(e))}})})},onFailure:function(e){r("addOnTimer: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PAOT","Power.addOnTimer returns failure."),t(e))}}),r("Power.addOnTimer Done")},m.prototype.deleteOnTimer=function(e,t,i){if(r("deleteOnTimer: "+JSON.stringify(i)),void 0===i.hour||isNaN(i.hour)||"number"!=typeof i.hour||i.hour<0||i.hour>23||void 0===i.minute||isNaN(i.minute)||"number"!=typeof i.minute||i.minute<0||i.minute>59||void 0===i.week||isNaN(i.week)||"number"!=typeof i.week||i.week<0||i.week>127||void 0===i.inputSource||"string"!=typeof i.inputSource||0!==i.inputSource.indexOf("ext://")){if("function"==typeof t){var m={};n(m,"PDOT","Power.deleteOnTimer returns failure. invalid parameters or out of range."),t(m)}}else s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["multiOnTimerHour","multiOnTimerMinute","multiOnTimerWeekday","multiOnTimerSource","onTimerSchedule","onTimerCount"]},onSuccess:function(m){m.returnValue===!0&&o(function(o){r("version : "+o),"string"==typeof m.settings.multiOnTimerHour&&(m.settings.multiOnTimerHour=JSON.parse(m.settings.multiOnTimerHour)),"string"==typeof m.settings.multiOnTimerMinute&&(m.settings.multiOnTimerMinute=JSON.parse(m.settings.multiOnTimerMinute)),"string"==typeof m.settings.multiOnTimerWeekday&&(m.settings.multiOnTimerWeekday=JSON.parse(m.settings.multiOnTimerWeekday)),"string"==typeof m.settings.multiOnTimerSource&&(m.settings.multiOnTimerSource=JSON.parse(m.settings.multiOnTimerSource)),"string"==typeof m.settings.onTimerSchedule&&(m.settings.onTimerSchedule=JSON.parse(m.settings.onTimerSchedule));for(var a=0,l=null===m.settings.onTimerSchedule||void 0===m.settings.onTimerSchedule?0:m.settings.onTimerSchedule.length,f=["0","0","0","0","0","0","0"],c=["0","0","0","0","0","0","0"],d=["0","0","0","0","0","0","0"],g=["0","0","0","0","0","0","0"],T=[],O=u(i.inputSource),S=!1,p=0;l>p;p++)r("deleteOnTimer: "+O),null!==m.settings.onTimerSchedule[p]&&(S===!1&&i.hour===m.settings.onTimerSchedule[p].hour&&i.minute===m.settings.onTimerSchedule[p].minute&&i.week===m.settings.onTimerSchedule[p].weekday&&O===m.settings.onTimerSchedule[p].input?(r("deleteOnTimer: index "+p),S=!0):(f[a]=m.settings.multiOnTimerHour[p],c[a]=m.settings.multiOnTimerMinute[p],d[a]=m.settings.multiOnTimerWeekday[p],g[a]=m.settings.multiOnTimerSource[p],T[a]=m.settings.onTimerSchedule[p],a++));return S===!0&&l--,0===l&&(T=[]),m.settings.onTimerSchedule.length===l?void("function"==typeof t&&(n(m,"PDOT","Power.deleteOnTimer returns failure. There is no 'on timer' matched in the list."),t(m))):void s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOnTimerHour:f,multiOnTimerMinute:c,multiOnTimerWeekday:d,multiOnTimerSource:g,onTimerCount:l,onTimerSchedule:T}},onSuccess:function(){r("deleteOnTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("deleteOnTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PDOT","Power.deleteOnTimer returns failure."),t(e))}})})},onFailure:function(e){r("deleteOnTimer: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PDOT","Power.deleteOnTimer returns failure."),t(e))}}),r("Power.deleteOnTimer Done")},m.prototype.addOffTimer=function(e,t,i){if(r("addOffTimer: "+JSON.stringify(i)),void 0===i.hour||isNaN(i.hour)||"number"!=typeof i.hour||i.hour<0||i.hour>23||void 0===i.minute||isNaN(i.minute)||"number"!=typeof i.minute||i.minute<0||i.minute>59||void 0===i.week||isNaN(i.week)||"number"!=typeof i.week||i.week<0||i.week>127){if("function"==typeof t){var o={};n(o,"PAOT","Power.addOffTimer returns failure. Invalid parameter."),t(o)}}else s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["multiOffTimerHour","multiOffTimerMinute","multiOffTimerWeekday","offTimerSchedule","offTimerCount"]},onSuccess:function(o){if(o.returnValue===!0){"string"==typeof o.settings.multiOffTimerHour&&(o.settings.multiOffTimerHour=JSON.parse(o.settings.multiOffTimerHour)),"string"==typeof o.settings.multiOffTimerMinute&&(o.settings.multiOffTimerMinute=JSON.parse(o.settings.multiOffTimerMinute)),"string"==typeof o.settings.multiOffTimerWeekday&&(o.settings.multiOffTimerWeekday=JSON.parse(o.settings.multiOffTimerWeekday)),"string"==typeof o.settings.offTimerSchedule&&(o.settings.offTimerSchedule=JSON.parse(o.settings.offTimerSchedule));var u=null===o.settings.offTimerSchedule||void 0===o.settings.offTimerSchedule?0:o.settings.offTimerSchedule.length;if(o.settings.multiOffTimerHour.length<=u)return void("function"==typeof t&&(n(o,"PAOT","Power.addOffTimer returns failure. No space to add timer."),t(o)));o.settings.multiOffTimerHour[u]=i.hour,o.settings.multiOffTimerMinute[u]=i.minute,o.settings.multiOffTimerWeekday[u]=i.week;var m=360;o.settings.offTimerSchedule[u]={_id:""+m++,hour:i.hour,minute:i.minute,weekday:i.week},s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOffTimerHour:o.settings.multiOffTimerHour,multiOffTimerMinute:o.settings.multiOffTimerMinute,multiOffTimerWeekday:o.settings.multiOffTimerWeekday,offTimerCount:u+1,offTimerSchedule:o.settings.offTimerSchedule}},onSuccess:function(){r("addOffTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("addOffTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PAOT","Power.addOffTimer returns failure."),t(e))}})}},onFailure:function(e){r("addOffTimer: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PAOT","Power.addOffTimer returns failure."),t(e))}}),r("Power.addOffTimer Done")},m.prototype.deleteOffTimer=function(e,t,i){if(r("deleteOffTimer: "+JSON.stringify(i)),void 0===i.hour||isNaN(i.hour)||"number"!=typeof i.hour||i.hour<0||i.hour>23||void 0===i.minute||isNaN(i.minute)||"number"!=typeof i.minute||i.minute<0||i.minute>59||void 0===i.week||isNaN(i.week)||"number"!=typeof i.week||i.week<0||i.week>127){if("function"==typeof t){var o={};n(o,"PDOT","Power.deleteOffTimer returns failure. invalid parameters or out of range."),t(o)}}else s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["multiOffTimerHour","multiOffTimerMinute","multiOffTimerWeekday","offTimerSchedule","offTimerCount"]},onSuccess:function(o){if(o.returnValue===!0){"string"==typeof o.settings.multiOffTimerHour&&(o.settings.multiOffTimerHour=JSON.parse(o.settings.multiOffTimerHour)),"string"==typeof o.settings.multiOffTimerMinute&&(o.settings.multiOffTimerMinute=JSON.parse(o.settings.multiOffTimerMinute)),"string"==typeof o.settings.multiOffTimerWeekday&&(o.settings.multiOffTimerWeekday=JSON.parse(o.settings.multiOffTimerWeekday)),"string"==typeof o.settings.offTimerSchedule&&(o.settings.offTimerSchedule=JSON.parse(o.settings.offTimerSchedule));for(var u=0,m=null===o.settings.offTimerSchedule||void 0===o.settings.offTimerSchedule?0:o.settings.offTimerSchedule.length,a=["0","0","0","0","0","0","0"],l=["0","0","0","0","0","0","0"],f=["0","0","0","0","0","0","0"],c=[],d=!1,g=0;m>g;g++)null!==o.settings.offTimerSchedule[g]&&(d===!1&&i.hour===o.settings.offTimerSchedule[g].hour&&i.minute===o.settings.offTimerSchedule[g].minute&&i.week===o.settings.offTimerSchedule[g].weekday?d=!0:(a[u]=o.settings.multiOffTimerHour[g],l[u]=o.settings.multiOffTimerMinute[g],f[u]=o.settings.multiOffTimerWeekday[g],c[u]=o.settings.offTimerSchedule[g],u++));if(d===!0&&m--,0===m&&(c=[]),o.settings.offTimerSchedule.length===m)return void("function"==typeof t&&(n(o,"PDOT","Power.deleteOffTimer returns failure. There is no 'off timer' matched in the list."),t(o)));s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{multiOffTimerHour:a,multiOffTimerMinute:l,multiOffTimerWeekday:f,offTimerCount:m,offTimerSchedule:c}},onSuccess:function(){r("deleteOffTimer: On Success 2"),"function"==typeof e&&e()},onFailure:function(e){r("deleteOffTimer: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PDOT","Power.deleteOffTimer returns failure."),t(e))}})}},onFailure:function(e){r("deleteOffTimer: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PDOT","Power.deleteOffTimer returns failure."),t(e))}}),r("Power.deleteOffTimer Done")},m.prototype.getOnTimerList=function(e,t){r("getOnTimerList: "),s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["onTimerSchedule"]},onSuccess:function(t){t.returnValue===!0&&o(function(i){r("version : "+i);var n={};"string"==typeof t.settings.onTimerSchedule&&(t.settings.onTimerSchedule=JSON.parse(t.settings.onTimerSchedule));for(var o=new Array(null===t.settings.onTimerSchedule||void 0===t.settings.onTimerSchedule?0:t.settings.onTimerSchedule.length),s=0,m=0;m<o.length;m++)null!==t.settings.onTimerSchedule[m]&&void 0!==t.settings.onTimerSchedule[m]&&(o[s]={hour:0,minute:0,week:0,inputSource:0},o[s].hour=t.settings.onTimerSchedule[m].hour,o[s].minute=t.settings.onTimerSchedule[m].minute,o[s].week=t.settings.onTimerSchedule[m].weekday,o[s++].inputSource=u(t.settings.onTimerSchedule[m].input));n.timerList=o,"function"==typeof e&&e(n)})},onFailure:function(e){r("getOnTimerList: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PGOTL","Power.getOnTimerList returns failure."),t(e))}}),r("Power.getOnTimerList Done")},m.prototype.getOffTimerList=function(e,t){r("getOffTimerList: "),s.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["offTimerSchedule"]},onSuccess:function(t){if(r("getOffTimerList: On Success"),t.returnValue===!0){var i={};"string"==typeof t.settings.offTimerSchedule&&(t.settings.offTimerSchedule=JSON.parse(t.settings.offTimerSchedule));for(var n=new Array(null===t.settings.offTimerSchedule||void 0===t.settings.offTimerSchedule?0:t.settings.offTimerSchedule.length),o=0,u=0;u<n.length;u++)null!==t.settings.offTimerSchedule[u]&&void 0!==t.settings.offTimerSchedule[u]&&(n[o]={hour:0,minute:0,week:0},n[o].hour=t.settings.offTimerSchedule[u].hour,n[o].minute=t.settings.offTimerSchedule[u].minute,n[o++].week=t.settings.offTimerSchedule[u].weekday);i.timerList=n,"function"==typeof e&&e(i)}},onFailure:function(e){r("getOffTimerList: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PGOTL","Power.getOffTimerList returns failure."),t(e))}}),r("Power.getOffTimerList Done")},m.prototype.setDisplayMode=function(e,t,i){r("setDisplayMode: "+JSON.stringify(i));var o=null;switch(i.displayMode){case m.DisplayMode.DISPLAY_OFF:o="turnOffScreen";break;case m.DisplayMode.DISPLAY_ON:o="turnOnScreen";break;default:if("function"==typeof t){var u={};n(u,"PSDM","Power.setDisplayMode returns failure. Invalid option value."),t(u)}return}if(r("setDisplayMode: "+o),null===o&&"function"==typeof t){var u={};return n(u,"PSDM","Power.setDisplayMode returns failure. command was not defined."),t(u),void r("Power.setDisplayMode invalid ")}s.Request("luna://com.webos.service.tv.signage/",{method:"getPowerState",onSuccess:function(u){return r("setDisplayMode: On Success"),u.returnValue===!0&&u.state===i.displayMode?void("function"==typeof e&&(r("setDisplayMode: no need to do any action."),e())):void s.Request("luna://com.webos.service.tv.signage/",{method:o,onSuccess:function(t){r("setDisplayMode: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){r("setDisplayMode: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PSDM","Power.setDisplayMode returns failure."),t(e))}})},onFailure:function(e){r("setDisplayMode: On Failure 2"),delete e.returnValue,"function"==typeof t&&(n(e,"PSDM","Power.setDisplayMode returns failure."),t(e))}}),r("Power.setDisplayMode Done")},m.prototype.executePowerCommand=function(e,t,i){if(r("executePowerCommand: "+JSON.stringify(i)),void 0===i.powerCommand||"string"!=typeof i.powerCommand||null===i.powerCommand||i.powerCommand.length<=0){if("function"==typeof t){var o={};n(o,"PEPM","Power.executePowerCommand returns failure. invalid argument or out of range. "),t(o)}}else{if(i.powerCommand!==m.PowerCommand.REBOOT&&i.powerCommand!==m.PowerCommand.SHUTDOWN){var o={};return n(o,"PEPM","Power.executePowerCommand returns failure. invalid argument."),void t(o)}s.Request("luna://com.webos.service.tv.signage/",{method:i.powerCommand,parameters:{reason:"unknown"},onSuccess:function(t){r("executePowerCommand: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){r("executePowerCommand: On Failure"),delete e.returnValue,"function"==typeof t&&(n(e,"PEPM","Power.executePowerCommand returns failure."),t(e))}}),r("Power.executePowerCommand Done")}},i.exports=m}),Power=cordova.require("cordova/plugin/power");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/signage",function(e,r,o){function t(e){}function n(e,r){for(var o in e)if(e[o]===r)return!0;return!1}function i(e,r,o,n,i){var a={category:e,keys:r};l.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:a,onSuccess:function(e){if(t("On Success"),e.returnValue===!0){var r=o(e.settings);r===!1?"function"==typeof i&&i({errorText:"Invalid DB value",errorCode:"DB_ERROR"}):"function"==typeof n?(t("successCallback!!!!!!!!!"),n(r)):t("successCallback not registered or is not a function: "+n)}else t("Settings Failed: "+JSON.stringify(e,null,3)),"function"==typeof i&&i({errorText:"Invalid DB value : "+e.errorText,errorCode:"DB_ERROR"})},onFailure:function(e){if(t("On Failure"),delete e.returnValue,e.settings){t("settings = "+JSON.stringify(e.settings,null,3));var r=o(e.settings);t("errorKey = "+JSON.stringify(e.errorKey,null,3));for(var a=0;a<e.errorKey.length;++a)r[e.errorKey[a]]=M.UNDEFINED;t("cbObj = "+JSON.stringify(r,null,3)),"function"==typeof n&&(t("successCallback!!!!!!!!!"),n(r))}else"function"==typeof i&&i({errorText:"undefined"==typeof e.errorText?"DB Failure":e.errorText,errorCode:"DB_ERROR"})}}),t("Requested Service: luna://com.webos.service.commercial.signage.storageservice/settings/"),t("params : "+JSON.stringify(a))}function a(e,r,o,n){var i={category:e,settings:r};t("settings : "+JSON.stringify(r,null,3));var a=!1;for(var s in r)if(s){t("has key : "+s),a=!0;break}return a===!1?(t("Nothing to set!!!!!"),void o()):(l.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:i,onSuccess:function(){t("On Success"),"function"==typeof o&&(t("SUCCEES CALLBACK!!!!!!!"),o())},onFailure:function(e){t("On Failure"),delete e.returnValue,"function"==typeof n&&(t("ERROR CALLBACK!!!!!!!"),n(e))}}),t("Requested Service: luna://com.webos.service.commercial.signage.storageservice/settings/"),void t("params : "+JSON.stringify(i)))}function s(e){return"on"===e?!0:!1}function u(e,r){t("cancelAllSubscription> setup are: "+JSON.stringify(E,null,3));for(var o in E)o&&c(o);t("Stop Polling"),l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/stopMonitor",parameters:{},onSuccess:function(o){t("On Success"),o.returnValue===!0?"function"==typeof e&&e():"function"==typeof r&&r(o)},onFailure:function(e){t("On Failure"),delete e.returnValue,"function"==typeof r&&r(e)}})}var l;window.PalmSystem?(t("Window.PalmSystem Available"),l=e("cordova/plugin/webos/service")):(t("Window.PalmSystem is NOT Available"),l={Request:function(e,r){t(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof r.onFailure&&r.onFailure({returnValue:!1,errorCode:"CORDOVA_ERR",errorText:"PalmSystem Not Available. Cordova is not installed?"})}});var c=function(e){var r=E[e];t(JSON.stringify(r,null,3)),r&&r.getEvent===!0&&E[e].listenerObj&&(E[e].listenerObj.cancel(),E[e].getEvent=!1,E[e].listenerObj=null)},d=function(e,r){var o=E[e];o&&"function"==typeof o.createListener&&(o.listenerObj=o.createListener(r),o.getEvent=!0)},f={FAILOVER_MODE:"failover",FAILOVER_PRIORITY:"failoverPriority",IR_OPERATION_MODE:"enableIrRemote",LOCALKEY_OPERATION_MODE:"enableLocalKey",OSD_PORTRAIT_MODE:"osdPortraitMode",TILE_MODE:"tileMode",TILE_ID:"tileId",TILE_ROW:"tileRow",TILE_COLUME:"tileCol",TILE_NATURALMODE:"naturalMode",DPM_MODE:"dpmMode",AUTOMATIC_STANDBY_MODE:"autoSB",ISM_METHOD:"ismmethod",SES_MODE:"smartEnergy",DO_15OFF_MODE:"15off",MONITOR_FAN:"monitorFan",MONITOR_SIGNAL:"monitorSignal",MONITOR_LAMP:"monitorLamp",MONITOR_SCREEN:"monitorScreen",MONITOR_AUDIO:"monitorAudio",AUDIO_SOURCE_HDMI1:"audioSourceHdmi1",AUDIO_SOURCE_HDMI2:"audioSourceHdmi2",AUDIO_SOURCE_DP:"audioSourceDp"},m=function(e){t("Create Listener for monitorTemperature");var r=l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/getTemperature",parameters:{subscribe:!0},onSuccess:function(r){if(t("temperature!!!!!!!!! : "+JSON.stringify(r,null,3)),r.returnValue===!0){var o={source:M.MonitoringSource.THERMOMETER,type:M.EventType.CURRENT_TEMPERATURE,data:{temperature:r.temperature}};"function"==typeof e&&e(o)}},onFailure:function(e){t("monitor_temperature!!!!!!!!! : FAIL "+JSON.stringify(e,null,3))}});return r},g=function(e){t("Create Listener for monitorFan");var r=l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/getFanEvent",parameters:{subscribe:!0},onSuccess:function(r){if(t("monitor_fan!!!!!!!!! : "+JSON.stringify(r,null,3)),r.returnValue===!0){var o={source:M.MonitoringSource.FAN,type:M.EventType.FAN_STATUS,data:{status:r.fanFault}};"function"==typeof e&&e(o)}},onFailure:function(e){t("monitor_fan!!!!!!!!! : FAIL "+JSON.stringify(e,null,3))}});return r},v=function(e){t("Create Listener for monitorLamp");var r=l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/getLampEvent",parameters:{subscribe:!0},onSuccess:function(r){if(t("monitor_lamp!!!!!!!!! : "+JSON.stringify(r,null,3)),r.returnValue===!0){var o={source:M.MonitoringSource.LAMP,type:M.EventType.LAMP_STATUS,data:{status:r.lampFault}};"function"==typeof e&&e(o)}},onFailure:function(e){t("monitor_lamp!!!!!!!!! : FAIL "+JSON.stringify(e,null,3))}});return r},p=function(e){t("Create Listener for monitorSignal");var r=l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/getSignalEvent",parameters:{subscribe:!0},onSuccess:function(r){if(t("monitor_signal!!!!!!!!! : "+JSON.stringify(r,null,3)),r.returnValue===!0){var o={type:M.EventType.SIGNAL_STATUS,source:M.MonitoringSource.SIGNAL,data:{}};r.noSignal===!0?o.data.status="no_signal":o.data.status="signal_available","function"==typeof e&&e(o)}},onFailure:function(e){t("monitor_signal!!!!!!!!! : FAIL "+JSON.stringify(e,null,3))}});return r},O=function(e){t("Create Listener for monitorScreen");var r=l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/getScreenEvent",parameters:{subscribe:!0},onSuccess:function(r){if(t("monitor_screen!!!!!!!!! : "+JSON.stringify(r,null,3)),r.returnValue===!0){var o={source:M.MonitoringSource.SCREEN,type:M.EventType.SCREEN_STATUS,data:{status:r.screen}};"function"==typeof e&&e(o)}},onFailure:function(e){t("monitor_screen!!!!!!!!! FAIL : "+JSON.stringify(e,null,3))}});return r},E={fan:{getEvent:!1,listenerObj:null,createListener:g},screen:{getEvent:!1,listenerObj:null,createListener:O},temperature:{getEvent:!1,listenerObj:null,createListener:m},signal:{getEvent:!1,listenerObj:null,createListener:p},lamp:{getEvent:!1,listenerObj:null,createListener:v}},S={row:0,col:0},M=function(){};M.UNDEFINED="___undefined___",M.OsdPortraitMode={ON:"90",OFF:"off",DEGREE_90:"90",DEGREE_270:"270"},M.AutomaticStandbyMode={OFF:"off",STANDBY_4HOURS:"4hours"},M.IsmMethod={NORMAL:"NORMAL",ORBITER:"ORBITER",INVERSION:"INVERSION",COLORWASH:"COLORWASH",WHITEWASH:"WHITEWASH",WASHING_BAR:"WASHINGBAR",USER_IMAGE:"USERIMAGE",USER_VIDEO:"USERVIDEO"},M.FailoverMode={OFF:"off",AUTO:"auto",MANUAL:"manual"},M.DigitalAudioInput={HDMI_DP:"hdmi",AUDIO_IN:"audioIn"},M.DpmMode={OFF:"off",POWER_OFF_5SECOND:"5sec",POWER_OFF_10SECOND:"10sec",POWER_OFF_15SECOND:"15sec",POWER_OFF_1MINUTE:"1min",POWER_OFF_3MINUTE:"3min",POWER_OFF_5MINUTE:"5min",POWER_OFF_10MINUTE:"10min"},M.KeyOperationMode={ALLOW_ALL:"normal",POWER_ONLY:"usePwrOnly",BLOCK_ALL:"blockAll"},M.EventType={CURRENT_TEMPERATURE:"CURRENT_TEMPERATURE",FAN_STATUS:"FAN_STATUS",LAMP_STATUS:"LAMP_STATUS",SCREEN_STATUS:"SCREEN_STATUS",SIGNAL_STATUS:"SIGNAL_STATUS"},M.MonitoringSource={FAN:"FAN",LAMP:"LAMP",SIGNAL:"SIGNAL",SCREEN:"SCREEN",THERMOMETER:"THERMOMETER"},M.prototype.setPortraitMode=function(e,r,o){function n(e){if(e.portraitMode){for(var r in M.OsdPortraitMode)if(e.portraitMode===M.OsdPortraitMode[r])return!0;return i="Signage.setPortraitMode: Unrecognized OsdPortraintMode : "+e.portraitMode,!1}return i="Signage.setPortraitMode: portraitMode does not exist.",!1}var i,s={};if(n(o)){var u=o.portraitMode;s[f.OSD_PORTRAIT_MODE]=u,l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"setOsdPortraitMode",parameters:{osdPortraitMode:o.portraitMode},onSuccess:function(r){e()},onFailure:function(o){-1!==o.errorText.indexOf("Unknown method")?a("commercial",s,e,r):r({errorCode:o.errorCode,errorText:o.errorText})}}),a("commercial",s,e,r),t("setPortraitMode Done")}else r({errorCode:"BAD_PARAMETER",errorText:i})},M.prototype.setFailoverMode=function(e,r,o){function n(e){t("options:"+JSON.stringify(e,null,3));var r=e.failoverMode;if(r){if(r.mode){if(r.mode===M.FailoverMode.MANUAL)return r.priority?0===r.priority.length||"undefined"==typeof r.priority.length?!1:!0:(i="priority should be present when mode is MANUAL.",!1);if(r.priority)return i="This priority is available only if mode is : Signage.FailoverMode.MANUAL",!1;var o=!1;t("Mode is: "+r.mode);for(var n in M.FailoverMode)r.mode===M.FailoverMode[n]&&(t("Matched with: "+M.FailoverMode[n]),o=!0);return o?!0:(t("Unrecognized failoverMode : "+r.mode),i="Unrecognized failoverMode : "+r.mode,!1)}return r.priority?(t("Unrecognized failoverMode : "+r.mode),i="Unrecognized failoverMode : "+r.mode,!1):!0}return i="Fail over mode not set : ",!1}var i,s={};if(n(o)){var u=o.failoverMode;if(u.mode||u.priority)if(u.mode===M.FailoverMode.MANUAL)l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"setManualFailoverPrioirty",parameters:{priority:u.priority},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e():(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}});else if(u.mode){var c=u.mode;t("mode: "+u.mode),s[f.FAILOVER_MODE]=c,t("Set: "+JSON.stringify(s,null,3)),a("commercial",s,e,r),t("setFailoverMode Done")}else{var d={errorCode:"BAD_PARAMETER",errorText:"Mode should be set."};r(d)}else e()}else{var m={errorCode:"BAD_PARAMETER",errorText:i};r(m)}},M.prototype.getFailoverMode=function(e,r){try{l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"getFailoverPrioirty",parameters:{},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e({priority:o.priority,mode:o.mode}):(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(o){t("EXCEPTION!!!!!!!!!!!!!!!!!"+o),r({errorCode:"SGFO",errorText:"Signage.getFailoverMode occur error during operaation."})}},M.prototype.setTileInfo=function(e,r,o){var n,i=function(e){var r=typeof e.tileInfo.enabled;if(t("enabledType:"+r),"undefined"!==r&&"boolean"!==r)return n="enabled should be a boolean",!1;var o=function(e){var r=new RegExp(/^[0-9]+$/g).exec(e);return r?!1:!0};if(!e.tileInfo)return n="Tile info is mandatory",!1;var i=e.tileInfo.row;if("undefined"==typeof i)return!0;if(o(i))return n="row should be a natural number :"+i,!1;if(i>15||1>i)return n="row should be 0<n<16 but :"+i,!1;var a=e.tileInfo.column;if("undefined"==typeof a)return!0;if(o(a))return n="column should be a natural number :"+a,!1;if(a>15||1>a)return n="column should be 0<n<16 but :"+a,!1;var s=e.tileInfo.tileId;if("undefined"==typeof s)return!0;if(o(s))return n="id should be a natural number :"+s,!1;if(1>s)return n="id should be bigger than 0 but :"+s,!1;var u=S.row;i&&(u=i);var l=S.column;return a&&(l=a),t("curRow : "+u),t("curCol : "+l),t("id : "+s),s>l*u?(n="ID should be less than curRow*curCol",!1):!0};if(i(o)===!0){var s=o.tileInfo,u={};"boolean"==typeof s.enabled&&(s.enabled?u[f.TILE_MODE]="on":u[f.TILE_MODE]="off"),s.row&&(u[f.TILE_ROW]=s.row.toString()),s.column&&(u[f.TILE_COLUME]=s.column.toString()),s.tileId&&(u[f.TILE_ID]=s.tileId.toString()),"boolean"==typeof s.naturalMode&&(s.naturalMode?u[f.TILE_NATURALMODE]="on":u[f.TILE_NATURALMODE]="off"),t("Set: "+JSON.stringify(u,null,3));var l=function(){t("Do callback!!!!!!!!"),s.row&&(S.row=s.row),s.column&&(S.column=s.column),"function"==typeof e&&(t("Invoke successCallback"),e(),t("Invoked successCallback"))};a("commercial",u,l,r),t("setTileInfo Done")}else{var c={errorCode:"BAD_PARAM",errorText:n};r(c)}},M.prototype.getTileInfo=function(e,r){var o=function(e){var r={};return t("settings Value: "+JSON.stringify(e,null,3)),r.enabled=s(e[f.TILE_MODE]),r.row=parseInt(e[f.TILE_ROW],10),r.column=parseInt(e[f.TILE_COLUME],10),r.tileId=parseInt(e[f.TILE_ID],10),r.naturalMode=s(e[f.TILE_NATURALMODE]),t("Return Value: "+JSON.stringify(r,null,3)),r},n=[f.TILE_MODE,f.TILE_ROW,f.TILE_COLUME,f.TILE_ID,f.TILE_NATURALMODE];i("commercial",n,o,e,r)},M.prototype.getSignageInfo=function(e,r){l.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"getSignageInformation",parameters:{},onSuccess:function(r){"function"==typeof e&&(t(r.signageInfo),e(r.signageInfo))},onFailure:function(e){delete e.returnValue,"function"==typeof r&&r(e)}})},M.prototype.enableCheckScreen=function(e,r,o){var n,i=function(e){return"undefined"!=typeof e.checkScreen||null!==e.checkScreen?!0:(n="need options.checkScreen.",!1)};if(i(o)){var s={checkScreen:o.checkScreen===!0?"on":"off"};t("Set: "+JSON.stringify(s,null,3)),a("commercial",s,e,r),t("enableCheckScreen Done")}else{var u={errorCode:"BAD_PARAMETER",errorText:n};r(u)}},M.prototype.setIsmMethod=function(e,r,o){function n(e){if(e.ismMethod){for(var r in M.IsmMethod)if(e.ismMethod===M.IsmMethod[r])return!0;return i="Unrecognized ismMethod : "+e.ismMethod,!1}return i="ismMethod does not exist.",!1}var i,s={};if(n(o)){if(o.ismMethod){var u=o.ismMethod;t("ismMethod : "+u),s[f.ISM_METHOD]=u}t("Set: "+JSON.stringify(s,null,3)),a("commercial",s,e,r),t("setIsmMethod Done")}else{var l={errorCode:"BAD_PARAMETER",errorText:i};r(l)}},M.prototype.setDigitalAudioInputMode=function(e,r,o){function t(e){if(e.digitalAudioInputList){for(var r in e.digitalAudioInputList)if(r){var o=e.digitalAudioInputList[r],t=!1;for(var i in M.DigitalAudioInput)o===M.DigitalAudioInput[i]&&(t=!0);if(!t)return n="Invalid Audio Input : "+o,!1}return!0}return n="digitalAudioInputList does not exist.",!1}var n;if(t(o))l.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"setDigitalAudioInputList",parameters:{digitalAudioInputList:o.digitalAudioInputList},onSuccess:function(){"function"==typeof e&&e()},onFailure:function(e){delete e.returnValue,"function"==typeof r&&r(e)}});else{var i={errorCode:"BAD_PARAMETER",errorText:n};r(i)}};var T=!1;M.prototype.registerSystemMonitor=function(e,r,o){function n(e){if(T===!0)return i="Not ready to register monitor now.",s="SYSTEM_ERROR",!1;if(t("options are: "+JSON.stringify(e,null,3)),"function"!=typeof e.eventHandler)return i="No event handler was given or event hadnler is not a function",!1;if(e.monitorConfiguration){for(var r in e.monitorConfiguration)if(r){for(var o=!1,n=0;n<a.length;++n)r===a[n]&&(t("Found key: "+a[n]),o=!0);if(!o)return i="Invalid Monitoring source : "+r,!1;var u=e.monitorConfiguration[r];if(t("value: "+u),"boolean"!=typeof u)return i="Invalid value : "+u,!1}return!0}return i="monitorConfiguration does not exist.",!1}var i,a=["fan","signal","lamp","screen","temperature"],s="BAD_PARAMETER";if(t("Listeners are: "+JSON.stringify(E,null,3)),n(o)){var c=function(){t("Canceled all previous message subscriptions");var n=o.eventHandler;for(var i in o.monitorConfiguration)if(i){var a=o.monitorConfiguration[i];a===!0&&(t("Add listener for : "+i),d(i,n))}t("Monitoring Setup : "+JSON.stringify(E,null,3)),t("Start Polling : "),l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"systemMonitor/startMonitor",parameters:{},onSuccess:function(o){t("On Success"),o.returnValue===!0?"function"==typeof e&&e():"function"==typeof r&&r(o),T=!1},onFailure:function(e){t("On Failure"),delete e.returnValue,"function"==typeof r&&r(e),T=!1}})},f=function(e){r(e)};t("Cancel all previous message subscriptions"),T=!0,u(c,f)}else{var m={errorCode:s,errorText:i};r(m)}},M.prototype.unregisterSystemMonitor=function(e,r){u(e,r),t("After unregister, _gSystemMonitoringSetup are: "+JSON.stringify(E,null,3))},M.prototype.getSystemMonitoringInfo=function(e,r){if(E)e({fan:E.fan.getEvent,signal:E.signal.getEvent,lamp:E.lamp.getEvent,screen:E.screen.getEvent,temperature:E.temperature.getEvent});else{var o={errorCode:"ERROR",errorText:"Failed to get system monitoring setup"};r(o)}},M.prototype.setPowerSaveMode=function(e,r,o){function i(e){if(e.powerSaveMode){for(var r in e.powerSaveMode)if(r){var o=e.powerSaveMode[r];if("ses"===r||"do15MinOff"===r){if("boolean"!=typeof o)return a="Invalid value : "+o,!1}else if("automaticStandby"===r){if(!n(M.AutomaticStandbyMode,o))return a="Invalid automaticStandby value : "+o,!1}else{if("dpmMode"!==r)return a="Unknown value : "+r,!1;if(!n(M.DpmMode,o))return a="Invalid dpmMode value : "+o,!1}}return!0}return a="powerSaveMode does not exist.",!1}var a;if(i(o))t(o.powerSaveMode),l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"setPowerSaveMode",parameters:{mode:o.powerSaveMode},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e(o.mode):(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}});else{var s={errorCode:"BAD_PARAMETER",errorText:a};r(s)}},M.prototype.getPowerSaveMode=function(e,r){l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"getPowerSaveMode",parameters:{},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e(o.mode):(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})},M.prototype.setUsagePermission=function(e,r,o){function i(e){if(e.policy){for(var r in e.policy)if(r){var o=e.policy[r];if("remoteKeyOperationMode"!==r&&"localKeyOperationMode"!==r)return s="Unknown value : "+r,!1;if(!n(M.KeyOperationMode,o))return s="Invalid KeyOperationMode value : "+o,!1}return!0}return s="policy does not exist.",!1}var s,u={};if(i(o)){if(o.policy.localKeyOperationMode){var l=o.policy.localKeyOperationMode;t("portraitMode: "+l),u[f.LOCALKEY_OPERATION_MODE]=l}if(o.policy.remoteKeyOperationMode){var c=o.policy.remoteKeyOperationMode;t("portraitMode: "+c),u[f.IR_OPERATION_MODE]=c}t("Set: "+JSON.stringify(u,null,3)),a("hotelMode",u,e,r),t("setPolicy Done")}else{var d={errorCode:"BAD_PARAMETER",errorText:s};r(d)}},M.prototype.getUsagePermission=function(e,r){var o=function(e){t("settings: "+JSON.stringify(e,null,3));var r={};return r.remoteKeyOperationMode=e[f.IR_OPERATION_MODE],r.localKeyOperationMode=e[f.LOCALKEY_OPERATION_MODE],t("cbObj: "+JSON.stringify(r,null,3)),r},n=[f.IR_OPERATION_MODE,f.LOCALKEY_OPERATION_MODE];i("hotelMode",n,o,e,r)},M.prototype.getUsageData=function(e,r){function o(){return t("accessResult!!!!!!!!!!!!!!!!!!"),n===!0&&i===!0?(t("CB Object: "+JSON.stringify(a,null,3)),a.uptime===!1||a.totalUsed===!1?void r({errorCode:"CORDOVA_FAIL",errorText:"Failed to get usage data"}):(t("SUCCESS!!!!!!!!!!!!!!!!!!"),void e(a))):void t("Not Yet!!!!!!!!!!!!!!!!!!")}var n=!1,i=!1,a={uptime:!1,totalUsed:!1};l.Request("luna://com.webos.service.tv.signage/",{method:"getUTT",parameters:{},onSuccess:function(e){t("On getUTT Success"),n=!0,e.returnValue===!0&&(t("UTT is :"+e.UTT),a.totalUsed=e.UTT),o()},onFailure:function(e){t("On getUTT Failure :"+JSON.stringify(e,null,3)),n=!0,o()}}),l.Request("luna://com.webos.service.tv.signage/",{method:"dsmp/getElapsedTime",parameters:{},onSuccess:function(e){if(t("On getElapsedTime Success"),i=!0,t("result: "+JSON.stringify(e,null,3)),e.returnValue===!0){var r=e.elapsedTime;a.uptime=r,t("Elapsed!!: "+r)}o()},onFailure:function(e){t("On getSystemSettings Failure "+JSON.stringify(e,null,3)),i=!0,o()}})},M.prototype.captureScreen=function(e,r,o){var n={save:void 0===o||null===o||void 0===o.save?!1:o.save};void 0!==o&&null!==o&&void 0!==o.thumbnail&&o.thumbnail===!0&&(n.width=128,n.height=72),l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"captureScreen",parameters:n,onSuccess:function(o){t("On Success"),o.returnValue===!0?e({data:o.data,size:o.size,encoding:o.encoding}):r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){t("On Failure"),r({errorCode:e.errorCode,errorText:e.errorText})}})},M.prototype.setOsdPortraitMode=function(e,r,o){l.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"setOsdPortraitMode",parameters:o,onSuccess:function(o){t("On Success"),o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){t("On Failure"),r({errorCode:e.errorCode,errorText:e.errorText})}})},M.prototype.addEventListener=d,M.prototype.removeEventListener=c,o.exports=M}),Signage=cordova.require("cordova/plugin/signage");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/sound",function(e,t,n){function o(e){}function u(e,t,n){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=t),(void 0===e.errorText||null===e.errorText)&&(e.errorText=n)}var r;window.PalmSystem?(o("Window.PalmSystem Available"),r=e("cordova/plugin/webos/service")):r={Request:function(e,t){o(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof t.onFailure&&t.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var a=function(){};a.prototype.getSoundStatus=function(e,t){o("getSoundStatus: "),r.Request("luna://com.webos.audio/",{method:"getVolume",onSuccess:function(n){if(o("getSoundStatus: On Success"),n.returnValue===!0){var a={};a.level=n.volume,a.muted=n.muted,r.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"get",parameters:{category:"commercial",keys:["enableSpeaker"]},onSuccess:function(t){o("getSoundStatus: On Success 2"),t.returnValue===!0&&(a.externalSpeaker="on"===t.settings.enableSpeaker?!0:!1,"function"==typeof e&&e(a))},onFailure:function(e){o("getSoundStatus: On Failure 2"),delete e.returnValue,"function"==typeof t&&(u(e,"SGSS","Sound.getSoundStatus returns failure."),t(e))}})}},onFailure:function(e){o("getSoundStatus: On Failure"),delete e.returnValue,"function"==typeof t&&(u(e,"SGSS","Sound.getSoundStatus returns failure."),t(e))}}),o("Sound.getSoundStatus Done")},a.prototype.setVolumeLevel=function(e,t,n){if(o("setVolumeLevel: "+JSON.stringify(n)),"number"!=typeof n.level||isNaN(n.level)||n.level<0||n.level>100){if("function"==typeof t){var a={};u(a,"SSVL","Sound.setVolumeLevel returns failure. out of range or invalid parameter type."),t(a)}}else r.Request("luna://com.webos.audio/",{method:"setVolume",parameters:{volume:n.level},onSuccess:function(t){o("setVolumeLevel: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){o("setVolumeLevel: On Failure"),delete e.returnValue,"function"==typeof t&&(u(e,"SSVL","Sound.setVolumeLevel returns failure."),t(e))}}),o("Sound.setVolumeLevel Done")},a.prototype.setExternalSpeaker=function(e,t,n){if(o("setExternalSpeaker: "+JSON.stringify(n)),"boolean"==typeof n.externalSpeaker){var a=null;switch(n.externalSpeaker){case!0:a="on";break;case!1:a="off"}r.Request("luna://com.webos.service.commercial.signage.storageservice/settings/",{method:"set",parameters:{category:"commercial",settings:{enableSpeaker:a}},onSuccess:function(){o("setExternalSpeaker: On Success"),"function"==typeof e&&e()},onFailure:function(e){o("setExternalSpeaker: On Failure"),delete e.returnValue,"function"==typeof t&&(u(e,"SSES","Sound.setExternalSpeaker returns failure."),t(e))}}),o("Sound.setExternalSpeaker Done")}else if("function"==typeof t){var l={};u(l,"SSVL","Sound.setExternalSpeaker returns failure. out of range or invalid parameter type."),t(l)}},a.prototype.setMuted=function(e,t,n){if(o("setMuted: "+JSON.stringify(n)),"boolean"==typeof n.muted)r.Request("luna://com.webos.audio/",{method:"setMuted",parameters:{muted:n.muted},onSuccess:function(t){o("setMuted: On Success"),t.returnValue===!0&&"function"==typeof e&&e()},onFailure:function(e){o("setMuted: On Failure"),delete e.returnValue,"function"==typeof t&&(u(e,"SSM","Sound.setMuted returns failure."),t(e))}}),o("Sound.setMuted Done");else if("function"==typeof t){var a={};u(a,"SSVL","Sound.setMuted returns failure. out of range or invalid parameter type."),t(a)}},n.exports=a}),Sound=cordova.require("cordova/plugin/sound");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/storage",function(e,r,o){function t(e){}function n(e){return !0}var a;window.PalmSystem?(t("Window.PalmSystem Available"),a=e("cordova/plugin/webos/service")):a={Request:function(e,r){t(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof r.onFailure&&r.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var i=function(){};Error.ERROR_CODE={IO_ERROR:"IO_ERROR",DEVICE_ERROR:"DEVICE_ERROR",BAD_PARAMETER:"BAD_PARAMETER",SERVER_ERROR:"SERVER_ERROR",NETWORK_ERROR:"NETWORK_ERROR",SYSTEM_ERROR:"SYSTEM_ERROR"},i.SCAP_URI="",i.MAX_BUFFER_LENGTH=10240,i.AppMode={USB:"usb",LOCAL:"local"},i.prototype.downloadFirmware=function(e,r,o){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"downloadFirmware",parameters:{uri:o.uri},onSuccess:function(o){o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.upgradeFirmware=function(e,r){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"upgradeFirmware",parameters:{},onSuccess:function(o){o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.getFirmwareUpgradeStatus=function(e,r){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"getFirmwareUpgradeStatus",parameters:{},onSuccess:function(o){o.returnValue===!0?e({status:o.status,upgradeProgress:o.upgradeProgress,downloadProgress:o.downloadProgress}):r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.changeLogoImage=function(e,r,o){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"changeLogoImage",parameters:{uri:o.uri},onSuccess:function(o){o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.upgradeApplication=function(e,r,o){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"upgradeApplication",parameters:{from:"remote",type:void 0===o||null===o?"zip":o.type,to:void 0===o||null===o?i.AppMode.LOCAL:o.to,recovery:void 0===o||null===o?!1:o.recovery},onSuccess:function(o){o.returnValue===!0?setTimeout(function(){e()},3e3):r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.removeApplication=function(e,r,o){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"removeApplication",parameters:{to:o.to},onSuccess:function(o){o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.copyFile=function(e,r,o){if(t("Options: "+JSON.stringify(o,null,3)),o.maxRedirection&&o.maxRedirection>5)return t("Bad options TOO MANY REDIRECTION"),void r({errorCode:"BAD_PARAMETER",errorText:"Redirect cannot be more that 5"});if(o.headers&&JSON.stringify(o.headers).length>1024)return t("header too long header too long"),void r({errorCode:"BAD_PARAMETER",errorText:"Header data cannot be bigger than 1K"});if("undefined"==typeof o.httpOption&&(o.httpOption={}),o.httpOption.headers&&JSON.stringify(o.httpOption.headers).length>1024)return t("header too long header too long"),void r({errorCode:"BAD_PARAMETER",errorText:"Header data cannot be bigger than 1K"});if((o.maxRedirection||o.headers)&&(o.maxRedirection&&"undefined"==typeof o.httpOption.maxRedirection&&(o.httpOption.maxRedirection=o.maxRedirection),o.headers&&"undefined"==typeof o.httpOption.headers&&(o.httpOption.headers=o.headers)),"undefined"!=typeof o.httpOption.maxRedirection)if("undefined"!=typeof o.maxRedirection){if(o.httpOption.maxRedirection!==o.maxRedirection)return void r({errorCode:"BAD_PARAMETER",errorText:"Both options.httpOption.maxRedirection and options.maxRedirection are exists,but different value. What value you want to use?"})}else o.maxRedirection=o.httpOption.maxRedirection;t(o),a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/copyFile",parameters:{dest:o.destination,src:o.source,ftpOption:o.ftpOption,httpOption:o.httpOption},onSuccess:function(o){o.returnValue===!0?(t("SUCCESS"),e()):(t("Err: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("Err: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.removeFile=function(e,r,o){if(!o||!n(o.file))return void r({errorCode:"BAD_PARAMETER",errorText:"options.file is a mandatory parameter"});var i={file:o.file};o.recursive===!0&&(i.recursive=!0),a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/removeFile",parameters:i,onSuccess:function(o){t("onSuccess"),o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){t("onFailure"),r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.listFiles=function(e,r,o){var i={};if(o&&o.path){if(!n(o.path))return void r({errorCode:"BAD_PARAMETER",errorText:"File URI is not valid."});i.pathURI=o.path}else i.pathURI="file://internal/";a.Request("luna://com.webos.service.commercial.signage.storageservice/",{method:"fs/listFiles",parameters:i,onSuccess:function(o){if(o.returnValue===!0){for(var n=[],a=0;a<o.files.length;++a){t(o.files[a]);var i={name:o.files[a].name,type:"folder"===o.files[a].type?"folder":"file",size:o.files[a].size};n.push(i)}var s={files:n,totalCount:o.totalCount};e(s)}else r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.getStorageInfo=function(e,r){a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/storageInfo",parameters:{},onSuccess:function(o){if(t("returned : "+JSON.stringify(o,null,3)),o.returnValue===!0){t("returned : "+JSON.stringify(o,null,3));var n={free:o.spaceInfo.freeSize,total:o.spaceInfo.totalSize,used:o.spaceInfo.usedSize,externalMemory:o.externalStorage};e(n)}else r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.mkdir=function(e,r,o){if(!o||!n(o.path))return void r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"});var i={pathURI:o.path};a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/mkdir",parameters:i,onSuccess:function(o){t("onSuccess"),o.returnValue===!0?e():r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){t("onFailure"),r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.exists=function(e,r,o){if(!o||!n(o.path))return t("BAD_PARAMETER"),void r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"});var i={pathURI:o.path};a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/exists",parameters:i,onSuccess:function(o){if(t("onSuccess"),o.returnValue===!0){t("returned : "+JSON.stringify(o,null,3));var n={exists:o.exists};e(n)}else r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){t("onFailure"),r({errorCode:e.errorCode,errorText:e.errorText})}})},i.prototype.readFile=function(e,r,o){if(o)if(n(o.path))if(o.length&&(o.length>i.MAX_BUFFER_LENGTH||o.length<1))r({errorCode:"BAD_PARAMETER",errorText:"length should be > 0 and < "+i.MAX_BUFFER_LENGTH});else if(o.position&&o.position<0)r({errorCode:"BAD_PARAMETER",errorText:"position should be > 0"});else{var t={};t.path=o.path,t.length=o.length?o.length:i.MAX_BUFFER_LENGTH,t.position=o.position?o.position:0,t.encoding=o.encoding?o.encoding:"utf-8",a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/readFile",parameters:t,onSuccess:function(o){if(o.returnValue)if("binary"===t.encoding){for(var n=o.data,a=new Uint8Array(n.length),i=0;i<n.length;++i)a[i]=n[i];e({data:a.buffer})}else e({data:o.data});else r({errorCode:o.errorCode,errorText:o.errorText})},onFailure:function(e){r({errorCode:e.errorCode,errorText:e.errorText})}})}else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"})},i.prototype.writeFile=function(e,r,o){if(o)if(n(o.path))if(o.data)if(o.mode&&"truncate"!==o.mode&&"append"!==o.mode&&"position"!==o.mode)r({errorCode:"BAD_PARAMETER",errorText:"mode should be 'truncate'|'append'|'position'"});else if(o.position&&o.position<0)r({errorCode:"BAD_PARAMETER",errorText:"position should be > 0"});else if(o.offset&&o.offset<0)r({errorCode:"BAD_PARAMETER",errorText:"offset should be > 0"});else if(o.length&&(o.length>i.MAX_BUFFER_LENGTH||o.length<1))r({errorCode:"BAD_PARAMETER",errorText:"length should be > 0 and < "+i.MAX_BUFFER_LENGTH});else if(o.encoding&&"utf8"!==o.encoding&&"binary"!==o.encoding&&"base64"!==o.encoding)r({errorCode:"BAD_PARAMETER",errorText:"Invalid encoding: "+o.encoding});else{t("REQUEST!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");var s={};s.path=o.path,s.mode=o.mode?o.mode:"truncate",s.position=o.position?o.position:0,s.encoding=o.encoding?o.encoding:"utf8";var d=o.offset?o.offset:0;if("binary"===s.encoding){t("binary, size is: "+o.data.byteLength);var c=new Uint8Array(o.data);t("uint8View: "+c);for(var u=o.length?o.length:i.MAX_BUFFER_LENGTH,l=[],p=0,f=d;f<c.length&&u>p;++f,p++)l[p]=c[f];t("array length: "+p),s.data=l,s.length=p,s.offset=0}else if("base64"===s.encoding){var T=o.length?o.length:i.MAX_BUFFER_LENGTH;t("base64, size is: "+o.data.length);var m,g=o.data,R=window.atob(g),h=R.substring(d,d+T),x=new Uint8Array(h.length);for(m=0;m<h.length;m++)x[m]=h.charCodeAt(m);var A=[];for(m=0;m<x.length;++m)A[m]=x[m];s.data=A,s.length=A.length,s.offset=0}else{var E=o.length?o.length:i.MAX_BUFFER_LENGTH;s.data=o.data.substring(d,d+E),s.length=s.data.length,s.offset=0}try{a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/writeFile",parameters:s,onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e({written:o.written}):(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(C){t("EXCEPTION!!!!!!!!!!!!!!!!!"+C),r({errorCode:"STWF",errorText:"Storage.writeFile() error is occured during operation."})}}else r({errorCode:"BAD_PARAMETER",errorText:"options.data is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a is not valid"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"})},i.prototype.statFile=function(e,r,o){if(o&&n(o.path))if(o.path)try{a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/statFile",parameters:{path:o.path},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e(o.stat):(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(i){t("EXCEPTION!!!!!!!!!!!!!!!!!"+i),r({errorCode:"STSF",errorText:"Storage.statFile() error is occured during operation."})}else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"})},i.prototype.removeAll=function(e,r,o){if(o)if(o.device)try{a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/removeAll",parameters:{device:o.device},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e():(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(n){t("EXCEPTION!!!!!!!!!!!!!!!!!"+n),r({errorCode:"STRA",errorText:"Storage.removeAll() error is occured during operation."})}else r({errorCode:"BAD_PARAMETER",errorText:"options.device is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.device is a mandatory parameter"})},i.prototype.fsync=function(e,r,o){try{var i={};if(o&&o.path){if(!n(o.path))return void r({errorCode:"BAD_PARAMETER",errorText:"Invalid File URI"});i.path=o.path}a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/fsyncFile",parameters:i,onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e():(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(s){t("EXCEPTION!!!!!!!!!!!!!!!!!"+s),r({errorCode:"STFS",errorText:"Storage.fsync() error is occured during operation."})}},i.prototype.moveFile=function(e,r,o){if(o)if(n(o.oldPath))if(n(o.newPath))try{a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/moveFile",parameters:{oldPath:o.oldPath,newPath:o.newPath},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e():(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(i){t("EXCEPTION!!!!!!!!!!!!!!!!!"+i),r({errorCode:"STMF",errorText:"Storage.moveFile() error is occured during operation."})}else r({errorCode:"BAD_PARAMETER",errorText:"options.newPath is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.oldpath is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"})},i.prototype.unzipFile=function(e,r,o){if(o)if(n(o.zipPath))if(n(o.targetPath))try{a.Request("luna://com.webos.service.commercial.signage.storageservice",{method:"fs/unzip",parameters:{zipPath:o.zipPath,targetPath:o.targetPath},onSuccess:function(o){t("onSuccess!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),o.returnValue?e():(t("FAILED: "+o.errorText),r({errorCode:o.errorCode,errorText:o.errorText}))},onFailure:function(e){t("onFailure!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"),t("FAILED: "+e.errorText),r({errorCode:e.errorCode,errorText:e.errorText})}})}catch(i){t("EXCEPTION!!!!!!!!!!!!!!!!!"+i),r({errorCode:"STUF",errorText:"Storage.unzipFile() error is occured during operation."})}else r({errorCode:"BAD_PARAMETER",errorText:"options.targetPath is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.zipPath is a mandatory parameter"});else r({errorCode:"BAD_PARAMETER",errorText:"options.path is a mandatory parameter"})},o.exports=i}),Storage=cordova.require("cordova/plugin/storage");
@@ -0,0 +1 @@
1
+ cordova.define("cordova/plugin/video",function(e,t,o){function r(e){}function i(e,t,o){(void 0===e.errorCode||null===e.errorCode)&&(e.errorCode=t),(void 0===e.errorText||null===e.errorText)&&(e.errorText=o)}function n(e){-1===d.webOSVer?u.Request("luna://com.webos.service.tv.systemproperty",{method:"getSystemInfo",parameters:{keys:["sdkVersion","boardType"]},onSuccess:function(t){var o=t.sdkVersion.split(".");d=o.length>=1&&"1"===o[0]?{webOSVer:1,chipset:t.boardType.split("_")[0]}:o.length>=1&&"2"===o[0]?{webOSVer:2,chipset:t.boardType.split("_")[0]}:{webOSVer:0,chipset:""},e(d)},onFailure:function(t){d={webOSVer:0,chipset:""},e(d)}}):e(d)}var u;window.PalmSystem?(r("Window.PalmSystem Available"),u=e("cordova/plugin/webos/service")):u={Request:function(e,t){r(e+" invoked. But I am a dummy because PalmSystem is not available"),"function"==typeof t.onFailure&&t.onFailure({returnValue:!1,errorText:"PalmSystem Not Available. Cordova is not installed?"})}};var s=function(){},d={webOSVer:-1,chipset:"undefined"};s.prototype.getVideoStatus=function(e,t){r("getVideoStatus: "),u.Request("luna://com.webos.service.tv.signage/",{method:"getVideoSize",onSuccess:function(t){if(r("getVideoStatus: On Success"),t.returnValue===!0&&"function"==typeof e){var o={};o.source=t.videoSize.source,e(o)}},onFailure:function(e){r("getVideoStatus: On Failure"),delete e.returnValue,"function"==typeof t&&(i(e,"VGVS","Video.getVideoStatus returns failure."),t(e))}}),r("Video.getVideoStatus Done")},s.currentVideo={uri:null,source:null,tagId:null},s.prototype.setVideoSize=function(e,t,o){if(r("setVideoSize: "+JSON.stringify(o)),void 0===o.source||"number"!=typeof o.source.x||"number"!=typeof o.source.y||"number"!=typeof o.source.width||"number"!=typeof o.source.height||isNaN(o.source.x)||isNaN(o.source.y)||isNaN(o.source.width)||isNaN(o.source.height)||o.source.x<0||o.source.y<0||o.source.width<=0||o.source.height<=0){if("function"==typeof t){var n={};i(n,"VSVS","Video.setVideoSize returns failure. out of range or type error."),t(n)}}else u.Request("luna://com.webos.service.tv.signage/",{method:"getVideoSize",onSuccess:function(n){if(r("setVideoSize: On Success"),n.returnValue===!0){var d={};d.x=n.videoSize.destination.x,d.y=n.videoSize.destination.y,d.width=n.videoSize.destination.width,d.height=n.videoSize.destination.height;for(var c=document.getElementsByTagName("video"),a=!1,l=0;l<c.length;l++)if(c[l].currentTime>0){a=!0,(s.currentVideo.uri!==c[l].src||null!==c[l].id&&void 0!==c[l].id&&null!==s.currentVideo.tagId&&void 0!==s.currentVideo.tagId&&s.currentVideo.tagId!==c[l].id)&&(s.currentVideo.uri=c[l].src,s.currentVideo.source=n.videoSize.source,s.currentVideo.tagId=c[l].id);break}if(a===!1)u.Request("luna://com.webos.service.eim/",{method:"getCurrentInput",parameters:{},onSuccess:function(n){if(n.returnValue===!0&&s.currentVideo.uri!==n.mainInputSourceId||null!==c[0].id&&void 0!==c[0].id&&null!==s.currentVideo.tagId&&void 0!==s.currentVideo.tagId&&s.currentVideo.tagId!==c[0].id)s.currentVideo.uri=n.mainInputSourceId,s.currentVideo.tagId=null!==c[0]&&null!==c[0].id&&void 0!==c[0].id?c[0].id:null,u.Request("luna://com.webos.service.tv.signage/",{method:"getVideoSize",onSuccess:function(n){if(r("setVideoSize: On Success 1"),n.returnValue===!0){if(s.currentVideo.source=n.videoSize.source,0===n.videoSize.source.width&&0===n.videoSize.source.height){s.currentVideo={uri:null,source:null,tagId:null};var c={};return i(c,"VSVS","Video.setVideoSize returns failure. Not ready to setVideoSize."),void t(c)}if(null===s.currentVideo.uri||null===s.currentVideo.source||o.source.width+o.source.x>s.currentVideo.source.x+s.currentVideo.source.width||o.source.height+o.source.y>s.currentVideo.source.y+s.currentVideo.source.height){var a={};return i(a,"VSVS","Video.setVideoSize returns failure. out of range or type error.("+s.currentVideo.source.width+" : "+s.currentVideo.source.height+")"),void t(a)}u.Request("luna://com.webos.service.tv.signage/",{method:"setVideoSize",parameters:{videoSize:{source:{x:o.source.x,y:o.source.y,width:o.source.width,height:o.source.height},destination:{x:d.x,y:d.y,width:d.width,height:d.height}}},onSuccess:function(t){return r("setVideoSize: On Success 2"),t.returnValue===!0&&"function"==typeof e?void e():void 0},onFailure:function(e){return r("setVideoSize: On Failure 2"),delete e.returnValue,"function"==typeof t?(i(e,"VSVS","Video.setVideoSize returns failure. Can't current video source size."),void t(e)):void 0}})}}});else{if(null===s.currentVideo.uri||null===s.currentVideo.source||o.source.width+o.source.x>s.currentVideo.source.x+s.currentVideo.source.width||o.source.height+o.source.y>s.currentVideo.source.y+s.currentVideo.source.height){var a={};return i(a,"VSVS","Video.setVideoSize returns failure. out of range or type error.("+s.currentVideo.source.width+" : "+s.currentVideo.source.height+")"),void t(a)}u.Request("luna://com.webos.service.tv.signage/",{method:"setVideoSize",parameters:{videoSize:{source:{x:o.source.x,y:o.source.y,width:o.source.width,height:o.source.height},destination:{x:d.x,y:d.y,width:d.width,height:d.height}}},onSuccess:function(t){return r("setVideoSize: On Success 3"),t.returnValue===!0&&"function"==typeof e?void e():void 0},onFailure:function(e){return r("setVideoSize: On Failure 3"),delete e.returnValue,"function"==typeof t?(i(e,"VSVS","Video.setVideoSize returns failure. Can't current video source size."),void t(e)):void 0}})}},onFailure:function(e){return r("setVideoSize: On Failure 3"),delete e.returnValue,"function"==typeof t?(i(e,"VSVS","Video.setVideoSize returns failure. Can't set current video source size."),void t(e)):void 0}});else{if(null===s.currentVideo.uri||null===s.currentVideo.source||o.source.width+o.source.x>s.currentVideo.source.x+s.currentVideo.source.width||o.source.height+o.source.y>s.currentVideo.source.y+s.currentVideo.source.height){var V={};return i(V,"VSVS","Video.setVideoSize returns failure. out of range or type error.("+s.currentVideo.source.width+" : "+s.currentVideo.source.height+")"),void t(V)}u.Request("luna://com.webos.service.tv.signage/",{method:"setVideoSize",parameters:{videoSize:{source:{x:o.source.x,y:o.source.y,width:o.source.width,height:o.source.height},destination:{x:d.x,y:d.y,width:d.width,height:d.height}}},onSuccess:function(t){return r("setVideoSize: On Success 4"),t.returnValue===!0&&"function"==typeof e?void e():void 0},onFailure:function(e){return r("setVideoSize: On Failure 4"),delete e.returnValue,"function"==typeof t?(i(e,"VSVS","Video.setVideoSize returns failure. Can't current video source size."),void t(e)):void 0}})}}},onFailure:function(e){return r("setVideoSize: On Failure"),delete e.returnValue,"function"==typeof t?(i(e,"VSVS","Video.setVideoSize returns failure."),void t(e)):void 0}}),r("Video.setVideoSize Done")},s.prototype.setContentRotation=function(e,t,o){if(r("setContentRotation: "),"undefined"==typeof o||null===o||"off"!==o.degree&&"90"!==o.degree&&"270"!==o.degree||"full"!==o.aspectRatio&&"original"!=o.aspectRatio){var n={};i(n,"VSCR","Video.setContentRotation invlalid parameters.")}u.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"setContentRotation",parameters:o,onSuccess:function(t){return r("setContentRotation: On Success"),t.returnValue===!0&&"function"==typeof e?void e():void 0},onFailure:function(e){return r("setContentRotation: On Failure"),delete e.returnValue,"function"==typeof t?(i(e,"VSCR","Video.setContentRotation returns failure."),void t(e)):void 0}}),r("Video.setContentRotation: Done ")},s.prototype.getContentRotation=function(e,t){r("getContentRotation: "),u.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"getContentRotation",onSuccess:function(t){r("getContentRotation: On Success"),t.returnValue===!0&&"function"==typeof e&&(delete t.returnValue,e(t))},onFailure:function(e){r("getContentRotation: On Failure"),delete e.returnValue,"function"==typeof t&&(i(e,"VGCR","Video.getContentRotation returns failure."),t(e))}}),r("Video.getContentRotation Done")},s.prototype.setVideoViewTransform=function(e,t,o){("number"!=typeof o.x||"number"!=typeof o.y||"number"!=typeof o.width||"number"!=typeof o.height)&&t({errorCode:"VSVVT",errorText:"Invalid Parameter type."}),n(function(r){var i,n;2===r.webOSVer&&"H15"===r.chipset?(i=3840,n=2160):(i=1920,n=1080),u.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"getMediaID",onSuccess:function(r){if(r.returnValue===!0){var s=r.id;u.Request("luna://com.webos.service.tv.display/",{method:"setCustomDisplayWindow",parameters:{context:s,sourceInput:{positionX:0,positionY:0,width:i,height:n},displayOutput:{positionX:o.x,positionY:o.y,width:o.width,height:o.height}},onSuccess:function(o){o.returnValue===!0?"function"==typeof e&&e():(delete o.returnValue,"function"==typeof t&&t({errorCode:"VSVT",errorText:"Failed to set video transition"}))},onFailure:function(e){delete e.returnValue,"function"==typeof t&&t({errorCode:"VSVVT",errorText:"Failed to set video transition"})}})}},onFailure:function(e){delete e.returnValue,"function"==typeof t&&t({errorCode:"VSVVT",errorText:"Cannot found video area"})}})})},s.prototype.setRotatedVideoTransform=function(e,t,o){n(function(r){var i,n;2===r.webOSVer&&"H15"===r.chipset?(i=3840,n=2160):(i=1920,n=1080),("number"!=typeof o.x||"number"!=typeof o.y||"number"!=typeof o.width||"number"!=typeof o.height)&&t({errorCode:"VSRVT",errorText:"Invalid Parameter type."}),u.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"getContentRotation",onSuccess:function(s){var d,c,a,l;return"off"===s.degree?void t({errorCode:"VSRVT",errorText:"Content must be applied content rotation first."}):("90"===s.degree?(d=i-(o.y+o.height),c=o.x,a=o.height,l=o.width):"270"===s.degree&&(d=o.y,c=n-(o.x+o.width),a=o.height,l=o.width),void u.Request("luna://com.webos.service.commercial.signage.storageservice/video/",{method:"getMediaID",onSuccess:function(o){if(o.returnValue===!0){var i=o.id;2===r.webOSVer&&"H15"===r.chipset?u.Request("luna://com.webos.service.tv.display/",{method:"setDisplayWindow",parameters:{context:i,fullScreen:!1,displayOutput:{positionX:d,positionY:c,width:a,height:l}},onSuccess:function(o){o.returnValue===!0?"function"==typeof e&&e():(delete o.returnValue,"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Failed to set video transition"}))},onFailure:function(e){delete e.returnValue,"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Failed to set video transition: "+e.errorText})}}):u.Request("luna://com.webos.service.tv.display/",{method:"setRotateDisplayWindow",parameters:{context:i,fullScreen:!1,displayOutput:{positionX:d,positionY:c,width:a,height:l}},onSuccess:function(o){o.returnValue===!0?"function"==typeof e&&e():(delete o.returnValue,"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Failed to set video transition"}))},onFailure:function(e){delete e.returnValue,"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Failed to set video transition: "+e.errorText})}})}},onFailure:function(e){delete e.returnValue,"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Cannot found video area"})}}))},onFailure:function(e){"function"==typeof t&&t({errorCode:"VSRVT",errorText:"Cannot check content rotation."})}})})},o.exports=s}),Video=cordova.require("cordova/plugin/video");
@@ -0,0 +1,109 @@
1
+ #=============================================================================
2
+ # LG ELECTRONICS INC., SEOUL, KOREA
3
+ # Copyright(c) 2015 by LG Electronics Inc.
4
+ #=============================================================================
5
+ 2016.05.04
6
+ - Fix bugs
7
+ DeviceInfo.getPlatformInfo fix invalid sdkVersion return value
8
+ Storage APIs allow specific characters
9
+
10
+ 2016.04.15
11
+ - Release v1.3
12
+ Support IPK Type application
13
+ Configuration.getCurrentTime methods changed to to get and set the current time on webOS Signage
14
+ Configuration.setCurrentTime methods changed to to get and set the current time on webOS Signage
15
+ Configuration.getPictureProperty new value added to the gamma property, "high2", only for webOS Signage 2.0 and higher version
16
+ Configuration.setPictureProperty new value added to the gamma property, "high2", only for webOS Signage 2.0 and higher version
17
+ Configuration.getServerProperty new property added - appType - which is supported IPK application type
18
+ Configuration.setServerProperty new property added - appType - which is supported IPK application type
19
+ Power.enableAllOffTimer new parameter clearOffTimer, to delete all the power-off timers
20
+ Power.enableAllOnTimer new parameter clearOnTimer, to delete all the power-on timers
21
+ Signage.getSignageInfo now return checkScreen property
22
+ Storage.copyFile support FTP connection
23
+ Storage.listFiles support listing up unlimited number of files
24
+ Storage.upgradeApplication can upgrade IPK application using type parameter
25
+
26
+ 2016.01.05
27
+ - Addition 2 APIs in the final v1.3
28
+ Video.setRotatedVideoTransform
29
+ Video.setVideoViewTransform
30
+
31
+ 2015.09.30
32
+ - Initial version of v1.3
33
+ DeviceInfo.setNetworkInfo
34
+ DeviceInfo.getWifiList
35
+ DeviceInfo.connectWifi
36
+ DeviceInfo.startWps
37
+ DeviceInfo.stopWps
38
+ DeviceInfo.getBeaconInfo
39
+ DeviceInfo.setBeaconInfo
40
+ DeviceInfo.getSoftApInfo
41
+ DeviceInfo.setSoftApInfo
42
+ Configuration.clearCache
43
+ Configuration.setCurrentTime, options.ntp
44
+ Configuration.getCurrentTime, returns.ntp
45
+ Configuration.getTimeZoneList
46
+ Configuration.getTimeZone
47
+ Configuration.setTimeZone
48
+ Storage.copyFile, options.ftpOption for ftp, sftp server connection
49
+ Storage.copyFile, options.httpOption.headers for http request header modification
50
+ Storage.copyFile, options.httpOption.timeout for http request time out modification
51
+ Storage.copyFile, options.maxRedirection moves to options.httpOption.maxRedirection
52
+ Storage.copyFile, supports SDCard
53
+ Storage.listFiles, supports more than 100 list of files.
54
+ Storage.readFile, documentation update for a big chunk of data.
55
+ Power.enableAllOffTimer, options.clearOffTimer
56
+ Power.enableAllOnTimer, optons.clearOnTimer
57
+ Signage.enableCheckScreen
58
+ Signage.getSignageInfo, returns.checkScreen
59
+ Video.setContentRotation
60
+ Video.getContentRotation
61
+
62
+ 2015.02.04
63
+ - Release v1.2
64
+ support scap_installation.json for an easy setting of SCAP
65
+ DeviceInfo.getSystemUsageInfo options.cpus, options.memory
66
+ Signage.captureScreen, options.save for saving the image under content folder also
67
+ Storage.copyFile options.maxRedirection for 301,302,303, and 307 redirection response
68
+ Storage.removeAll
69
+ Storage.readFile
70
+ Storage.writeFile
71
+ Storage.statFile
72
+ Storage.fsync
73
+ Storage.moveFile
74
+ Storage.unzipFile
75
+ Storage.downloadFirmware
76
+ Storage.upgradeFirmware
77
+ Storage.getFirmwareUpgradeStatus
78
+ Storage.changeLogoImage
79
+
80
+ 2014.10.31
81
+ - Release v1.1
82
+ Signage.captureScreen, options.save for saving the image on local storage / options.thumbnail for small size image
83
+ Storage.removeApplication
84
+ Storage.upgradeApplication, options.to and options.recovery for usb application
85
+ Configuration.getServerProperty
86
+ Configuration.setServerProperty
87
+ InputSource.initialize, remove options.isLastChannel
88
+ Storage.copyFile, options.destination supports usb / read copied file by remote application using internal web server
89
+ Storage.mkdir
90
+ Storage.removeFile, options.recursive for removing directory
91
+ Storage.listFiles, list directory
92
+ Storage.exists
93
+ Storage.getStorageInfo, supports usb
94
+ handling network connection is late in the boot up process on remote application mode
95
+
96
+ 2014.06.11
97
+ - Official release v1.0
98
+
99
+ 2014.04.30
100
+ - Release candidate
101
+
102
+ 2014.3.28
103
+ - Beta release
104
+
105
+ 2014.1.22
106
+ - Alpha release
107
+ * Review purpose only
108
+
109
+