rhodes 6.2.0 → 7.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1659) hide show
  1. checksums.yaml +5 -5
  2. data/CONTRIBUTING.md +1 -1
  3. data/CREDITS +3 -1
  4. data/Gemfile +3 -0
  5. data/LICENSE +1 -1
  6. data/README.html +2 -2
  7. data/README.md +28 -23
  8. data/Rakefile +194 -101
  9. data/SECURITY.md +19 -0
  10. data/appveyor.yml +127 -47
  11. data/azure-pipelines.yml +67 -0
  12. data/bin/rhodes-setup +4 -4
  13. data/doc/application.txt +21 -0
  14. data/doc/oss/DeveloperNotes.md +1 -1
  15. data/doc/oss/WM_CE_Installation_And_Build_Guidelines.md +1 -1
  16. data/ext/extconf.rb +16 -3
  17. data/extensions/emdk3-manager/ext/platform/android/Rakefile +2 -0
  18. data/extensions/instrumentation/ext/platform/iphone/Instrumentation.xcodeproj/project.pbxproj +4 -4
  19. data/extensions/rhoconnect-push/ext/build.bat +1 -1
  20. data/extensions/rhoconnect-push/ext/rhoconnect-push/platform/android/Rakefile +18 -1
  21. data/extensions/rhoconnect-push/ext/rhoconnect-push/platform/android/src/com/rhomobile/rhoelements/ans/ANSManager.java +2 -2
  22. data/extensions/rhoelementsext/ext/rhoelementsext/platform/android/Rakefile +19 -1
  23. data/extensions/rhoelementsext/ext/rhoelementsext/platform/android/rhoelements_temp/src/com/rho/rhoelements/graphics/BatteryIndicator.java +14 -1
  24. data/lib/build/buildgem.rb +26 -0
  25. data/lib/build/jake.rb +7 -5
  26. data/lib/commonAPI/ConnectionChecking/ext/build.bat +1 -1
  27. data/lib/commonAPI/RubyServer/ext/RubyServer.xml +101 -0
  28. data/lib/commonAPI/RubyServer/ext/build +19 -0
  29. data/lib/commonAPI/RubyServer/ext/build.bat +29 -0
  30. data/lib/commonAPI/RubyServer/ext/platform/android/Rakefile +161 -0
  31. data/lib/commonAPI/RubyServer/ext/platform/android/ext_java.files +9 -0
  32. data/lib/commonAPI/RubyServer/ext/platform/android/ext_native.files +7 -0
  33. data/lib/commonAPI/RubyServer/ext/platform/iphone/Rakefile +20 -0
  34. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer.xcodeproj/project.pbxproj +322 -0
  35. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer_Prefix.pch +7 -0
  36. data/lib/commonAPI/RubyServer/ext/shared/RubyServerImpl.cpp +242 -0
  37. data/lib/commonAPI/RubyServer/ext.yml +21 -0
  38. data/lib/commonAPI/audiocapture/ext/build.bat +1 -1
  39. data/lib/commonAPI/audiocapture/ext/platform/android/src/com/rho/audiocapture/AudioCapture.java +4 -1
  40. data/lib/commonAPI/audiocapture/ext/platform/iphone/Audiocapture.xcodeproj/project.pbxproj +4 -4
  41. data/lib/commonAPI/audiocapture/ext/platform/iphone/Rakefile +9 -63
  42. data/lib/commonAPI/barcode/ext/barcode.xml +2 -6
  43. data/lib/commonAPI/barcode/ext/build +5 -0
  44. data/lib/commonAPI/barcode/ext/build.bat +1 -1
  45. data/lib/commonAPI/barcode/ext/platform/android/AndroidManifest.xml +16 -1
  46. data/lib/commonAPI/barcode/ext/platform/android/Rakefile +229 -0
  47. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_arrow_back.png +0 -0
  48. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_done.png +0 -0
  49. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_flash_off.png +0 -0
  50. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_flash_on.png +0 -0
  51. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable/barcode_replay.png +0 -0
  52. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/drawable-hdpi/icon.png +0 -0
  53. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/layout/barcode_capture.xml +98 -0
  54. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/barcode_strings.xml +12 -0
  55. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/barcode_styles.xml +8 -0
  56. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values/dimens.xml +5 -0
  57. data/lib/commonAPI/barcode/ext/platform/android/additional_files/res/values-w820dp/dimens.xml +6 -0
  58. data/lib/commonAPI/barcode/ext/platform/android/ext_java.files +11 -0
  59. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeCaptureActivity.java +667 -0
  60. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeFormats.java +64 -0
  61. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeGraphic.java +94 -0
  62. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeGraphicTracker.java +165 -0
  63. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/BarcodeTrackerFactory.java +47 -0
  64. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/CameraSource.java +1166 -0
  65. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/CameraSourcePreview.java +189 -0
  66. data/lib/commonAPI/barcode/ext/platform/android/src/com/google/barcodereader/ui/camera/GraphicOverlay.java +309 -0
  67. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeCommon.java +199 -0
  68. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactory.java +89 -52
  69. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactoryRhoListener.java +9 -1
  70. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeRhoExtension.java +77 -9
  71. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeSingleton.java +75 -23
  72. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/InternalAndroidBarcodeScanner.java +184 -0
  73. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/ZXingScanner.java +48 -180
  74. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/emdk3/EMDK3Scanner.java +8 -1
  75. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/emdk3/EMDK3ScannerSettings.java +4 -3
  76. data/lib/commonAPI/barcode/ext/platform/iphone/Barcode.xcodeproj/project.pbxproj +28 -56
  77. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.h +38 -10
  78. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.m +300 -22
  79. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewFactory.mm +6 -0
  80. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/barcode.m +6 -2
  81. data/lib/commonAPI/barcode/ext/platform/iphone/Rakefile +9 -64
  82. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC/client/result/ZXResultParser.m +1 -1
  83. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC/datamatrix/decoder/ZXDataMatrixDecodedBitStreamParser.m +4 -4
  84. data/lib/commonAPI/barcode/ext/platform/iphone/ZXingObjC/ZXingObjC.xcodeproj/project.pbxproj +6 -6
  85. data/lib/commonAPI/barcode/ext/platform/iphone/impl/Barcode.m +7 -3
  86. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeFactory.m +13 -0
  87. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeSingleton.m +25 -3
  88. data/lib/commonAPI/barcode/ext/platform/qt/Barcode.pro +41 -37
  89. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogBuilder.h +2 -0
  90. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.cpp +6 -3
  91. data/lib/commonAPI/barcode/ext/platform/qt/src/BarcodeDialogView.h +1 -1
  92. data/lib/commonAPI/barcode/ext/platform/qt/src/qzxing/zxing/zxing/ZXing.h +5 -5
  93. data/lib/commonAPI/barcode/ext.yml +6 -1
  94. data/lib/commonAPI/bluetooth/ext/build.bat +1 -1
  95. data/lib/commonAPI/bluetooth/ext/platform/android/Rakefile +29 -10
  96. data/lib/commonAPI/bluetooth/ext/platform/android/src/com/rhomobile/rhodes/bluetooth/RhoBluetoothManagerNew.java +2 -0
  97. data/lib/commonAPI/bluetooth/ext/platform/iphone/Bluetooth.xcodeproj/project.pbxproj +6 -16
  98. data/lib/commonAPI/bluetooth/ext/platform/iphone/Rakefile +9 -62
  99. data/lib/commonAPI/bluetooth/ext/platform/qt/Bluetooth.pro +8 -11
  100. data/lib/commonAPI/bluetooth/ext/platform/qt/src/bluetooth/bluetoothserver.h +1 -1
  101. data/lib/commonAPI/clipboard/ext/build.bat +1 -1
  102. data/lib/commonAPI/clipboard/ext/platform/android/Rakefile +29 -10
  103. data/lib/commonAPI/clipboard/ext/platform/iphone/Clipboard.xcodeproj/project.pbxproj +4 -4
  104. data/lib/commonAPI/clipboard/ext/platform/iphone/Rakefile +9 -62
  105. data/lib/commonAPI/coreapi/RhoNativeTabbarApi.rb +1 -1
  106. data/lib/commonAPI/coreapi/RhoNotificationApi.rb +1 -1
  107. data/lib/commonAPI/coreapi/ext/Application.xml +2 -1
  108. data/lib/commonAPI/coreapi/ext/Notification.xml +47 -0
  109. data/lib/commonAPI/coreapi/ext/Timer.xml +21 -13
  110. data/lib/commonAPI/coreapi/ext/build +5 -0
  111. data/lib/commonAPI/coreapi/ext/build.bat +1 -1
  112. data/lib/commonAPI/coreapi/ext/platform/android/Rakefile +19 -12
  113. data/lib/commonAPI/coreapi/ext/platform/android/ext_java.files +2 -0
  114. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/intent/IntentSingleton.java +21 -7
  115. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/AlarmReceiver.java +27 -0
  116. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/Notification.java +32 -12
  117. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationFactory.java +14 -1
  118. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationScheduler.java +260 -0
  119. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationSingleton.java +24 -2
  120. data/lib/commonAPI/coreapi/ext/platform/iphone/Coreapi.xcodeproj/project.pbxproj +27 -23
  121. data/lib/commonAPI/coreapi/ext/platform/iphone/cpp_based_impl/SystemImpl.mm +4 -2
  122. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/IntentSingleton.m +2 -2
  123. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.h +1 -0
  124. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.m +236 -3
  125. data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +17 -16
  126. data/lib/commonAPI/coreapi/ext/platform/qt/src/CNativeToolbarImpl.cpp +1 -1
  127. data/lib/commonAPI/coreapi/ext/platform/qt/src/CNotificationImpl.cpp +7 -0
  128. data/lib/commonAPI/coreapi/ext/platform/wm/src/NetworkDetect.h +2 -2
  129. data/lib/commonAPI/coreapi/ext/platform/wm/src/NotificationImpl.cpp +7 -0
  130. data/lib/commonAPI/coreapi/ext/platform/wm/src/SystemImpl.cpp +1 -3
  131. data/lib/commonAPI/coreapi/ext/push.xml +10 -5
  132. data/lib/commonAPI/coreapi/ext/shared/ApplicationImpl.cpp +7 -2
  133. data/lib/commonAPI/coreapi/ext/shared/InitExtension.cpp +8 -8
  134. data/lib/commonAPI/coreapi/ext/shared/NetworkDetectBase.cpp +1 -1
  135. data/lib/commonAPI/coreapi/ext/shared/SystemImplBase.cpp +2 -0
  136. data/lib/commonAPI/coreapi/ext/system.xml +3 -0
  137. data/lib/commonAPI/coreapi/public/api/rhoapi.js +18 -8
  138. data/lib/commonAPI/devicesecurity/ext/DeviceSecurity.xml +2 -2
  139. data/lib/commonAPI/devicesecurity/ext/build.bat +1 -1
  140. data/lib/commonAPI/devicesecurity/ext/platform/android/Rakefile +19 -0
  141. data/lib/commonAPI/devicesecurity/ext/platform/iphone/DeviceSecurity.xcodeproj/project.pbxproj +20 -4
  142. data/lib/commonAPI/devicesecurity/ext/platform/iphone/Rakefile +9 -62
  143. data/lib/commonAPI/eventsource/ext/platform/iphone/Eventsource.xcodeproj/project.pbxproj +4 -4
  144. data/lib/commonAPI/eventsource/ext/platform/iphone/Rakefile +9 -64
  145. data/lib/commonAPI/hardwarekeys/ext/keycapture.xml +11 -9
  146. data/lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureRhoListener.java +11 -1
  147. data/lib/commonAPI/hardwarekeys/ext/platform/android/src/com/rho/keycapture/KeyCaptureSingleton.java +14 -1
  148. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/HardwareKeys.xcodeproj/project.pbxproj +4 -4
  149. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/Rakefile +9 -62
  150. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.h +5 -3
  151. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.m +80 -67
  152. data/lib/commonAPI/indicators/ext/platform/iphone/Indicators.xcodeproj/project.pbxproj +4 -4
  153. data/lib/commonAPI/indicators/ext/platform/iphone/Rakefile +9 -62
  154. data/lib/commonAPI/javascriptvm/ext/platform/iphone/Javascriptvm.xcodeproj/project.pbxproj +4 -4
  155. data/lib/commonAPI/javascriptvm/ext/platform/iphone/Rakefile +9 -63
  156. data/lib/commonAPI/logCapture/ext/build.bat +1 -1
  157. data/lib/commonAPI/logCapture/ext/platform/iphone/LogCapture.xcodeproj/project.pbxproj +4 -4
  158. data/lib/commonAPI/logCapture/ext/platform/iphone/Rakefile +9 -62
  159. data/lib/commonAPI/mediacapture/ext/build +5 -0
  160. data/lib/commonAPI/mediacapture/ext/build.bat +1 -1
  161. data/lib/commonAPI/mediacapture/ext/camera.xml +4 -9
  162. data/lib/commonAPI/mediacapture/ext/platform/android/AndroidManifest_rhomobile.xml +1 -0
  163. data/lib/commonAPI/mediacapture/ext/platform/android/ApplicationFileProvider.erb +9 -0
  164. data/lib/commonAPI/mediacapture/ext/platform/android/adds/res/xml/image_fileprovider_paths.xml +4 -0
  165. data/lib/commonAPI/mediacapture/ext/platform/android/ext_java.files +1 -9
  166. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraExtension.java +0 -2
  167. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraFactory.java +19 -24
  168. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +334 -664
  169. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraRhoListener.java +273 -425
  170. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/{CameraSingletonObject.java → CameraSingleton.java} +68 -74
  171. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/videocapture/Videocapture.java +3 -1
  172. data/lib/commonAPI/mediacapture/ext/platform/iphone/Mediacapture.xcodeproj/project.pbxproj +4 -4
  173. data/lib/commonAPI/mediacapture/ext/platform/iphone/Rakefile +9 -62
  174. data/lib/commonAPI/mediacapture/ext/platform/qt/{MediaCapture.pro → Mediacapture.pro} +19 -33
  175. data/lib/commonAPI/mediacapture/ext/platform/qt/src/Camera_impl.cpp +1 -1
  176. data/lib/commonAPI/mediacapture/ext.yml +4 -1
  177. data/lib/commonAPI/mediaplayer/ext/platform/iphone/Mediaplayer.xcodeproj/project.pbxproj +4 -4
  178. data/lib/commonAPI/mediaplayer/ext/platform/iphone/Rakefile +9 -62
  179. data/lib/commonAPI/printing/ext/platform/iphone/Printing.xcodeproj/project.pbxproj +4 -4
  180. data/lib/commonAPI/printing/ext/platform/iphone/Rakefile +9 -62
  181. data/lib/commonAPI/printing_epson/ext/platform/iphone/PrintingEpson.xcodeproj/project.pbxproj +4 -4
  182. data/lib/commonAPI/printing_epson/ext/platform/iphone/Rakefile +9 -62
  183. data/lib/commonAPI/printing_zebra/ext/platform/android/Rakefile +18 -0
  184. data/lib/commonAPI/printing_zebra/ext/platform/android/src/com/rhomobile/printing/zebra/impl/ZebraPrintingProviderImpl.java +2 -1
  185. data/lib/commonAPI/printing_zebra/ext/platform/iphone/PrintingZebra.xcodeproj/project.pbxproj +4 -4
  186. data/lib/commonAPI/printing_zebra/ext/platform/iphone/Rakefile +9 -62
  187. data/lib/commonAPI/screenorientation/ext/platform/android/src/com/rho/screenorientation/ScreenOrientationRhoListener.java +2 -1
  188. data/lib/commonAPI/screenorientation/ext/platform/android/src/com/rho/screenorientation/ScreenOrientationSingleton.java +19 -6
  189. data/lib/commonAPI/screenorientation/ext/platform/iphone/Rakefile +9 -63
  190. data/lib/commonAPI/screenorientation/ext/platform/iphone/Screenorientation.xcodeproj/project.pbxproj +4 -4
  191. data/lib/commonAPI/sensor/ext/platform/android/src/com/rho/sensor/Sensor.java +4 -4
  192. data/lib/commonAPI/sensor/ext/platform/iphone/Rakefile +9 -62
  193. data/lib/commonAPI/sensor/ext/platform/iphone/Sensor.xcodeproj/project.pbxproj +4 -4
  194. data/lib/commonAPI/signature/ext/build.bat +8 -0
  195. data/lib/commonAPI/signature/ext/platform/iphone/Rakefile +9 -62
  196. data/lib/commonAPI/signature/ext/platform/iphone/signature.xcodeproj/project.pbxproj +4 -4
  197. data/lib/commonAPI/signature/ext/platform/qt/Signature.pro +26 -12
  198. data/lib/commonAPI/signature/ext.yml +0 -1
  199. data/lib/commonAPI/smartcradle/ext/build.bat +1 -1
  200. data/lib/commonAPI/websocket/ext/platform/iphone/Rakefile +9 -62
  201. data/lib/commonAPI/websocket/ext/platform/iphone/Websocket.xcodeproj/project.pbxproj +4 -4
  202. data/lib/extensions/Development/ext/build.bat +1 -1
  203. data/lib/extensions/Development/ext/platform/iphone/Development.xcodeproj/project.pbxproj +4 -4
  204. data/lib/extensions/Development/ext/platform/iphone/Rakefile +9 -62
  205. data/lib/extensions/applePush/ext/platform/iphone/ApplePush.xcodeproj/project.pbxproj +4 -4
  206. data/lib/extensions/applePush/ext/platform/iphone/Rakefile +9 -62
  207. data/lib/extensions/audiocapture/ext/audiocapture/platform/iphone/Audiocapture.xcodeproj/project.pbxproj +4 -4
  208. data/lib/extensions/audiocapture/ext/audiocapture/platform/iphone/Rakefile +9 -62
  209. data/lib/extensions/bigdecimal/ext/Rakefile +2 -2
  210. data/lib/extensions/bigdecimal/ext/bigdecimal.pro +9 -0
  211. data/lib/extensions/bigdecimal/ext/build +4 -0
  212. data/lib/extensions/bigdecimal/ext/build.bat +1 -1
  213. data/lib/extensions/bigdecimal/ext/iphone/Bigdecimal.xcodeproj/project.pbxproj +4 -4
  214. data/lib/extensions/bigdecimal/ext/iphone/Rakefile +9 -62
  215. data/lib/extensions/debugger/debugger.rb +331 -180
  216. data/lib/extensions/decrypt/ext/build.bat +1 -1
  217. data/lib/extensions/decrypt/ext/platform/android/Rakefile +19 -1
  218. data/lib/extensions/decrypt/ext/platform/iphone/Decrypt.xcodeproj/project.pbxproj +4 -4
  219. data/lib/extensions/decrypt/ext/platform/iphone/Rakefile +9 -62
  220. data/lib/extensions/decryptstub/ext/build.bat +1 -1
  221. data/lib/extensions/decryptstub/ext/platform/android/Rakefile +19 -0
  222. data/lib/extensions/decryptstub/ext/platform/iphone/Decryptstub.xcodeproj/project.pbxproj +10 -6
  223. data/lib/extensions/decryptstub/ext/platform/iphone/Rakefile +9 -62
  224. data/lib/extensions/digest/ext/Rakefile +2 -2
  225. data/lib/extensions/digest/ext/build +4 -0
  226. data/lib/extensions/digest/ext/build.bat +1 -1
  227. data/lib/extensions/digest/ext/digest.pro +9 -0
  228. data/lib/extensions/digest/ext/iphone/Digest.xcodeproj/project.pbxproj +4 -4
  229. data/lib/extensions/digest/ext/iphone/Rakefile +9 -62
  230. data/lib/extensions/digest-md5/ext/Rakefile +2 -2
  231. data/lib/extensions/digest-md5/ext/android/Rakefile +18 -0
  232. data/lib/extensions/digest-md5/ext/build +4 -0
  233. data/lib/extensions/digest-md5/ext/build.bat +1 -1
  234. data/lib/extensions/digest-md5/ext/digest-md5.pro +9 -0
  235. data/lib/extensions/digest-md5/ext/iphone/Dmd5.xcodeproj/project.pbxproj +4 -4
  236. data/lib/extensions/digest-md5/ext/iphone/Rakefile +9 -62
  237. data/lib/extensions/digest-sha1/ext/Rakefile +2 -2
  238. data/lib/extensions/digest-sha1/ext/android/Rakefile +18 -0
  239. data/lib/extensions/digest-sha1/ext/build +4 -0
  240. data/lib/extensions/digest-sha1/ext/build.bat +1 -1
  241. data/lib/extensions/digest-sha1/ext/digest-sha1.pro +9 -0
  242. data/lib/extensions/digest-sha1/ext/iphone/Dsha1.xcodeproj/project.pbxproj +4 -4
  243. data/lib/extensions/digest-sha1/ext/iphone/Rakefile +9 -62
  244. data/lib/extensions/digest-sha2/ext/Rakefile +2 -2
  245. data/lib/extensions/digest-sha2/ext/android/Rakefile +18 -0
  246. data/lib/extensions/digest-sha2/ext/build +4 -0
  247. data/lib/extensions/digest-sha2/ext/build.bat +1 -1
  248. data/lib/extensions/digest-sha2/ext/digest-sha2.pro +9 -0
  249. data/lib/extensions/digest-sha2/ext/iphone/Dsha2.xcodeproj/project.pbxproj +4 -4
  250. data/lib/extensions/digest-sha2/ext/iphone/Rakefile +9 -62
  251. data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.h +19 -19
  252. data/lib/extensions/esri/ext/esri/platform/iphone/ESRI.xcodeproj/project.pbxproj +4 -4
  253. data/lib/extensions/esri/ext/esri/platform/iphone/Rakefile +9 -65
  254. data/lib/extensions/fcm-push/ext/android/ApplicationManifestAdds.erb +15 -17
  255. data/lib/extensions/fcm-push/ext/android/Rakefile +77 -34
  256. data/lib/extensions/fcm-push/ext/android/ext_java.files +0 -1
  257. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMFacade.java +13 -17
  258. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMIntentService.java +90 -67
  259. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMListener.java +0 -16
  260. data/lib/extensions/fcm-push/ext/iphone/Podfile +11 -0
  261. data/lib/extensions/fcm-push/ext/iphone/Rakefile +13 -66
  262. data/lib/extensions/fcm-push/ext/iphone/fcm-push.xcodeproj/project.pbxproj +99 -48
  263. data/lib/extensions/fcm-push/ext/iphone/impl/PushNotificationsReceiver.h +3 -1
  264. data/lib/extensions/fcm-push/ext/iphone/impl/PushNotificationsReceiver.mm +11 -4
  265. data/lib/extensions/fcm-push/ext/iphone/resources.txt +1 -0
  266. data/lib/extensions/fcm-push/ext.yml +6 -2
  267. data/lib/extensions/fcntl/ext/Rakefile +2 -2
  268. data/lib/extensions/fcntl/ext/build +4 -0
  269. data/lib/extensions/fcntl/ext/build.bat +1 -1
  270. data/lib/extensions/fcntl/ext/fcntl.pro +9 -0
  271. data/lib/extensions/fcntl/ext/iphone/Fcntl.xcodeproj/project.pbxproj +4 -4
  272. data/lib/extensions/fcntl/ext/iphone/Rakefile +9 -62
  273. data/lib/extensions/gcm-push/ext/android/Rakefile +19 -0
  274. data/lib/extensions/gmaps/ext/platform/android/ApplicationManifestAdds.erb +1 -0
  275. data/lib/extensions/gmaps/ext/platform/android/src/com/rhomobile/rhodes/gmaps/GMapActivity.java +12 -4
  276. data/lib/extensions/gmaps/ext.yml +3 -1
  277. data/lib/extensions/keyboard/ext/Keyboard.xml +28 -0
  278. data/lib/extensions/keyboard/ext/build +19 -0
  279. data/lib/extensions/keyboard/ext/build.bat +29 -0
  280. data/lib/extensions/keyboard/ext/platform/android/Rakefile +141 -0
  281. data/lib/extensions/keyboard/ext/platform/android/ext_java.files +9 -0
  282. data/lib/extensions/keyboard/ext/platform/android/ext_native.files +7 -0
  283. data/lib/extensions/keyboard/ext/platform/android/jni/Keyboard_impl.cpp +61 -0
  284. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/Keyboard.java +32 -0
  285. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardFactory.java +18 -0
  286. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardSingleton.java +29 -0
  287. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard.xcodeproj/project.pbxproj +368 -0
  288. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard_Prefix.pch +7 -0
  289. data/lib/extensions/keyboard/ext/platform/iphone/Rakefile +20 -0
  290. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.h +14 -0
  291. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.m +24 -0
  292. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardFactorySingleton.m +16 -0
  293. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSetup.m +9 -0
  294. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.h +17 -0
  295. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.m +23 -0
  296. data/lib/extensions/keyboard/ext/platform/iphone/impl/readme.txt +7 -0
  297. data/lib/extensions/keyboard/ext/platform/qt/Keyboard.pro +68 -0
  298. data/lib/extensions/keyboard/ext/platform/qt/Makefile +473 -0
  299. data/lib/extensions/keyboard/ext/platform/qt/Makefile.Release +408 -0
  300. data/lib/extensions/keyboard/ext/platform/qt/Rakefile +39 -0
  301. data/lib/extensions/keyboard/ext/platform/qt/src/Keyboard_impl.cpp +99 -0
  302. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.props +18 -0
  303. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj +197 -0
  304. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj.filters +50 -0
  305. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.csproj +119 -0
  306. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.props +8 -0
  307. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.targets +7 -0
  308. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.props +18 -0
  309. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj +197 -0
  310. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj.filters +58 -0
  311. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cpp +76 -0
  312. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cs +69 -0
  313. data/lib/extensions/keyboard/ext/platform/uwp/src/Properties/AssemblyInfo.cs +37 -0
  314. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.sln +52 -0
  315. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vcproj +714 -0
  316. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vsprops +15 -0
  317. data/lib/extensions/keyboard/ext/platform/wm/src/Keyboard_impl.cpp +77 -0
  318. data/lib/extensions/keyboard/ext.yml +15 -0
  319. data/lib/extensions/openssl/ext/Rakefile +2 -2
  320. data/lib/extensions/openssl/ext/android/Rakefile +18 -0
  321. data/lib/extensions/openssl/ext/build +4 -0
  322. data/lib/extensions/openssl/ext/build.bat +1 -1
  323. data/lib/extensions/openssl/ext/iphone/Rakefile +9 -62
  324. data/lib/extensions/openssl/ext/iphone/openssl.xcodeproj/project.pbxproj +4 -4
  325. data/lib/extensions/openssl/ext/linux/extconf.h +65 -0
  326. data/lib/extensions/openssl/ext/openssl.pro +10 -0
  327. data/lib/extensions/openssl/ext/openssl_missing.c +4 -2
  328. data/lib/extensions/openssl/ext/ossl.h +3 -0
  329. data/lib/extensions/openssl/ext/ossl_x509cert.c +1 -1
  330. data/lib/extensions/openssl.so/ext/Rakefile +1 -1
  331. data/lib/extensions/openssl.so/ext/android/aarch64/libopenssl.so.a +0 -0
  332. data/lib/extensions/openssl.so/ext/android/armeabi/libopenssl.so.a +0 -0
  333. data/lib/extensions/openssl.so/ext/android/x86/libopenssl.so.a +0 -0
  334. data/lib/extensions/openssl.so/ext/build +4 -0
  335. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/howtobuild.txt +2 -0
  336. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libcrypto.a +0 -0
  337. data/lib/extensions/{fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/FirebaseAnalytics → openssl.so/ext/iphone/OpenSSl.SDK/libcrypto_sim.a} +0 -0
  338. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl.a +0 -0
  339. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl_sim.a +0 -0
  340. data/lib/extensions/openssl.so/ext/iphone/Rakefile +30 -54
  341. data/lib/extensions/openssl.so/ext/iphone/Release-iphoneos/libopenssl.so.a +0 -0
  342. data/lib/extensions/openssl.so/ext/iphone/Release-iphonesimulator/libopenssl.so.a +0 -0
  343. data/lib/extensions/openssl.so/ext/iphone/openssl.xcodeproj/project.pbxproj +116 -10
  344. data/lib/extensions/openssl.so/ext/sources/include/openssl/__DECC_INCLUDE_EPILOGUE.H +9 -3
  345. data/lib/extensions/openssl.so/ext/sources/include/openssl/__DECC_INCLUDE_PROLOGUE.H +10 -4
  346. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1.h +13 -226
  347. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1err.h +256 -0
  348. data/lib/extensions/openssl.so/ext/sources/include/openssl/asn1t.h +24 -8
  349. data/lib/extensions/openssl.so/ext/sources/include/openssl/async.h +2 -24
  350. data/lib/extensions/openssl.so/ext/sources/include/openssl/asyncerr.h +42 -0
  351. data/lib/extensions/openssl.so/ext/sources/include/openssl/bio.h +89 -139
  352. data/lib/extensions/openssl.so/ext/sources/include/openssl/bioerr.h +124 -0
  353. data/lib/extensions/openssl.so/ext/sources/include/openssl/bn.h +75 -111
  354. data/lib/extensions/openssl.so/ext/sources/include/openssl/bnerr.h +100 -0
  355. data/lib/extensions/openssl.so/ext/sources/include/openssl/buffer.h +2 -17
  356. data/lib/extensions/openssl.so/ext/sources/include/openssl/buffererr.h +34 -0
  357. data/lib/extensions/openssl.so/ext/sources/include/openssl/cms.h +6 -179
  358. data/lib/extensions/openssl.so/ext/sources/include/openssl/cmserr.h +202 -0
  359. data/lib/extensions/openssl.so/ext/sources/include/openssl/comp.h +2 -21
  360. data/lib/extensions/openssl.so/ext/sources/include/openssl/comperr.h +44 -0
  361. data/lib/extensions/openssl.so/ext/sources/include/openssl/conf.h +2 -51
  362. data/lib/extensions/openssl.so/ext/sources/include/openssl/conferr.h +76 -0
  363. data/lib/extensions/openssl.so/ext/sources/include/openssl/crypto.h +27 -49
  364. data/lib/extensions/openssl.so/ext/sources/include/openssl/cryptoerr.h +57 -0
  365. data/lib/extensions/openssl.so/ext/sources/include/openssl/ct.h +2 -61
  366. data/lib/extensions/openssl.so/ext/sources/include/openssl/cterr.h +80 -0
  367. data/lib/extensions/openssl.so/ext/sources/include/openssl/dh.h +33 -54
  368. data/lib/extensions/openssl.so/ext/sources/include/openssl/dherr.h +88 -0
  369. data/lib/extensions/openssl.so/ext/sources/include/openssl/dsa.h +21 -60
  370. data/lib/extensions/openssl.so/ext/sources/include/openssl/dsaerr.h +72 -0
  371. data/lib/extensions/openssl.so/ext/sources/include/openssl/dtls1.h +7 -8
  372. data/lib/extensions/openssl.so/ext/sources/include/openssl/e_os2.h +21 -19
  373. data/lib/extensions/openssl.so/ext/sources/include/openssl/ec.h +187 -284
  374. data/lib/extensions/openssl.so/ext/sources/include/openssl/ecerr.h +275 -0
  375. data/lib/extensions/openssl.so/ext/sources/include/openssl/engine.h +5 -94
  376. data/lib/extensions/openssl.so/ext/sources/include/openssl/engineerr.h +111 -0
  377. data/lib/extensions/openssl.so/ext/sources/include/openssl/err.h +19 -5
  378. data/lib/extensions/openssl.so/ext/sources/include/openssl/evp.h +250 -180
  379. data/lib/extensions/openssl.so/ext/sources/include/openssl/evperr.h +205 -0
  380. data/lib/extensions/openssl.so/ext/sources/include/openssl/hmac.h +4 -2
  381. data/lib/extensions/openssl.so/ext/sources/include/openssl/kdf.h +51 -29
  382. data/lib/extensions/openssl.so/ext/sources/include/openssl/kdferr.h +55 -0
  383. data/lib/extensions/openssl.so/ext/sources/include/openssl/lhash.h +43 -19
  384. data/lib/extensions/openssl.so/ext/sources/include/openssl/modes.h +11 -6
  385. data/lib/extensions/openssl.so/ext/sources/include/openssl/obj_mac.h +632 -11
  386. data/lib/extensions/openssl.so/ext/sources/include/openssl/objects.h +3 -925
  387. data/lib/extensions/openssl.so/ext/sources/include/openssl/objectserr.h +42 -0
  388. data/lib/extensions/openssl.so/ext/sources/include/openssl/ocsp.h +21 -65
  389. data/lib/extensions/openssl.so/ext/sources/include/openssl/ocsperr.h +78 -0
  390. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslconf.h +36 -10
  391. data/lib/extensions/openssl.so/ext/sources/include/openssl/opensslv.h +3 -7
  392. data/lib/extensions/openssl.so/ext/sources/include/openssl/ossl_typ.h +8 -1
  393. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem.h +13 -136
  394. data/lib/extensions/openssl.so/ext/sources/include/openssl/pem2.h +4 -11
  395. data/lib/extensions/openssl.so/ext/sources/include/openssl/pemerr.h +103 -0
  396. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs12.h +1 -60
  397. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs12err.h +81 -0
  398. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs7.h +1 -86
  399. data/lib/extensions/openssl.so/ext/sources/include/openssl/pkcs7err.h +103 -0
  400. data/lib/extensions/openssl.so/ext/sources/include/openssl/rand.h +22 -34
  401. data/lib/extensions/openssl.so/ext/sources/include/openssl/rand_drbg.h +130 -0
  402. data/lib/extensions/openssl.so/ext/sources/include/openssl/randerr.h +94 -0
  403. data/lib/extensions/openssl.so/ext/sources/include/openssl/rsa.h +96 -173
  404. data/lib/extensions/openssl.so/ext/sources/include/openssl/rsaerr.h +167 -0
  405. data/lib/extensions/openssl.so/ext/sources/include/openssl/safestack.h +66 -23
  406. data/lib/extensions/openssl.so/ext/sources/include/openssl/srp.h +5 -1
  407. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl.h +706 -828
  408. data/lib/extensions/openssl.so/ext/sources/include/openssl/ssl3.h +49 -20
  409. data/lib/extensions/openssl.so/ext/sources/include/openssl/sslerr.h +773 -0
  410. data/lib/extensions/openssl.so/ext/sources/include/openssl/stack.h +8 -3
  411. data/lib/extensions/openssl.so/ext/sources/include/openssl/store.h +266 -1
  412. data/lib/extensions/openssl.so/ext/sources/include/openssl/storeerr.h +91 -0
  413. data/lib/extensions/openssl.so/ext/sources/include/openssl/symhacks.h +1 -16
  414. data/lib/extensions/openssl.so/ext/sources/include/openssl/tls1.h +350 -85
  415. data/lib/extensions/openssl.so/ext/sources/include/openssl/ts.h +25 -109
  416. data/lib/extensions/openssl.so/ext/sources/include/openssl/tserr.h +132 -0
  417. data/lib/extensions/openssl.so/ext/sources/include/openssl/txt_db.h +2 -2
  418. data/lib/extensions/openssl.so/ext/sources/include/openssl/ui.h +56 -66
  419. data/lib/extensions/openssl.so/ext/sources/include/openssl/uierr.h +65 -0
  420. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509.h +36 -112
  421. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509_vfy.h +85 -1
  422. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509err.h +130 -0
  423. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509v3.h +72 -141
  424. data/lib/extensions/openssl.so/ext/sources/include/openssl/x509v3err.h +162 -0
  425. data/lib/extensions/openssl.so.src/ext/android/Rakefile +18 -0
  426. data/lib/extensions/openssl.so.src/ext/build +4 -0
  427. data/lib/extensions/rawsensors/ext/rawsensors/platform/iphone/Rakefile +9 -62
  428. data/lib/extensions/rawsensors/ext/rawsensors/platform/iphone/Rawsensors.xcodeproj/project.pbxproj +4 -4
  429. data/lib/extensions/serialport/ext/build.bat +1 -1
  430. data/lib/extensions/serialport/ext/serialport.pro +11 -11
  431. data/lib/extensions/videocapture/ext/videocapture/platform/iphone/Rakefile +9 -62
  432. data/lib/extensions/videocapture/ext/videocapture/platform/iphone/Videocapture.xcodeproj/project.pbxproj +4 -4
  433. data/lib/extensions/zlib/ext/Rakefile +2 -2
  434. data/lib/extensions/zlib/ext/build +4 -0
  435. data/lib/extensions/zlib/ext/build.bat +1 -1
  436. data/lib/extensions/zlib/ext/gzlib.c +1 -1
  437. data/lib/extensions/zlib/ext/gzread.c +2 -2
  438. data/lib/extensions/zlib/ext/gzwrite.c +3 -3
  439. data/lib/extensions/zlib/ext/iphone/Rakefile +9 -62
  440. data/lib/extensions/zlib/ext/iphone/zlib.xcodeproj/project.pbxproj +4 -4
  441. data/lib/extensions/zlib/ext/zlib.c +5 -1
  442. data/lib/extensions/zlib/ext/zlib.pro +24 -16
  443. data/lib/framework/autocomplete/Rho.rb +6 -2
  444. data/lib/framework/autocomplete/Rhodes.rb +1 -1
  445. data/lib/framework/rho/rho.rb +9 -0
  446. data/lib/framework/rho/rhoapplication.rb +4 -0
  447. data/lib/framework/rhodes.rb +2 -2
  448. data/lib/framework/set.rb +799 -0
  449. data/lib/framework/version.rb +1 -1
  450. data/lib/rhodes.rb +2 -2
  451. data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +7 -3
  452. data/platform/android/Rhodes/jni/include/rhodes/SecurityTokenGenerator.h +30 -0
  453. data/platform/android/Rhodes/jni/include/rhodes/details/rhojava.inc +1 -0
  454. data/platform/android/Rhodes/jni/include/rhodes/sslimpl.h +94 -6
  455. data/platform/android/Rhodes/jni/include/rhodes.h +6 -0
  456. data/platform/android/Rhodes/jni/src/JNIRhoRuby.cpp +1 -1
  457. data/platform/android/Rhodes/jni/src/JNIRhoRubyCppWrapper.cpp +510 -0
  458. data/platform/android/Rhodes/jni/src/MethodResultJni.cpp +4 -0
  459. data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +36 -1
  460. data/platform/android/Rhodes/jni/src/SecurityTokenGenerator.cpp +60 -0
  461. data/platform/android/Rhodes/jni/src/fileapi.cpp +319 -12
  462. data/platform/android/Rhodes/jni/src/mapview.cpp +4 -0
  463. data/platform/android/Rhodes/jni/src/rhodes.cpp +1 -0
  464. data/platform/android/Rhodes/jni/src/rhodesapp.cpp +18 -0
  465. data/platform/android/Rhodes/jni/src/sslimpl.cpp +317 -3
  466. data/platform/android/Rhodes/res/drawable/ic_notification.png +0 -0
  467. data/platform/android/Rhodes/res/xml/network_security_config.xml +7 -0
  468. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +24 -1
  469. data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +18 -1
  470. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMain.java +8 -0
  471. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyArrayObjects.java +33 -0
  472. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyClassObject.java +20 -0
  473. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyObject.java +115 -0
  474. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubySingleton.java +85 -0
  475. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyTypes.java +15 -0
  476. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesActivity.java +3 -3
  477. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +264 -176
  478. data/platform/android/Rhodes/src/com/rhomobile/rhodes/SecurityTokenGenerator.java +57 -0
  479. data/platform/android/Rhodes/src/com/rhomobile/rhodes/alert/StatusNotification.java +1 -1
  480. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManagerImpl.java +1 -1
  481. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocation.java +14 -14
  482. data/platform/android/Rhodes/src/com/rhomobile/rhodes/geolocation/GeoLocationImpl.java +25 -10
  483. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +9 -2
  484. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +10 -1
  485. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +20 -0
  486. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality11.java +22 -1
  487. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality26.java +153 -0
  488. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +4 -1
  489. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/RhoSocketImpl.java +10 -2
  490. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +292 -20
  491. data/platform/android/Rhodes/src/com/rhomobile/rhodes/uri/LocalFileHandler.java +21 -18
  492. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +20 -1
  493. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +57 -1
  494. data/platform/android/build/CMakeLists.txt.erb +3 -33
  495. data/platform/android/build/CMakeListsExts.txt.erb +26 -0
  496. data/platform/android/build/Rakefile +30 -1
  497. data/platform/android/build/RhodesSRC_build.files +8 -0
  498. data/platform/android/build/aapt2_helper.rb +291 -0
  499. data/platform/android/build/android.rake +836 -468
  500. data/platform/android/build/android_studio_project_generator.rb +82 -0
  501. data/platform/android/build/android_tools.rb +147 -29
  502. data/platform/android/build/androidcommon.rb +115 -70
  503. data/platform/android/build/apk_builder.rb +42 -0
  504. data/platform/android/build/build_tools_finder.rb +46 -0
  505. data/platform/android/build/config.yml +5 -0
  506. data/platform/android/build/dex_builder.rb +88 -0
  507. data/platform/android/build/hostplatform.rb +9 -0
  508. data/platform/android/build/libcurl_build.files +1 -1
  509. data/platform/android/build/librhocommon_build.files +11 -0
  510. data/platform/android/build/librhodes_build.files +2 -0
  511. data/platform/android/build/manifest_generator.rb +10 -2
  512. data/platform/android/build/maven_deps_extractor.rb +143 -27
  513. data/platform/android/build/ndkwrapper.rb +157 -35
  514. data/platform/android/build/pom.erb +2 -2
  515. data/platform/android/proguard/proguard-base-rules.pro +27 -4
  516. data/platform/iphone/Classes/AppManager/AppManager.m +205 -158
  517. data/platform/iphone/Classes/Camera/PickImageDelegate.h +2 -0
  518. data/platform/iphone/Classes/Camera/PickImageDelegate.m +108 -23
  519. data/platform/iphone/Classes/CocoaServer/CCocoaServer.h +27 -0
  520. data/platform/iphone/Classes/CocoaServer/CCocoaServer.m +107 -0
  521. data/platform/iphone/Classes/CocoaServer/RhoHTTPConnection.h +16 -0
  522. data/platform/iphone/Classes/CocoaServer/RhoHTTPConnection.m +226 -0
  523. data/platform/iphone/Classes/MapView/GoogleGeocoder.h +3 -3
  524. data/platform/iphone/Classes/RhoAlert.m +2 -2
  525. data/platform/iphone/Classes/RhoMainViewStubImpl.h +38 -0
  526. data/platform/iphone/Classes/RhoMainViewStubImpl.m +88 -0
  527. data/platform/iphone/Classes/RhoUIWebView.h +6 -1
  528. data/platform/iphone/Classes/RhoUIWebView.m +15 -7
  529. data/platform/iphone/Classes/RhoWKWebView.h +6 -3
  530. data/platform/iphone/Classes/RhoWKWebView.mm +406 -0
  531. data/platform/iphone/Classes/RhoWebView.h +7 -7
  532. data/platform/iphone/Classes/RhoWebViewFabrique.h +1 -1
  533. data/platform/iphone/Classes/RhoWebViewFabrique.m +33 -16
  534. data/platform/iphone/Classes/Rhodes.h +7 -2
  535. data/platform/iphone/Classes/Rhodes.m +108 -19
  536. data/platform/iphone/Classes/SimpleMainView.m +24 -15
  537. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.h +32 -3
  538. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +96 -64
  539. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.h +22 -0
  540. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.m +246 -0
  541. data/platform/iphone/Classes/WebView.m +14 -2
  542. data/platform/iphone/Classes/rho/net/IPhoneNetRequest.mm +1 -1
  543. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDData.h +14 -0
  544. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDData.m +158 -0
  545. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDNumber.h +12 -0
  546. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDNumber.m +88 -0
  547. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDRange.h +56 -0
  548. data/platform/iphone/CocoaHTTPServer/Core/Categories/DDRange.m +104 -0
  549. data/platform/iphone/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h +45 -0
  550. data/platform/iphone/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m +195 -0
  551. data/platform/iphone/CocoaHTTPServer/Core/HTTPConnection.h +120 -0
  552. data/platform/iphone/CocoaHTTPServer/Core/HTTPConnection.m +2708 -0
  553. data/platform/iphone/CocoaHTTPServer/Core/HTTPLogging.h +136 -0
  554. data/platform/iphone/CocoaHTTPServer/Core/HTTPMessage.h +48 -0
  555. data/platform/iphone/CocoaHTTPServer/Core/HTTPMessage.m +113 -0
  556. data/platform/iphone/CocoaHTTPServer/Core/HTTPResponse.h +149 -0
  557. data/platform/iphone/CocoaHTTPServer/Core/HTTPServer.h +205 -0
  558. data/platform/iphone/CocoaHTTPServer/Core/HTTPServer.m +772 -0
  559. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.h +65 -0
  560. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartFormDataParser.m +529 -0
  561. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.h +33 -0
  562. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartMessageHeader.m +86 -0
  563. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.h +23 -0
  564. data/platform/iphone/CocoaHTTPServer/Core/Mime/MultipartMessageHeaderField.m +211 -0
  565. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.h +75 -0
  566. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPAsyncFileResponse.m +405 -0
  567. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPDataResponse.h +13 -0
  568. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPDataResponse.m +79 -0
  569. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.h +52 -0
  570. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPDynamicFileResponse.m +292 -0
  571. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPErrorResponse.h +9 -0
  572. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPErrorResponse.m +38 -0
  573. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPFileResponse.h +25 -0
  574. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPFileResponse.m +237 -0
  575. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.h +12 -0
  576. data/platform/iphone/CocoaHTTPServer/Core/Responses/HTTPRedirectResponse.m +73 -0
  577. data/platform/iphone/CocoaHTTPServer/Core/WebSocket.h +105 -0
  578. data/platform/iphone/CocoaHTTPServer/Core/WebSocket.m +791 -0
  579. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.h +7 -0
  580. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DAVConnection.m +160 -0
  581. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.h +11 -0
  582. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DAVResponse.m +372 -0
  583. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.h +7 -0
  584. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/DELETEResponse.m +49 -0
  585. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.h +8 -0
  586. data/platform/iphone/CocoaHTTPServer/Extensions/WebDAV/PUTResponse.m +69 -0
  587. data/platform/iphone/CocoaHTTPServer/LICENSE.txt +18 -0
  588. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaAsyncSocket/About.txt +4 -0
  589. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaAsyncSocket/GCDAsyncSocket.h +1226 -0
  590. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaAsyncSocket/GCDAsyncSocket.m +8528 -0
  591. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/About.txt +33 -0
  592. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDASLLogger.h +41 -0
  593. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDASLLogger.m +99 -0
  594. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.h +102 -0
  595. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDAbstractDatabaseLogger.m +727 -0
  596. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDFileLogger.h +334 -0
  597. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDFileLogger.m +1353 -0
  598. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDLog.h +601 -0
  599. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDLog.m +1083 -0
  600. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDTTYLogger.h +167 -0
  601. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/DDTTYLogger.m +1479 -0
  602. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.h +65 -0
  603. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/Extensions/ContextFilterLogFormatter.m +191 -0
  604. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.h +116 -0
  605. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/Extensions/DispatchQueueLogFormatter.m +251 -0
  606. data/platform/iphone/CocoaHTTPServer/Vendor/CocoaLumberjack/Extensions/README.txt +7 -0
  607. data/platform/iphone/Default-568h@2x.png +0 -0
  608. data/platform/iphone/Default-667h@2x.png +0 -0
  609. data/platform/iphone/Default-736h@3x.png +0 -0
  610. data/platform/iphone/Default-812h@3x.png +0 -0
  611. data/platform/iphone/Default-896h@2x.png +0 -0
  612. data/platform/iphone/Default-896h@3x.png +0 -0
  613. data/platform/iphone/Default-Landscape-736h@3x.png +0 -0
  614. data/platform/iphone/Default-Landscape-812h@3x.png +0 -0
  615. data/platform/iphone/Default-Landscape-896h@2x.png +0 -0
  616. data/platform/iphone/Default-Landscape-896h@3x.png +0 -0
  617. data/platform/iphone/Default-Landscape.png +0 -0
  618. data/platform/iphone/Default-Landscape@2x.png +0 -0
  619. data/platform/iphone/Default-LandscapeLeft.png +0 -0
  620. data/platform/iphone/Default-LandscapeLeft@2x.png +0 -0
  621. data/platform/iphone/Default-LandscapeRight.png +0 -0
  622. data/platform/iphone/Default-LandscapeRight@2x.png +0 -0
  623. data/platform/iphone/Default-Portrait.png +0 -0
  624. data/platform/iphone/Default-Portrait@2x.png +0 -0
  625. data/platform/iphone/Default-PortraitUpsideDown.png +0 -0
  626. data/platform/iphone/Default-PortraitUpsideDown@2x.png +0 -0
  627. data/platform/iphone/Default.png +0 -0
  628. data/platform/iphone/Default@2x.png +0 -0
  629. data/platform/iphone/Entitlements.plist +1 -1
  630. data/platform/iphone/Framework/RhoApplication/RhoApplication.xcodeproj/project.pbxproj +401 -0
  631. data/platform/iphone/Framework/Rhodes/Rhodes/Info.plist +24 -0
  632. data/platform/iphone/Framework/Rhodes/Rhodes/Rhodes.h +21 -0
  633. data/platform/iphone/Framework/Rhodes/Rhodes/StubCode.m +15 -0
  634. data/platform/iphone/Framework/Rhodes/Rhodes.xcodeproj/project.pbxproj +1216 -0
  635. data/platform/iphone/Info.plist +1 -3
  636. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +878 -7
  637. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +470 -4
  638. data/platform/iphone/Rhodes.xcodeproj/project.pbxproj +55 -278
  639. data/platform/iphone/RhodesBaseDelegate.h +1 -1
  640. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +92 -6
  641. data/platform/iphone/rbuild/ApplicationPlist.erb +1 -1
  642. data/platform/iphone/rbuild/buildextension.rb +115 -0
  643. data/platform/iphone/rbuild/iphone.rake +883 -121
  644. data/platform/iphone/rbuild/iphonecommon.rb +15 -6
  645. data/platform/iphone/rhodes_stub.cpp +15 -0
  646. data/platform/iphone/rhodeslib/api/RhodesLib.h +28 -0
  647. data/platform/iphone/rhodeslib/impl/RhodesLib.m +52 -0
  648. data/platform/iphone/rhodesruby/api/IRefCountedObject.h +20 -0
  649. data/platform/iphone/rhodesruby/api/IRhoRuby.h +72 -0
  650. data/platform/iphone/rhodesruby/api/IRhoRubyArray.h +12 -0
  651. data/platform/iphone/rhodesruby/api/IRhoRubyBoolean.h +11 -0
  652. data/platform/iphone/rhodesruby/api/IRhoRubyFloat.h +10 -0
  653. data/platform/iphone/rhodesruby/api/IRhoRubyHash.h +15 -0
  654. data/platform/iphone/rhodesruby/api/IRhoRubyInteger.h +10 -0
  655. data/platform/iphone/rhodesruby/api/IRhoRubyMutableArray.h +9 -0
  656. data/platform/iphone/rhodesruby/api/IRhoRubyMutableBoolean.h +10 -0
  657. data/platform/iphone/rhodesruby/api/IRhoRubyMutableFloat.h +10 -0
  658. data/platform/iphone/rhodesruby/api/IRhoRubyMutableHash.h +10 -0
  659. data/platform/iphone/rhodesruby/api/IRhoRubyMutableInteger.h +10 -0
  660. data/platform/iphone/rhodesruby/api/IRhoRubyMutableString.h +10 -0
  661. data/platform/iphone/rhodesruby/api/IRhoRubyNativeCallback.h +9 -0
  662. data/platform/iphone/rhodesruby/api/IRhoRubyNil.h +10 -0
  663. data/platform/iphone/rhodesruby/api/IRhoRubyObject.h +37 -0
  664. data/platform/iphone/rhodesruby/api/IRhoRubyRunnable.h +8 -0
  665. data/platform/iphone/rhodesruby/api/IRhoRubyString.h +10 -0
  666. data/platform/iphone/rhodesruby/api/RhoRuby.h +26 -0
  667. data/platform/iphone/rhodesruby/api/RhoRubySingletone.h +14 -0
  668. data/platform/iphone/rhodesruby/impl/RhoRubyFabrique.h +10 -0
  669. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.h +56 -0
  670. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.mm +432 -0
  671. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.h +24 -0
  672. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.mm +43 -0
  673. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.h +23 -0
  674. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.mm +38 -0
  675. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.h +23 -0
  676. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.mm +35 -0
  677. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.h +24 -0
  678. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.mm +48 -0
  679. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.h +23 -0
  680. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.mm +35 -0
  681. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.h +23 -0
  682. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.mm +35 -0
  683. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.h +22 -0
  684. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.mm +11 -0
  685. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.h +31 -0
  686. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.mm +49 -0
  687. data/platform/iphone/rhodesruby/impl/RhoRubySingletone.m +19 -0
  688. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.h +21 -0
  689. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.mm +32 -0
  690. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +83 -3
  691. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +94 -3
  692. data/platform/iphone/rhorunner.xcodeproj/project.pbxproj +3 -3
  693. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +89 -3
  694. data/platform/linux/tasks/control.erb +8 -0
  695. data/platform/linux/tasks/getting sudo instruction.txt +8 -0
  696. data/platform/linux/tasks/install_dev_depes_alt.sh +9 -0
  697. data/platform/linux/tasks/install_dev_depes_astra.sh +7 -0
  698. data/platform/linux/tasks/install_dev_depes_redos.sh +10 -0
  699. data/platform/linux/tasks/install_dev_depes_rosa_r7.sh +15 -0
  700. data/platform/linux/tasks/install_dev_depes_rosa_x4.sh +21 -0
  701. data/platform/linux/tasks/install_dev_depes_ubuntu.sh +18 -0
  702. data/platform/linux/tasks/installation.txt +2 -0
  703. data/platform/linux/tasks/linter_exceptions.erb +2 -0
  704. data/platform/linux/tasks/linux.rake +498 -61
  705. data/platform/linux/tasks/rpm_spec.erb +33 -0
  706. data/platform/osx/bin/RhoSimulator/RhoSimulator.app.zip +0 -0
  707. data/platform/sailfish/build/coreapi.pro.erb +11 -12
  708. data/platform/sailfish/build/curl.pro.erb +12 -14
  709. data/platform/sailfish/build/harbour-SailfishRhodes.pro.erb +2 -2
  710. data/platform/sailfish/build/rho_build.cmd.erb +1 -0
  711. data/platform/sailfish/build/rho_clean.cmd.erb +1 -0
  712. data/platform/sailfish/build/rho_deploy.cmd.erb +1 -0
  713. data/platform/sailfish/build/rho_rpm.cmd.erb +1 -0
  714. data/platform/sailfish/build/rho_rpmvalidation.cmd.erb +1 -0
  715. data/platform/sailfish/build/rhodes.pro.erb +43 -38
  716. data/platform/sailfish/build/rholib.pro.erb +21 -57
  717. data/platform/sailfish/build/rubylib.pro.erb +25 -30
  718. data/platform/sailfish/build/sailfish.rake +56 -9
  719. data/platform/sailfish/build/sqlite3.pro.erb +9 -9
  720. data/platform/sailfish/build/syncengine.pro.erb +9 -16
  721. data/platform/sailfish/build/unzip.pro.erb +66 -0
  722. data/platform/sailfish/build/zlib.pro.erb +72 -0
  723. data/platform/shared/api_generator/Api.h +5 -0
  724. data/platform/shared/common/CMakeLists.txt.erb +2 -52
  725. data/platform/shared/common/IRhoClassFactory.h +56 -2
  726. data/platform/shared/common/ISecurityTokenGenerator.h +16 -0
  727. data/platform/shared/common/RhoDefs.h +0 -1
  728. data/platform/shared/common/RhoFile.cpp +11 -0
  729. data/platform/shared/common/RhoFile.h +2 -0
  730. data/platform/shared/common/RhoMath.h +14 -0
  731. data/platform/shared/common/RhoMutexLock.h +14 -1
  732. data/platform/shared/common/RhoSystem.h +1 -1
  733. data/platform/shared/common/RhoThread.cpp +25 -0
  734. data/platform/shared/common/RhodesApp.cpp +127 -13
  735. data/platform/shared/common/RhodesApp.h +29 -1
  736. data/platform/shared/common/RhodesAppBase.cpp +4 -2
  737. data/platform/shared/common/RhodesAppBase.h +5 -0
  738. data/platform/shared/common/iphone/RhoClassfactory.h +7 -1
  739. data/platform/shared/common/iphone/RhoCryptImpl.mm +21 -2
  740. data/platform/shared/common/map/BaseMapEngine.cpp +2 -2
  741. data/platform/shared/common/map/GeocodingMapEngine.cpp +1 -1
  742. data/platform/shared/common/map/GoogleMapEngine.cpp +1 -1
  743. data/platform/shared/common/map/OSMMapEngine.cpp +1 -1
  744. data/platform/shared/curl/CMakeLists.txt.erb +1 -94
  745. data/platform/shared/curl/lib/asyn-thread.c +2 -1
  746. data/platform/shared/curl/lib/curl_addrinfo.h +39 -0
  747. data/platform/shared/curl/lib/curl_config.h +30 -3
  748. data/platform/shared/curl/lib/curl_setup.h +4 -0
  749. data/platform/shared/curl/lib/multi.c +0 -1
  750. data/platform/shared/curl/lib/transfer.c +21 -2
  751. data/platform/shared/curl/lib/vtls/vtls.h +3 -0
  752. data/platform/shared/db/CMakeLists.txt.erb +1 -6
  753. data/platform/shared/db/DBAdapter.cpp +28 -14
  754. data/platform/shared/json/RJSONTokener.c +1 -8
  755. data/platform/shared/json/json_object.c +2 -2
  756. data/platform/shared/json/json_tokener.c +1 -1
  757. data/platform/shared/json.new/CMakeLists.txt.erb +1 -15
  758. data/platform/shared/json.new/JSONIterator.cpp +2 -2
  759. data/platform/shared/json.new/RJSONTokener.c +0 -7
  760. data/platform/shared/json.new/json_object.c +5 -5
  761. data/platform/shared/json.new/json_pointer.c +2 -2
  762. data/platform/shared/json.new/json_tokener.c +1 -1
  763. data/platform/shared/logging/CMakeLists.txt.erb +1 -5
  764. data/platform/shared/logging/RhoLogConf.cpp +82 -3
  765. data/platform/shared/net/CURLNetRequest.cpp +6 -7
  766. data/platform/shared/net/HttpServer.cpp +286 -4
  767. data/platform/shared/net/HttpServer.h +35 -0
  768. data/platform/shared/net/INetRequest.cpp +54 -0
  769. data/platform/shared/net/INetRequest.h +6 -0
  770. data/platform/shared/net/linux/SSLImpl.cpp +2 -1
  771. data/platform/shared/net/ssl.h +26 -0
  772. data/platform/shared/qt/RhoRubylib.pro +10 -0
  773. data/platform/shared/qt/RhoSimulator.pro +25 -13
  774. data/platform/shared/qt/RhoSimulator_dev.pro +30 -15
  775. data/platform/shared/qt/curl/curl.pro +27 -16
  776. data/platform/shared/qt/rhodes/iexecutable.h +1 -1
  777. data/platform/shared/qt/rhodes/impl/AlertImpl.cpp +13 -0
  778. data/platform/shared/qt/rhodes/impl/CameraImpl.cpp +6 -0
  779. data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.cpp +4 -0
  780. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +36 -7
  781. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +12 -1
  782. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.cpp +21 -2
  783. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.h +1 -0
  784. data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.cpp +10 -0
  785. data/platform/shared/qt/rhodes/impl/QtSystemImpl.cpp +55 -3
  786. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +12 -1
  787. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +72 -8
  788. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.h +79 -2
  789. data/platform/shared/qt/rhodes/impl/RhodesImpl.cpp +16 -6
  790. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.cpp +37 -0
  791. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.h +25 -0
  792. data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +2 -0
  793. data/platform/shared/qt/rhodes/impl/WebViewImpl.cpp +27 -0
  794. data/platform/shared/qt/rhodes/impl/notificationsound.cpp +16 -2
  795. data/platform/shared/qt/rhodes/impl/notificationsound.h +11 -1
  796. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +50 -26
  797. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +4 -1
  798. data/platform/shared/qt/rhodes/newVersion/{qtwebenginepage.cpp → QtWebEnginePage.cpp} +1 -1
  799. data/platform/shared/qt/rhodes/newVersion/{qtwebenginepage.h → QtWebEnginePage.h} +0 -0
  800. data/platform/shared/qt/rhodes/newVersion/{qtwebengineview.cpp → QtWebEngineView.cpp} +1 -1
  801. data/platform/shared/qt/rhodes/newVersion/{qtwebengineview.h → QtWebEngineView.h} +0 -0
  802. data/platform/shared/qt/rhodes/newVersion/WebUrlRequestInterceptor.cpp +17 -0
  803. data/platform/shared/qt/rhodes/newVersion/main.cpp +5 -6
  804. data/platform/shared/qt/rhodes/resources/rho.png +0 -0
  805. data/platform/shared/qt/rhodes/rhodes.pro +155 -85
  806. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.cpp +148 -0
  807. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.h +12 -0
  808. data/platform/shared/qt/rholib/rholib.pro +66 -30
  809. data/platform/shared/qt/rhoruby_win32_build.bat +19 -0
  810. data/platform/shared/qt/rhoruby_win32_build_debug.bat +19 -0
  811. data/platform/shared/qt/rhosimulator_win32_build.bat +1 -1
  812. data/platform/shared/qt/rhosimulator_win32_build_debug.bat +19 -0
  813. data/platform/shared/qt/rubylib/rubylib.pro +38 -34
  814. data/platform/shared/qt/sailfish/SailfishRhodes.pro +1 -1
  815. data/platform/shared/qt/sailfish/icons/172x172/harbour-sailfishrhodes.png +0 -0
  816. data/platform/shared/qt/sailfish/qml/pages/BarcodePage.qml +18 -48
  817. data/platform/shared/qt/sqlite3/sqlite3.pro +17 -10
  818. data/platform/shared/qt/syncengine/syncengine.pro +19 -15
  819. data/platform/shared/qt/unzip/unzip.pro +133 -0
  820. data/platform/shared/rhoruby/api/IArray.h +20 -0
  821. data/platform/shared/rhoruby/api/IBoolean.h +17 -0
  822. data/platform/shared/rhoruby/api/IFloat.h +17 -0
  823. data/platform/shared/rhoruby/api/IHash.h +23 -0
  824. data/platform/shared/rhoruby/api/IInteger.h +18 -0
  825. data/platform/shared/rhoruby/api/IMutableArray.h +18 -0
  826. data/platform/shared/rhoruby/api/IMutableBoolean.h +18 -0
  827. data/platform/shared/rhoruby/api/IMutableFloat.h +17 -0
  828. data/platform/shared/rhoruby/api/IMutableHash.h +18 -0
  829. data/platform/shared/rhoruby/api/IMutableInteger.h +17 -0
  830. data/platform/shared/rhoruby/api/IMutableString.h +17 -0
  831. data/platform/shared/rhoruby/api/INil.h +16 -0
  832. data/platform/shared/rhoruby/api/IObject.h +46 -0
  833. data/platform/shared/rhoruby/api/IRefCountedObject.h +20 -0
  834. data/platform/shared/rhoruby/api/IRhoRuby.h +78 -0
  835. data/platform/shared/rhoruby/api/IRunnable.h +17 -0
  836. data/platform/shared/rhoruby/api/IString.h +17 -0
  837. data/platform/shared/rhoruby/api/RhoRuby.h +29 -0
  838. data/platform/shared/rhoruby/api/RhoRubySingletone.h +19 -0
  839. data/platform/shared/rhoruby/api/SmartPointer.h +27 -0
  840. data/platform/shared/rhoruby/impl/MutableArrayImpl.cpp +54 -0
  841. data/platform/shared/rhoruby/impl/MutableArrayImpl.h +48 -0
  842. data/platform/shared/rhoruby/impl/MutableBooleanImpl.cpp +44 -0
  843. data/platform/shared/rhoruby/impl/MutableBooleanImpl.h +44 -0
  844. data/platform/shared/rhoruby/impl/MutableFloatImpl.cpp +41 -0
  845. data/platform/shared/rhoruby/impl/MutableFloatImpl.h +44 -0
  846. data/platform/shared/rhoruby/impl/MutableHashImpl.cpp +64 -0
  847. data/platform/shared/rhoruby/impl/MutableHashImpl.h +49 -0
  848. data/platform/shared/rhoruby/impl/MutableIntegerImpl.cpp +41 -0
  849. data/platform/shared/rhoruby/impl/MutableIntegerImpl.h +44 -0
  850. data/platform/shared/rhoruby/impl/MutableStringImpl.cpp +52 -0
  851. data/platform/shared/rhoruby/impl/MutableStringImpl.h +44 -0
  852. data/platform/shared/rhoruby/impl/NilImpl.cpp +23 -0
  853. data/platform/shared/rhoruby/impl/NilImpl.h +32 -0
  854. data/platform/shared/rhoruby/impl/ObjectImpl.cpp +77 -0
  855. data/platform/shared/rhoruby/impl/ObjectImpl.h +53 -0
  856. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.cpp +28 -0
  857. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.h +33 -0
  858. data/platform/shared/rhoruby/impl/RhoRubyImpl.cpp +804 -0
  859. data/platform/shared/rhoruby/impl/RhoRubyImpl.h +86 -0
  860. data/platform/shared/rhoruby/impl/RhoRubySingletone.cpp +20 -0
  861. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.cpp +32 -0
  862. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.h +21 -0
  863. data/platform/shared/ruby/CMakeLists.txt.erb +1 -129
  864. data/platform/shared/ruby/android/ruby/config.h +55 -3
  865. data/platform/shared/ruby/dln_find.c +1 -1
  866. data/platform/shared/ruby/error.c +2 -2
  867. data/platform/shared/ruby/ext/rho/rhoruby.c +88 -14
  868. data/platform/shared/ruby/ext/rho/rhoruby.h +4 -0
  869. data/platform/shared/ruby/ext/socket/addrinfo.h +2 -1
  870. data/platform/shared/ruby/ext/socket/ipsocket.c +3 -3
  871. data/platform/shared/ruby/file.c +3 -3
  872. data/platform/shared/ruby/io.c +46 -46
  873. data/platform/shared/ruby/linux/ruby/config.h +94 -34
  874. data/platform/shared/ruby/linux/ruby/config_linux.h +403 -0
  875. data/platform/shared/ruby/missing/langinfo.c +1 -1
  876. data/platform/shared/ruby/missing/memmove.c +4 -0
  877. data/platform/shared/ruby/osx/ruby/config.h +2 -0
  878. data/platform/shared/ruby/posixnames.h +2 -8
  879. data/platform/shared/ruby/process.c +7 -7
  880. data/platform/shared/ruby/ruby.c +10 -10
  881. data/platform/shared/ruby/sailfish/ruby/config.h +1 -1
  882. data/platform/shared/ruby/thread_pthread.c +1 -1
  883. data/platform/shared/ruby/time.c +2 -2
  884. data/platform/shared/ruby/uwp/win32/win32.c +12 -12
  885. data/platform/shared/ruby/win32/ruby/config.h +1 -1
  886. data/platform/shared/ruby/win32/win32.c +10 -3
  887. data/platform/shared/rubyext/NativeToolbarExt.h +1 -0
  888. data/platform/shared/sqlite/CMakeLists.txt.erb +1 -1
  889. data/platform/shared/sqlite/sqlite3.c +23 -0
  890. data/platform/shared/sync/CMakeLists.txt.erb +1 -1
  891. data/platform/shared/unzip/gzlib.cpp +1 -1
  892. data/platform/shared/unzip/gzwrite.cpp +3 -3
  893. data/platform/shared/unzip/unzip.cpp +3 -10
  894. data/platform/shared/unzip/zip.cpp +3 -8
  895. data/platform/uwp/rhodes/App.xaml.cs +9 -9
  896. data/platform/uwp/rhodes/rhodes_TemporaryKey.pfx +0 -0
  897. data/platform/uwp/rhoruntime/common/RhoClassFactory.h +7 -1
  898. data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
  899. data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
  900. data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
  901. data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
  902. data/platform/win32/RhoSimulator/Qt5Positioning.dll +0 -0
  903. data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
  904. data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
  905. data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
  906. data/platform/win32/RhoSimulator/Qt5QuickWidgets.dll +0 -0
  907. data/platform/win32/RhoSimulator/Qt5SerialPort.dll +0 -0
  908. data/platform/win32/RhoSimulator/Qt5Svg.dll +0 -0
  909. data/platform/win32/RhoSimulator/Qt5WebChannel.dll +0 -0
  910. data/platform/win32/RhoSimulator/Qt5WebEngine.dll +0 -0
  911. data/platform/win32/RhoSimulator/Qt5WebEngineCore.dll +0 -0
  912. data/platform/win32/RhoSimulator/Qt5WebEngineWidgets.dll +0 -0
  913. data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
  914. data/platform/win32/RhoSimulator/QtWebEngineProcess.exe +0 -0
  915. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  916. data/platform/win32/RhoSimulator/audio/qtaudio_wasapi.dll +0 -0
  917. data/platform/win32/RhoSimulator/audio/qtaudio_windows.dll +0 -0
  918. data/platform/win32/RhoSimulator/bearer/qgenericbearer.dll +0 -0
  919. data/platform/win32/RhoSimulator/concrt140.dll +0 -0
  920. data/platform/win32/RhoSimulator/iconengines/qsvgicon.dll +0 -0
  921. data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
  922. data/platform/win32/RhoSimulator/imageformats/qicns.dll +0 -0
  923. data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
  924. data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
  925. data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
  926. data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
  927. data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
  928. data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
  929. data/platform/win32/RhoSimulator/imageformats/qwebp.dll +0 -0
  930. data/platform/win32/RhoSimulator/libEGL.dll +0 -0
  931. data/platform/win32/RhoSimulator/libGLESV2.dll +0 -0
  932. data/platform/win32/RhoSimulator/mediaservice/dsengine.dll +0 -0
  933. data/platform/win32/RhoSimulator/mediaservice/qtmedia_audioengine.dll +0 -0
  934. data/platform/win32/RhoSimulator/mediaservice/wmfengine.dll +0 -0
  935. data/platform/win32/RhoSimulator/mfc140.dll +0 -0
  936. data/platform/win32/RhoSimulator/mfc140chs.dll +0 -0
  937. data/platform/win32/RhoSimulator/mfc140cht.dll +0 -0
  938. data/platform/win32/RhoSimulator/mfc140deu.dll +0 -0
  939. data/platform/win32/RhoSimulator/mfc140enu.dll +0 -0
  940. data/platform/win32/RhoSimulator/mfc140esn.dll +0 -0
  941. data/platform/win32/RhoSimulator/mfc140fra.dll +0 -0
  942. data/platform/win32/RhoSimulator/mfc140ita.dll +0 -0
  943. data/platform/win32/RhoSimulator/mfc140jpn.dll +0 -0
  944. data/platform/win32/RhoSimulator/mfc140kor.dll +0 -0
  945. data/platform/win32/RhoSimulator/mfc140rus.dll +0 -0
  946. data/platform/win32/RhoSimulator/mfc140u.dll +0 -0
  947. data/platform/win32/RhoSimulator/mfcm140.dll +0 -0
  948. data/platform/win32/RhoSimulator/mfcm140u.dll +0 -0
  949. data/platform/win32/RhoSimulator/msvcp140.dll +0 -0
  950. data/platform/win32/RhoSimulator/msvcp140_1.dll +0 -0
  951. data/platform/win32/RhoSimulator/msvcp140_2.dll +0 -0
  952. data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
  953. data/platform/win32/RhoSimulator/playlistformats/qtmultimedia_m3u.dll +0 -0
  954. data/platform/win32/RhoSimulator/position/qtposition_positionpoll.dll +0 -0
  955. data/platform/win32/RhoSimulator/position/qtposition_serialnmea.dll +0 -0
  956. data/platform/win32/RhoSimulator/position/qtposition_winrt.dll +0 -0
  957. data/platform/win32/RhoSimulator/printsupport/windowsprintersupport.dll +0 -0
  958. data/platform/win32/RhoSimulator/resources/icudtl.dat +0 -0
  959. data/platform/win32/RhoSimulator/resources/qtwebengine_devtools_resources.pak +0 -0
  960. data/platform/win32/RhoSimulator/resources/qtwebengine_resources.pak +0 -0
  961. data/platform/win32/RhoSimulator/resources/qtwebengine_resources_100p.pak +0 -0
  962. data/platform/win32/RhoSimulator/resources/qtwebengine_resources_200p.pak +0 -0
  963. data/platform/win32/RhoSimulator/styles/qwindowsvistastyle.dll +0 -0
  964. data/platform/win32/RhoSimulator/translations/qt_ca.qm +0 -0
  965. data/platform/win32/RhoSimulator/translations/qt_da.qm +0 -0
  966. data/platform/win32/RhoSimulator/translations/qt_de.qm +0 -0
  967. data/platform/win32/RhoSimulator/translations/qt_fi.qm +0 -0
  968. data/platform/win32/RhoSimulator/translations/qt_ru.qm +0 -0
  969. data/platform/win32/RhoSimulator/translations/qt_zh_TW.qm +0 -0
  970. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/am.pak +0 -0
  971. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ar.pak +0 -0
  972. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/bg.pak +0 -0
  973. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/bn.pak +0 -0
  974. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ca.pak +0 -0
  975. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/cs.pak +0 -0
  976. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/da.pak +0 -0
  977. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/de.pak +0 -0
  978. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/el.pak +0 -0
  979. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/en-GB.pak +0 -0
  980. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/en-US.pak +0 -0
  981. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/es-419.pak +0 -0
  982. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/es.pak +0 -0
  983. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/et.pak +0 -0
  984. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fa.pak +0 -0
  985. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fi.pak +0 -0
  986. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fil.pak +0 -0
  987. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/fr.pak +0 -0
  988. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/gu.pak +0 -0
  989. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/he.pak +0 -0
  990. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hi.pak +0 -0
  991. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hr.pak +0 -0
  992. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/hu.pak +0 -0
  993. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/id.pak +0 -0
  994. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/it.pak +0 -0
  995. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ja.pak +0 -0
  996. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/kn.pak +0 -0
  997. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ko.pak +0 -0
  998. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/lt.pak +0 -0
  999. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/lv.pak +0 -0
  1000. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ml.pak +0 -0
  1001. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/mr.pak +0 -0
  1002. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ms.pak +0 -0
  1003. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/nb.pak +0 -0
  1004. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/nl.pak +0 -0
  1005. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pl.pak +0 -0
  1006. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pt-BR.pak +0 -0
  1007. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/pt-PT.pak +0 -0
  1008. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ro.pak +0 -0
  1009. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ru.pak +0 -0
  1010. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sk.pak +0 -0
  1011. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sl.pak +0 -0
  1012. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sr.pak +0 -0
  1013. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sv.pak +0 -0
  1014. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/sw.pak +0 -0
  1015. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/ta.pak +0 -0
  1016. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/te.pak +0 -0
  1017. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/th.pak +0 -0
  1018. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/tr.pak +0 -0
  1019. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/uk.pak +0 -0
  1020. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/vi.pak +0 -0
  1021. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/zh-CN.pak +0 -0
  1022. data/platform/win32/RhoSimulator/translations/qtwebengine_locales/zh-TW.pak +0 -0
  1023. data/platform/win32/RhoSimulator/vcamp140.dll +0 -0
  1024. data/platform/win32/RhoSimulator/vccorlib140.dll +0 -0
  1025. data/platform/win32/RhoSimulator/vcomp140.dll +0 -0
  1026. data/platform/win32/RhoSimulator/vcruntime140.dll +0 -0
  1027. data/platform/win32/build/rhodes.nsi +184 -0
  1028. data/platform/win32/build/win32.rake +876 -0
  1029. data/platform/wm/build/wm.rake +17 -967
  1030. data/platform/wm/rhodes/rho/common/ExtManager.cpp +30 -0
  1031. data/platform/wm/rhodes/rho/common/RhoClassFactory.h +7 -1
  1032. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +3 -0
  1033. data/platform/wm/rubylib/rubylib.vcxproj +6 -0
  1034. data/platform/wm/syncengine/syncengine.vcproj +24 -16
  1035. data/platform/wp8/rhoruntime/common/RhoClassFactory.h +7 -1
  1036. data/rakefile.rb +194 -101
  1037. data/res/build-tools/RhoRuby.exe +0 -0
  1038. data/res/build-tools/aapt2/linux/aapt2 +0 -0
  1039. data/res/build-tools/aapt2/osx/aapt2 +0 -0
  1040. data/res/build-tools/aapt2/windows/aapt2.exe +0 -0
  1041. data/res/build-tools/bundletool.jar +0 -0
  1042. data/res/build-tools/helpers/ext/android/build_common.rb +160 -0
  1043. data/res/build-tools/iphonesim/build/Release/iphonesim_8 +29 -19
  1044. data/res/build-tools/maven/LICENSE +18 -89
  1045. data/res/build-tools/maven/NOTICE +1 -1
  1046. data/res/build-tools/maven/README.txt +12 -12
  1047. data/res/build-tools/maven/bin/m2.conf +2 -2
  1048. data/res/build-tools/maven/bin/mvn +122 -125
  1049. data/res/build-tools/maven/bin/mvn.cmd +205 -0
  1050. data/res/build-tools/maven/bin/mvnDebug +10 -176
  1051. data/res/build-tools/maven/bin/mvnDebug.cmd +33 -0
  1052. data/res/build-tools/maven/bin/mvnyjp +9 -181
  1053. data/res/build-tools/maven/boot/plexus-classworlds-2.6.0.jar +0 -0
  1054. data/res/build-tools/maven/conf/logging/simplelogger.properties +8 -1
  1055. data/res/build-tools/maven/conf/settings.xml +1 -1
  1056. data/res/build-tools/maven/conf/toolchains.xml +103 -0
  1057. data/res/build-tools/maven/lib/animal-sniffer-annotations-1.14.jar +0 -0
  1058. data/res/build-tools/maven/lib/animal-sniffer-annotations.license +14 -0
  1059. data/res/build-tools/maven/lib/checker-compat-qual-2.0.0.jar +0 -0
  1060. data/res/build-tools/maven/lib/checker-compat-qual.license +14 -0
  1061. data/res/build-tools/maven/lib/commons-cli-1.4.jar +0 -0
  1062. data/res/build-tools/maven/lib/commons-io-2.5.jar +0 -0
  1063. data/res/build-tools/maven/lib/commons-lang3-3.8.1.jar +0 -0
  1064. data/res/build-tools/maven/lib/error_prone_annotations-2.1.3.jar +0 -0
  1065. data/res/build-tools/maven/lib/guava-25.1-android.jar +0 -0
  1066. data/res/build-tools/maven/lib/guice-4.2.1-no_aop.jar +0 -0
  1067. data/res/build-tools/maven/lib/j2objc-annotations-1.1.jar +0 -0
  1068. data/res/build-tools/maven/lib/jansi-1.17.1.jar +0 -0
  1069. data/res/build-tools/maven/lib/jansi-native/README.txt +7 -0
  1070. data/res/build-tools/maven/lib/jansi-native/freebsd32/libjansi.so +0 -0
  1071. data/res/build-tools/maven/lib/jansi-native/freebsd64/libjansi.so +0 -0
  1072. data/res/build-tools/maven/lib/jansi-native/linux32/libjansi.so +0 -0
  1073. data/res/build-tools/maven/lib/jansi-native/linux64/libjansi.so +0 -0
  1074. data/res/build-tools/maven/lib/jansi-native/osx/libjansi.jnilib +0 -0
  1075. data/res/build-tools/maven/lib/jansi-native/windows32/jansi.dll +0 -0
  1076. data/res/build-tools/maven/lib/jansi-native/windows64/jansi.dll +0 -0
  1077. data/res/build-tools/maven/lib/jcl-over-slf4j-1.7.25.jar +0 -0
  1078. data/res/build-tools/maven/lib/jcl-over-slf4j.license +14 -0
  1079. data/res/build-tools/maven/lib/jsr250-api.license +383 -405
  1080. data/res/build-tools/maven/lib/jsr305-3.0.2.jar +0 -0
  1081. data/res/build-tools/maven/lib/maven-artifact-3.6.1.jar +0 -0
  1082. data/res/build-tools/maven/lib/maven-builder-support-3.6.1.jar +0 -0
  1083. data/res/build-tools/maven/lib/maven-compat-3.6.1.jar +0 -0
  1084. data/res/build-tools/maven/lib/maven-core-3.6.1.jar +0 -0
  1085. data/res/build-tools/maven/lib/maven-embedder-3.6.1.jar +0 -0
  1086. data/res/build-tools/maven/lib/maven-model-3.6.1.jar +0 -0
  1087. data/res/build-tools/maven/lib/maven-model-builder-3.6.1.jar +0 -0
  1088. data/res/build-tools/maven/lib/maven-plugin-api-3.6.1.jar +0 -0
  1089. data/res/build-tools/maven/lib/maven-repository-metadata-3.6.1.jar +0 -0
  1090. data/res/build-tools/maven/lib/maven-resolver-api-1.3.3.jar +0 -0
  1091. data/res/build-tools/maven/lib/maven-resolver-connector-basic-1.3.3.jar +0 -0
  1092. data/res/build-tools/maven/lib/maven-resolver-impl-1.3.3.jar +0 -0
  1093. data/res/build-tools/maven/lib/maven-resolver-provider-3.6.1.jar +0 -0
  1094. data/res/build-tools/maven/lib/maven-resolver-spi-1.3.3.jar +0 -0
  1095. data/res/build-tools/maven/lib/maven-resolver-transport-wagon-1.3.3.jar +0 -0
  1096. data/res/build-tools/maven/lib/maven-resolver-util-1.3.3.jar +0 -0
  1097. data/res/build-tools/maven/lib/maven-settings-3.6.1.jar +0 -0
  1098. data/res/build-tools/maven/lib/maven-settings-builder-3.6.1.jar +0 -0
  1099. data/res/build-tools/maven/lib/maven-shared-utils-3.2.1.jar +0 -0
  1100. data/res/build-tools/maven/lib/maven-slf4j-provider-3.6.1.jar +0 -0
  1101. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.3.jar +0 -0
  1102. data/res/build-tools/maven/lib/org.eclipse.sisu.inject.license +210 -261
  1103. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.3.jar +0 -0
  1104. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus.license +210 -261
  1105. data/res/build-tools/maven/lib/plexus-component-annotations-1.7.1.jar +0 -0
  1106. data/res/build-tools/maven/lib/plexus-interpolation-1.25.jar +0 -0
  1107. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.4.jar +0 -0
  1108. data/res/build-tools/maven/lib/plexus-utils-3.2.0.jar +0 -0
  1109. data/res/build-tools/maven/lib/slf4j-api-1.7.25.jar +0 -0
  1110. data/res/build-tools/maven/lib/slf4j-api.license +10 -186
  1111. data/res/build-tools/maven/lib/wagon-file-3.3.2.jar +0 -0
  1112. data/res/build-tools/maven/lib/wagon-http-3.3.2-shaded.jar +0 -0
  1113. data/res/build-tools/maven/lib/wagon-provider-api-3.3.2.jar +0 -0
  1114. data/res/generators/rhogen.rb +163 -3
  1115. data/res/generators/templates/api/platform/iphone/generated/stub_impl/MontanaSetup.m +2 -2
  1116. data/res/generators/templates/application/AndroidManifest.erb +17 -6
  1117. data/res/generators/templates/application/Podfile.example +43 -0
  1118. data/res/generators/templates/application/app/Settings/index.erb +52 -55
  1119. data/res/generators/templates/application/app/Settings/javascript_index.html +51 -46
  1120. data/res/generators/templates/application/app/Settings/javascript_login.html +24 -17
  1121. data/res/generators/templates/application/app/Settings/login.erb +5 -12
  1122. data/res/generators/templates/application/app/Settings/reset.erb +10 -14
  1123. data/res/generators/templates/application/app/index.erb +26 -30
  1124. data/res/generators/templates/application/app/javascript_index.html +36 -30
  1125. data/res/generators/templates/application/app/javascript_index.js +13 -4
  1126. data/res/generators/templates/application/app/layout.erb +18 -4
  1127. data/res/generators/templates/application/app/loading.png +0 -0
  1128. data/res/generators/templates/application/build.yml +34 -2
  1129. data/res/generators/templates/application/nodejs_build.yml +1 -1
  1130. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.css +3899 -0
  1131. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.css.map +1 -0
  1132. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.min.css +7 -0
  1133. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-grid.min.css.map +1 -0
  1134. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.css +327 -0
  1135. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.css.map +1 -0
  1136. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.min.css +8 -0
  1137. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap-reboot.min.css.map +1 -0
  1138. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.css +10224 -0
  1139. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.css.map +1 -0
  1140. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.min.css +7 -0
  1141. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/css/bootstrap.min.css.map +1 -0
  1142. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.js +7134 -0
  1143. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.js.map +1 -0
  1144. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js +7 -0
  1145. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.bundle.min.js.map +1 -0
  1146. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.js +4521 -0
  1147. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.js.map +1 -0
  1148. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.min.js +7 -0
  1149. data/res/generators/templates/application/public/libs/bootstrap-4.4.1-dist/js/bootstrap.min.js.map +1 -0
  1150. data/res/generators/templates/application/public/libs/feather/js/feather.js +2413 -0
  1151. data/res/generators/templates/application/public/libs/feather/js/feather.min.js +13 -0
  1152. data/res/generators/templates/application/public/libs/feather/svg/activity.svg +1 -0
  1153. data/res/generators/templates/application/public/libs/feather/svg/airplay.svg +1 -0
  1154. data/res/generators/templates/application/public/libs/feather/svg/alert-circle.svg +1 -0
  1155. data/res/generators/templates/application/public/libs/feather/svg/alert-octagon.svg +1 -0
  1156. data/res/generators/templates/application/public/libs/feather/svg/alert-triangle.svg +1 -0
  1157. data/res/generators/templates/application/public/libs/feather/svg/align-center.svg +1 -0
  1158. data/res/generators/templates/application/public/libs/feather/svg/align-justify.svg +1 -0
  1159. data/res/generators/templates/application/public/libs/feather/svg/align-left.svg +1 -0
  1160. data/res/generators/templates/application/public/libs/feather/svg/align-right.svg +1 -0
  1161. data/res/generators/templates/application/public/libs/feather/svg/anchor.svg +1 -0
  1162. data/res/generators/templates/application/public/libs/feather/svg/aperture.svg +1 -0
  1163. data/res/generators/templates/application/public/libs/feather/svg/archive.svg +1 -0
  1164. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-circle.svg +1 -0
  1165. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-left.svg +1 -0
  1166. data/res/generators/templates/application/public/libs/feather/svg/arrow-down-right.svg +1 -0
  1167. data/res/generators/templates/application/public/libs/feather/svg/arrow-down.svg +1 -0
  1168. data/res/generators/templates/application/public/libs/feather/svg/arrow-left-circle.svg +1 -0
  1169. data/res/generators/templates/application/public/libs/feather/svg/arrow-left.svg +1 -0
  1170. data/res/generators/templates/application/public/libs/feather/svg/arrow-right-circle.svg +1 -0
  1171. data/res/generators/templates/application/public/libs/feather/svg/arrow-right.svg +1 -0
  1172. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-circle.svg +1 -0
  1173. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-left.svg +1 -0
  1174. data/res/generators/templates/application/public/libs/feather/svg/arrow-up-right.svg +1 -0
  1175. data/res/generators/templates/application/public/libs/feather/svg/arrow-up.svg +1 -0
  1176. data/res/generators/templates/application/public/libs/feather/svg/at-sign.svg +1 -0
  1177. data/res/generators/templates/application/public/libs/feather/svg/award.svg +1 -0
  1178. data/res/generators/templates/application/public/libs/feather/svg/bar-chart-2.svg +1 -0
  1179. data/res/generators/templates/application/public/libs/feather/svg/bar-chart.svg +1 -0
  1180. data/res/generators/templates/application/public/libs/feather/svg/battery-charging.svg +1 -0
  1181. data/res/generators/templates/application/public/libs/feather/svg/battery.svg +1 -0
  1182. data/res/generators/templates/application/public/libs/feather/svg/bell-off.svg +1 -0
  1183. data/res/generators/templates/application/public/libs/feather/svg/bell.svg +1 -0
  1184. data/res/generators/templates/application/public/libs/feather/svg/bluetooth.svg +1 -0
  1185. data/res/generators/templates/application/public/libs/feather/svg/bold.svg +1 -0
  1186. data/res/generators/templates/application/public/libs/feather/svg/book-open.svg +1 -0
  1187. data/res/generators/templates/application/public/libs/feather/svg/book.svg +1 -0
  1188. data/res/generators/templates/application/public/libs/feather/svg/bookmark.svg +1 -0
  1189. data/res/generators/templates/application/public/libs/feather/svg/box.svg +1 -0
  1190. data/res/generators/templates/application/public/libs/feather/svg/briefcase.svg +1 -0
  1191. data/res/generators/templates/application/public/libs/feather/svg/calendar.svg +1 -0
  1192. data/res/generators/templates/application/public/libs/feather/svg/camera-off.svg +1 -0
  1193. data/res/generators/templates/application/public/libs/feather/svg/camera.svg +1 -0
  1194. data/res/generators/templates/application/public/libs/feather/svg/cast.svg +1 -0
  1195. data/res/generators/templates/application/public/libs/feather/svg/check-circle.svg +1 -0
  1196. data/res/generators/templates/application/public/libs/feather/svg/check-square.svg +1 -0
  1197. data/res/generators/templates/application/public/libs/feather/svg/check.svg +1 -0
  1198. data/res/generators/templates/application/public/libs/feather/svg/chevron-down.svg +1 -0
  1199. data/res/generators/templates/application/public/libs/feather/svg/chevron-left.svg +1 -0
  1200. data/res/generators/templates/application/public/libs/feather/svg/chevron-right.svg +1 -0
  1201. data/res/generators/templates/application/public/libs/feather/svg/chevron-up.svg +1 -0
  1202. data/res/generators/templates/application/public/libs/feather/svg/chevrons-down.svg +1 -0
  1203. data/res/generators/templates/application/public/libs/feather/svg/chevrons-left.svg +1 -0
  1204. data/res/generators/templates/application/public/libs/feather/svg/chevrons-right.svg +1 -0
  1205. data/res/generators/templates/application/public/libs/feather/svg/chevrons-up.svg +1 -0
  1206. data/res/generators/templates/application/public/libs/feather/svg/chrome.svg +1 -0
  1207. data/res/generators/templates/application/public/libs/feather/svg/circle.svg +1 -0
  1208. data/res/generators/templates/application/public/libs/feather/svg/clipboard.svg +1 -0
  1209. data/res/generators/templates/application/public/libs/feather/svg/clock.svg +1 -0
  1210. data/res/generators/templates/application/public/libs/feather/svg/cloud-drizzle.svg +1 -0
  1211. data/res/generators/templates/application/public/libs/feather/svg/cloud-lightning.svg +1 -0
  1212. data/res/generators/templates/application/public/libs/feather/svg/cloud-off.svg +1 -0
  1213. data/res/generators/templates/application/public/libs/feather/svg/cloud-rain.svg +1 -0
  1214. data/res/generators/templates/application/public/libs/feather/svg/cloud-snow.svg +1 -0
  1215. data/res/generators/templates/application/public/libs/feather/svg/cloud.svg +1 -0
  1216. data/res/generators/templates/application/public/libs/feather/svg/code.svg +1 -0
  1217. data/res/generators/templates/application/public/libs/feather/svg/codepen.svg +1 -0
  1218. data/res/generators/templates/application/public/libs/feather/svg/codesandbox.svg +1 -0
  1219. data/res/generators/templates/application/public/libs/feather/svg/coffee.svg +1 -0
  1220. data/res/generators/templates/application/public/libs/feather/svg/columns.svg +1 -0
  1221. data/res/generators/templates/application/public/libs/feather/svg/command.svg +1 -0
  1222. data/res/generators/templates/application/public/libs/feather/svg/compass.svg +1 -0
  1223. data/res/generators/templates/application/public/libs/feather/svg/copy.svg +1 -0
  1224. data/res/generators/templates/application/public/libs/feather/svg/corner-down-left.svg +1 -0
  1225. data/res/generators/templates/application/public/libs/feather/svg/corner-down-right.svg +1 -0
  1226. data/res/generators/templates/application/public/libs/feather/svg/corner-left-down.svg +1 -0
  1227. data/res/generators/templates/application/public/libs/feather/svg/corner-left-up.svg +1 -0
  1228. data/res/generators/templates/application/public/libs/feather/svg/corner-right-down.svg +1 -0
  1229. data/res/generators/templates/application/public/libs/feather/svg/corner-right-up.svg +1 -0
  1230. data/res/generators/templates/application/public/libs/feather/svg/corner-up-left.svg +1 -0
  1231. data/res/generators/templates/application/public/libs/feather/svg/corner-up-right.svg +1 -0
  1232. data/res/generators/templates/application/public/libs/feather/svg/cpu.svg +1 -0
  1233. data/res/generators/templates/application/public/libs/feather/svg/credit-card.svg +1 -0
  1234. data/res/generators/templates/application/public/libs/feather/svg/crop.svg +1 -0
  1235. data/res/generators/templates/application/public/libs/feather/svg/crosshair.svg +1 -0
  1236. data/res/generators/templates/application/public/libs/feather/svg/database.svg +1 -0
  1237. data/res/generators/templates/application/public/libs/feather/svg/delete.svg +1 -0
  1238. data/res/generators/templates/application/public/libs/feather/svg/disc.svg +1 -0
  1239. data/res/generators/templates/application/public/libs/feather/svg/dollar-sign.svg +1 -0
  1240. data/res/generators/templates/application/public/libs/feather/svg/download-cloud.svg +1 -0
  1241. data/res/generators/templates/application/public/libs/feather/svg/download.svg +1 -0
  1242. data/res/generators/templates/application/public/libs/feather/svg/droplet.svg +1 -0
  1243. data/res/generators/templates/application/public/libs/feather/svg/edit-2.svg +1 -0
  1244. data/res/generators/templates/application/public/libs/feather/svg/edit-3.svg +1 -0
  1245. data/res/generators/templates/application/public/libs/feather/svg/edit.svg +1 -0
  1246. data/res/generators/templates/application/public/libs/feather/svg/external-link.svg +1 -0
  1247. data/res/generators/templates/application/public/libs/feather/svg/eye-off.svg +1 -0
  1248. data/res/generators/templates/application/public/libs/feather/svg/eye.svg +1 -0
  1249. data/res/generators/templates/application/public/libs/feather/svg/facebook.svg +1 -0
  1250. data/res/generators/templates/application/public/libs/feather/svg/fast-forward.svg +1 -0
  1251. data/res/generators/templates/application/public/libs/feather/svg/feather.svg +1 -0
  1252. data/res/generators/templates/application/public/libs/feather/svg/figma.svg +1 -0
  1253. data/res/generators/templates/application/public/libs/feather/svg/file-minus.svg +1 -0
  1254. data/res/generators/templates/application/public/libs/feather/svg/file-plus.svg +1 -0
  1255. data/res/generators/templates/application/public/libs/feather/svg/file-text.svg +1 -0
  1256. data/res/generators/templates/application/public/libs/feather/svg/file.svg +1 -0
  1257. data/res/generators/templates/application/public/libs/feather/svg/film.svg +1 -0
  1258. data/res/generators/templates/application/public/libs/feather/svg/filter.svg +1 -0
  1259. data/res/generators/templates/application/public/libs/feather/svg/flag.svg +1 -0
  1260. data/res/generators/templates/application/public/libs/feather/svg/folder-minus.svg +1 -0
  1261. data/res/generators/templates/application/public/libs/feather/svg/folder-plus.svg +1 -0
  1262. data/res/generators/templates/application/public/libs/feather/svg/folder.svg +1 -0
  1263. data/res/generators/templates/application/public/libs/feather/svg/framer.svg +1 -0
  1264. data/res/generators/templates/application/public/libs/feather/svg/frown.svg +1 -0
  1265. data/res/generators/templates/application/public/libs/feather/svg/gift.svg +1 -0
  1266. data/res/generators/templates/application/public/libs/feather/svg/git-branch.svg +1 -0
  1267. data/res/generators/templates/application/public/libs/feather/svg/git-commit.svg +1 -0
  1268. data/res/generators/templates/application/public/libs/feather/svg/git-merge.svg +1 -0
  1269. data/res/generators/templates/application/public/libs/feather/svg/git-pull-request.svg +1 -0
  1270. data/res/generators/templates/application/public/libs/feather/svg/github.svg +1 -0
  1271. data/res/generators/templates/application/public/libs/feather/svg/gitlab.svg +1 -0
  1272. data/res/generators/templates/application/public/libs/feather/svg/globe.svg +1 -0
  1273. data/res/generators/templates/application/public/libs/feather/svg/grid.svg +1 -0
  1274. data/res/generators/templates/application/public/libs/feather/svg/hard-drive.svg +1 -0
  1275. data/res/generators/templates/application/public/libs/feather/svg/hash.svg +1 -0
  1276. data/res/generators/templates/application/public/libs/feather/svg/headphones.svg +1 -0
  1277. data/res/generators/templates/application/public/libs/feather/svg/heart.svg +1 -0
  1278. data/res/generators/templates/application/public/libs/feather/svg/help-circle.svg +1 -0
  1279. data/res/generators/templates/application/public/libs/feather/svg/hexagon.svg +1 -0
  1280. data/res/generators/templates/application/public/libs/feather/svg/home.svg +1 -0
  1281. data/res/generators/templates/application/public/libs/feather/svg/image.svg +1 -0
  1282. data/res/generators/templates/application/public/libs/feather/svg/inbox.svg +1 -0
  1283. data/res/generators/templates/application/public/libs/feather/svg/info.svg +1 -0
  1284. data/res/generators/templates/application/public/libs/feather/svg/instagram.svg +1 -0
  1285. data/res/generators/templates/application/public/libs/feather/svg/italic.svg +1 -0
  1286. data/res/generators/templates/application/public/libs/feather/svg/key.svg +1 -0
  1287. data/res/generators/templates/application/public/libs/feather/svg/layers.svg +1 -0
  1288. data/res/generators/templates/application/public/libs/feather/svg/layout.svg +1 -0
  1289. data/res/generators/templates/application/public/libs/feather/svg/life-buoy.svg +1 -0
  1290. data/res/generators/templates/application/public/libs/feather/svg/link-2.svg +1 -0
  1291. data/res/generators/templates/application/public/libs/feather/svg/link.svg +1 -0
  1292. data/res/generators/templates/application/public/libs/feather/svg/linkedin.svg +1 -0
  1293. data/res/generators/templates/application/public/libs/feather/svg/list.svg +1 -0
  1294. data/res/generators/templates/application/public/libs/feather/svg/loader.svg +1 -0
  1295. data/res/generators/templates/application/public/libs/feather/svg/lock.svg +1 -0
  1296. data/res/generators/templates/application/public/libs/feather/svg/log-in.svg +1 -0
  1297. data/res/generators/templates/application/public/libs/feather/svg/log-out.svg +1 -0
  1298. data/res/generators/templates/application/public/libs/feather/svg/mail.svg +1 -0
  1299. data/res/generators/templates/application/public/libs/feather/svg/map-pin.svg +1 -0
  1300. data/res/generators/templates/application/public/libs/feather/svg/map.svg +1 -0
  1301. data/res/generators/templates/application/public/libs/feather/svg/maximize-2.svg +1 -0
  1302. data/res/generators/templates/application/public/libs/feather/svg/maximize.svg +1 -0
  1303. data/res/generators/templates/application/public/libs/feather/svg/meh.svg +1 -0
  1304. data/res/generators/templates/application/public/libs/feather/svg/menu.svg +1 -0
  1305. data/res/generators/templates/application/public/libs/feather/svg/message-circle.svg +1 -0
  1306. data/res/generators/templates/application/public/libs/feather/svg/message-square.svg +1 -0
  1307. data/res/generators/templates/application/public/libs/feather/svg/mic-off.svg +1 -0
  1308. data/res/generators/templates/application/public/libs/feather/svg/mic.svg +1 -0
  1309. data/res/generators/templates/application/public/libs/feather/svg/minimize-2.svg +1 -0
  1310. data/res/generators/templates/application/public/libs/feather/svg/minimize.svg +1 -0
  1311. data/res/generators/templates/application/public/libs/feather/svg/minus-circle.svg +1 -0
  1312. data/res/generators/templates/application/public/libs/feather/svg/minus-square.svg +1 -0
  1313. data/res/generators/templates/application/public/libs/feather/svg/minus.svg +1 -0
  1314. data/res/generators/templates/application/public/libs/feather/svg/monitor.svg +1 -0
  1315. data/res/generators/templates/application/public/libs/feather/svg/moon.svg +1 -0
  1316. data/res/generators/templates/application/public/libs/feather/svg/more-horizontal.svg +1 -0
  1317. data/res/generators/templates/application/public/libs/feather/svg/more-vertical.svg +1 -0
  1318. data/res/generators/templates/application/public/libs/feather/svg/mouse-pointer.svg +1 -0
  1319. data/res/generators/templates/application/public/libs/feather/svg/move.svg +1 -0
  1320. data/res/generators/templates/application/public/libs/feather/svg/music.svg +1 -0
  1321. data/res/generators/templates/application/public/libs/feather/svg/navigation-2.svg +1 -0
  1322. data/res/generators/templates/application/public/libs/feather/svg/navigation.svg +1 -0
  1323. data/res/generators/templates/application/public/libs/feather/svg/octagon.svg +1 -0
  1324. data/res/generators/templates/application/public/libs/feather/svg/package.svg +1 -0
  1325. data/res/generators/templates/application/public/libs/feather/svg/paperclip.svg +1 -0
  1326. data/res/generators/templates/application/public/libs/feather/svg/pause-circle.svg +1 -0
  1327. data/res/generators/templates/application/public/libs/feather/svg/pause.svg +1 -0
  1328. data/res/generators/templates/application/public/libs/feather/svg/pen-tool.svg +1 -0
  1329. data/res/generators/templates/application/public/libs/feather/svg/percent.svg +1 -0
  1330. data/res/generators/templates/application/public/libs/feather/svg/phone-call.svg +1 -0
  1331. data/res/generators/templates/application/public/libs/feather/svg/phone-forwarded.svg +1 -0
  1332. data/res/generators/templates/application/public/libs/feather/svg/phone-incoming.svg +1 -0
  1333. data/res/generators/templates/application/public/libs/feather/svg/phone-missed.svg +1 -0
  1334. data/res/generators/templates/application/public/libs/feather/svg/phone-off.svg +1 -0
  1335. data/res/generators/templates/application/public/libs/feather/svg/phone-outgoing.svg +1 -0
  1336. data/res/generators/templates/application/public/libs/feather/svg/phone.svg +1 -0
  1337. data/res/generators/templates/application/public/libs/feather/svg/pie-chart.svg +1 -0
  1338. data/res/generators/templates/application/public/libs/feather/svg/play-circle.svg +1 -0
  1339. data/res/generators/templates/application/public/libs/feather/svg/play.svg +1 -0
  1340. data/res/generators/templates/application/public/libs/feather/svg/plus-circle.svg +1 -0
  1341. data/res/generators/templates/application/public/libs/feather/svg/plus-square.svg +1 -0
  1342. data/res/generators/templates/application/public/libs/feather/svg/plus.svg +1 -0
  1343. data/res/generators/templates/application/public/libs/feather/svg/pocket.svg +1 -0
  1344. data/res/generators/templates/application/public/libs/feather/svg/power.svg +1 -0
  1345. data/res/generators/templates/application/public/libs/feather/svg/printer.svg +1 -0
  1346. data/res/generators/templates/application/public/libs/feather/svg/radio.svg +1 -0
  1347. data/res/generators/templates/application/public/libs/feather/svg/refresh-ccw.svg +1 -0
  1348. data/res/generators/templates/application/public/libs/feather/svg/refresh-cw.svg +1 -0
  1349. data/res/generators/templates/application/public/libs/feather/svg/repeat.svg +1 -0
  1350. data/res/generators/templates/application/public/libs/feather/svg/rewind.svg +1 -0
  1351. data/res/generators/templates/application/public/libs/feather/svg/rotate-ccw.svg +1 -0
  1352. data/res/generators/templates/application/public/libs/feather/svg/rotate-cw.svg +1 -0
  1353. data/res/generators/templates/application/public/libs/feather/svg/rss.svg +1 -0
  1354. data/res/generators/templates/application/public/libs/feather/svg/save.svg +1 -0
  1355. data/res/generators/templates/application/public/libs/feather/svg/scissors.svg +1 -0
  1356. data/res/generators/templates/application/public/libs/feather/svg/search.svg +1 -0
  1357. data/res/generators/templates/application/public/libs/feather/svg/send.svg +1 -0
  1358. data/res/generators/templates/application/public/libs/feather/svg/server.svg +1 -0
  1359. data/res/generators/templates/application/public/libs/feather/svg/settings.svg +1 -0
  1360. data/res/generators/templates/application/public/libs/feather/svg/share-2.svg +1 -0
  1361. data/res/generators/templates/application/public/libs/feather/svg/share.svg +1 -0
  1362. data/res/generators/templates/application/public/libs/feather/svg/shield-off.svg +1 -0
  1363. data/res/generators/templates/application/public/libs/feather/svg/shield.svg +1 -0
  1364. data/res/generators/templates/application/public/libs/feather/svg/shopping-bag.svg +1 -0
  1365. data/res/generators/templates/application/public/libs/feather/svg/shopping-cart.svg +1 -0
  1366. data/res/generators/templates/application/public/libs/feather/svg/shuffle.svg +1 -0
  1367. data/res/generators/templates/application/public/libs/feather/svg/sidebar.svg +1 -0
  1368. data/res/generators/templates/application/public/libs/feather/svg/skip-back.svg +1 -0
  1369. data/res/generators/templates/application/public/libs/feather/svg/skip-forward.svg +1 -0
  1370. data/res/generators/templates/application/public/libs/feather/svg/slack.svg +1 -0
  1371. data/res/generators/templates/application/public/libs/feather/svg/slash.svg +1 -0
  1372. data/res/generators/templates/application/public/libs/feather/svg/sliders.svg +1 -0
  1373. data/res/generators/templates/application/public/libs/feather/svg/smartphone.svg +1 -0
  1374. data/res/generators/templates/application/public/libs/feather/svg/smile.svg +1 -0
  1375. data/res/generators/templates/application/public/libs/feather/svg/speaker.svg +1 -0
  1376. data/res/generators/templates/application/public/libs/feather/svg/square.svg +1 -0
  1377. data/res/generators/templates/application/public/libs/feather/svg/star.svg +1 -0
  1378. data/res/generators/templates/application/public/libs/feather/svg/stop-circle.svg +1 -0
  1379. data/res/generators/templates/application/public/libs/feather/svg/sun.svg +1 -0
  1380. data/res/generators/templates/application/public/libs/feather/svg/sunrise.svg +1 -0
  1381. data/res/generators/templates/application/public/libs/feather/svg/sunset.svg +1 -0
  1382. data/res/generators/templates/application/public/libs/feather/svg/tablet.svg +1 -0
  1383. data/res/generators/templates/application/public/libs/feather/svg/tag.svg +1 -0
  1384. data/res/generators/templates/application/public/libs/feather/svg/target.svg +1 -0
  1385. data/res/generators/templates/application/public/libs/feather/svg/terminal.svg +1 -0
  1386. data/res/generators/templates/application/public/libs/feather/svg/thermometer.svg +1 -0
  1387. data/res/generators/templates/application/public/libs/feather/svg/thumbs-down.svg +1 -0
  1388. data/res/generators/templates/application/public/libs/feather/svg/thumbs-up.svg +1 -0
  1389. data/res/generators/templates/application/public/libs/feather/svg/toggle-left.svg +1 -0
  1390. data/res/generators/templates/application/public/libs/feather/svg/toggle-right.svg +1 -0
  1391. data/res/generators/templates/application/public/libs/feather/svg/tool.svg +1 -0
  1392. data/res/generators/templates/application/public/libs/feather/svg/trash-2.svg +1 -0
  1393. data/res/generators/templates/application/public/libs/feather/svg/trash.svg +1 -0
  1394. data/res/generators/templates/application/public/libs/feather/svg/trello.svg +1 -0
  1395. data/res/generators/templates/application/public/libs/feather/svg/trending-down.svg +1 -0
  1396. data/res/generators/templates/application/public/libs/feather/svg/trending-up.svg +1 -0
  1397. data/res/generators/templates/application/public/libs/feather/svg/triangle.svg +1 -0
  1398. data/res/generators/templates/application/public/libs/feather/svg/truck.svg +1 -0
  1399. data/res/generators/templates/application/public/libs/feather/svg/tv.svg +1 -0
  1400. data/res/generators/templates/application/public/libs/feather/svg/twitch.svg +1 -0
  1401. data/res/generators/templates/application/public/libs/feather/svg/twitter.svg +1 -0
  1402. data/res/generators/templates/application/public/libs/feather/svg/type.svg +1 -0
  1403. data/res/generators/templates/application/public/libs/feather/svg/umbrella.svg +1 -0
  1404. data/res/generators/templates/application/public/libs/feather/svg/underline.svg +1 -0
  1405. data/res/generators/templates/application/public/libs/feather/svg/unlock.svg +1 -0
  1406. data/res/generators/templates/application/public/libs/feather/svg/upload-cloud.svg +1 -0
  1407. data/res/generators/templates/application/public/libs/feather/svg/upload.svg +1 -0
  1408. data/res/generators/templates/application/public/libs/feather/svg/user-check.svg +1 -0
  1409. data/res/generators/templates/application/public/libs/feather/svg/user-minus.svg +1 -0
  1410. data/res/generators/templates/application/public/libs/feather/svg/user-plus.svg +1 -0
  1411. data/res/generators/templates/application/public/libs/feather/svg/user-x.svg +1 -0
  1412. data/res/generators/templates/application/public/libs/feather/svg/user.svg +1 -0
  1413. data/res/generators/templates/application/public/libs/feather/svg/users.svg +1 -0
  1414. data/res/generators/templates/application/public/libs/feather/svg/video-off.svg +1 -0
  1415. data/res/generators/templates/application/public/libs/feather/svg/video.svg +1 -0
  1416. data/res/generators/templates/application/public/libs/feather/svg/voicemail.svg +1 -0
  1417. data/res/generators/templates/application/public/libs/feather/svg/volume-1.svg +1 -0
  1418. data/res/generators/templates/application/public/libs/feather/svg/volume-2.svg +1 -0
  1419. data/res/generators/templates/application/public/libs/feather/svg/volume-x.svg +1 -0
  1420. data/res/generators/templates/application/public/libs/feather/svg/volume.svg +1 -0
  1421. data/res/generators/templates/application/public/libs/feather/svg/watch.svg +1 -0
  1422. data/res/generators/templates/application/public/libs/feather/svg/wifi-off.svg +1 -0
  1423. data/res/generators/templates/application/public/libs/feather/svg/wifi.svg +1 -0
  1424. data/res/generators/templates/application/public/libs/feather/svg/wind.svg +1 -0
  1425. data/res/generators/templates/application/public/libs/feather/svg/x-circle.svg +1 -0
  1426. data/res/generators/templates/application/public/libs/feather/svg/x-octagon.svg +1 -0
  1427. data/res/generators/templates/application/public/libs/feather/svg/x-square.svg +1 -0
  1428. data/res/generators/templates/application/public/libs/feather/svg/x.svg +1 -0
  1429. data/res/generators/templates/application/public/libs/feather/svg/youtube.svg +1 -0
  1430. data/res/generators/templates/application/public/libs/feather/svg/zap-off.svg +1 -0
  1431. data/res/generators/templates/application/public/libs/feather/svg/zap.svg +1 -0
  1432. data/res/generators/templates/application/public/libs/feather/svg/zoom-in.svg +1 -0
  1433. data/res/generators/templates/application/public/libs/feather/svg/zoom-out.svg +1 -0
  1434. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.js +10872 -0
  1435. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.min.js +2 -0
  1436. data/res/generators/templates/application/public/libs/jquery-3.5.1/jquery-3.5.1.min.map +1 -0
  1437. data/res/generators/templates/application/public/libs/popper-2.4.0/popper-2.4.0.js +1802 -0
  1438. data/res/generators/templates/application/public/libs/popper-2.4.0/popper-2.4.0.min.js +6 -0
  1439. data/res/generators/templates/application/resources/android/res/drawable/loading.png +0 -0
  1440. data/res/generators/templates/application/resources/android/res/drawable-hdpi/loading.png +0 -0
  1441. data/res/generators/templates/application/resources/android/res/drawable-ldpi/loading.png +0 -0
  1442. data/res/generators/templates/application/resources/android/res/drawable-mdpi/loading.png +0 -0
  1443. data/res/generators/templates/application/resources/android/res/drawable-xhdpi/loading.png +0 -0
  1444. data/res/generators/templates/application/resources/android/res/drawable-xxhdpi/loading.png +0 -0
  1445. data/res/generators/templates/application/resources/android/res/drawable-xxxhdpi/loading.png +0 -0
  1446. data/res/generators/templates/application/resources/android/res/xml/network_security_config.xml +7 -0
  1447. data/res/generators/templates/application/resources/ios/Default-568h@2x.png +0 -0
  1448. data/res/generators/templates/application/resources/ios/Default-667h@2x.png +0 -0
  1449. data/res/generators/templates/application/resources/ios/Default-736h@3x.png +0 -0
  1450. data/res/generators/templates/application/resources/ios/Default-812h@3x.png +0 -0
  1451. data/res/generators/templates/application/resources/ios/Default-896h@2x.png +0 -0
  1452. data/res/generators/templates/application/resources/ios/Default-896h@3x.png +0 -0
  1453. data/res/generators/templates/application/resources/ios/Default-Landscape-736h@3x.png +0 -0
  1454. data/res/generators/templates/application/resources/ios/Default-Landscape-812h@3x.png +0 -0
  1455. data/res/generators/templates/application/resources/ios/Default-Landscape-896h@2x.png +0 -0
  1456. data/res/generators/templates/application/resources/ios/Default-Landscape-896h@3x.png +0 -0
  1457. data/res/generators/templates/application/resources/ios/Default-Landscape.png +0 -0
  1458. data/res/generators/templates/application/resources/ios/Default-Landscape@2x.png +0 -0
  1459. data/res/generators/templates/application/resources/ios/Default-Portrait.png +0 -0
  1460. data/res/generators/templates/application/resources/ios/Default-Portrait@2x.png +0 -0
  1461. data/res/generators/templates/application/resources/ios/Default.png +0 -0
  1462. data/res/generators/templates/application/resources/ios/Default@2x.png +0 -0
  1463. data/res/generators/templates/application/rhoconfig.txt +25 -6
  1464. data/res/generators/templates/application/rhoconfig_rubynode.txt +139 -0
  1465. data/res/generators/templates/application/rubynodejs_build.yml +95 -0
  1466. data/res/generators/templates/extension/extensions/montana/ext/build +5 -0
  1467. data/res/generators/templates/extension/extensions/montana/ext/build.bat +1 -1
  1468. data/res/generators/templates/extension/extensions/montana/ext/platform/android/Rakefile +1 -141
  1469. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Montana.xcodeproj/project.pbxproj +4 -4
  1470. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Podfile.example +16 -0
  1471. data/res/generators/templates/extension/extensions/montana/ext/platform/iphone/Rakefile +9 -62
  1472. data/res/generators/templates/extension/extensions/montana/ext/platform/qt/Montana.pro +26 -1
  1473. data/res/generators/templates/iphone_project/Bremen8.xcodeproj/project.pbxproj +34 -55
  1474. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-568h@2x.png +0 -0
  1475. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-667h@2x.png +0 -0
  1476. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-736h@3x.png +0 -0
  1477. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-812h@3x.png +0 -0
  1478. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-896h@2x.png +0 -0
  1479. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-896h@3x.png +0 -0
  1480. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-736h@3x.png +0 -0
  1481. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-812h@3x.png +0 -0
  1482. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-896h@2x.png +0 -0
  1483. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape-896h@3x.png +0 -0
  1484. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape.png +0 -0
  1485. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png +0 -0
  1486. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Portrait.png +0 -0
  1487. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png +0 -0
  1488. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default.png +0 -0
  1489. data/res/generators/templates/iphone_project/Media.xcassets/LaunchImage.launchimage/Default@2x.png +0 -0
  1490. data/res/generators/templates/iphone_project/Rhodes/Rhodes.xcodeproj/project.pbxproj +4 -4
  1491. data/res/generators/templates/iphone_project/buildRhoBundle +2 -10
  1492. data/res/generators/templates/iphone_project/root/Entitlements.plist +1 -1
  1493. data/res/generators/templates/iphone_project/root/Info.plist +5 -3
  1494. data/res/generators/templates/iphone_project/root/rhorunner_development.entitlements +1 -1
  1495. data/res/generators/templates/iphone_project/root/rhorunner_production.entitlements +1 -1
  1496. data/res/generators/templates/model/edit.erb +10 -12
  1497. data/res/generators/templates/model/index.erb +27 -29
  1498. data/res/generators/templates/model/javascript_edit.html +18 -17
  1499. data/res/generators/templates/model/javascript_index.html +22 -21
  1500. data/res/generators/templates/model/javascript_index.js +12 -7
  1501. data/res/generators/templates/model/javascript_new.html +20 -16
  1502. data/res/generators/templates/model/javascript_show.html +30 -32
  1503. data/res/generators/templates/model/new.erb +8 -12
  1504. data/res/generators/templates/model/show.erb +22 -28
  1505. data/res/generators/templates/project/android_studio_project/app/CMakeLists.txt.erb +15 -2
  1506. data/res/generators/templates/project/android_studio_project/app/build.gradle.erb +22 -19
  1507. data/res/generators/templates/project/android_studio_project/build.gradle +3 -1
  1508. data/res/generators/templates/spec/app/SpecRunner/controller.rb +1 -1
  1509. data/res/generators/templates/spec/app/mspec.rb +1 -1
  1510. data/res/generators/templates/spec/app/spec_runner.rb +23 -4
  1511. data/res/prebuild_base_app/rhoconfig.txt +11 -8
  1512. data/rhobuild.yml.example +7 -4
  1513. data/rhodes-core.gemspec +1 -2
  1514. data/rhodes.gemspec +20 -27
  1515. data/rhomobile-debug.gemspec +0 -1
  1516. data/version +1 -1
  1517. metadata +766 -192
  1518. data/extensions/emdk3-manager/ext/platform/android/ext_native.files +0 -0
  1519. data/lib/commonAPI/mediacapture/ext/platform/android/adds/res/drawable/camera_btn.xml +0 -14
  1520. data/lib/commonAPI/mediacapture/ext/platform/android/adds/res/layout/camera_land.xml +0 -23
  1521. data/lib/commonAPI/mediacapture/ext/platform/android/adds/res/layout/camera_port.xml +0 -23
  1522. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraActivity.java +0 -156
  1523. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraEclair.java +0 -216
  1524. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraGingerbread.java +0 -122
  1525. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraPreview.java +0 -183
  1526. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraSingletonEclair.java +0 -14
  1527. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraSingletonGingerbread.java +0 -60
  1528. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/ICameraObject.java +0 -19
  1529. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/ICameraSingletonObject.java +0 -8
  1530. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMTokenRefresherService.java +0 -27
  1531. data/lib/extensions/fcm-push/ext/iphone/Firebase.h +0 -68
  1532. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h +0 -62
  1533. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h +0 -115
  1534. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h +0 -1
  1535. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsSwiftNameSupport.h +0 -13
  1536. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h +0 -1
  1537. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h +0 -1
  1538. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h +0 -389
  1539. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h +0 -1
  1540. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h +0 -485
  1541. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h +0 -15
  1542. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h +0 -10
  1543. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap +0 -10
  1544. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/FirebaseCore +0 -0
  1545. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h +0 -52
  1546. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRApp.h +0 -130
  1547. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h +0 -78
  1548. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h +0 -35
  1549. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FIROptions.h +0 -133
  1550. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h +0 -5
  1551. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCore.framework/Modules/module.modulemap +0 -7
  1552. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics +0 -0
  1553. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseCoreDiagnostics.framework/Modules/module.modulemap +0 -6
  1554. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID +0 -0
  1555. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h +0 -276
  1556. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h +0 -1
  1557. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap +0 -7
  1558. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/FirebaseMessaging +0 -0
  1559. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Headers/FIRMessaging.h +0 -508
  1560. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Headers/FirebaseMessaging.h +0 -1
  1561. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseMessaging.framework/Modules/module.modulemap +0 -8
  1562. data/lib/extensions/fcm-push/ext/iphone/Frameworks/FirebaseNanoPB.framework/FirebaseNanoPB +0 -0
  1563. data/lib/extensions/fcm-push/ext/iphone/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac +0 -0
  1564. data/lib/extensions/fcm-push/ext/iphone/Frameworks/GoogleToolboxForMac.framework/Modules/module.modulemap +0 -5
  1565. data/lib/extensions/fcm-push/ext/iphone/Frameworks/Protobuf.framework/Modules/module.modulemap +0 -5
  1566. data/lib/extensions/fcm-push/ext/iphone/Frameworks/Protobuf.framework/Protobuf +0 -0
  1567. data/lib/extensions/fcm-push/ext/iphone/Frameworks/nanopb.framework/Modules/module.modulemap +0 -5
  1568. data/lib/extensions/fcm-push/ext/iphone/Frameworks/nanopb.framework/nanopb +0 -0
  1569. data/platform/android/Rhodes/AndroidManifest.xml.erb +0 -79
  1570. data/platform/iphone/Classes/RhoWKWebView.m +0 -196
  1571. data/platform/win32/RhoSimulator/position/qtposition_geoclue.dll +0 -0
  1572. data/platform/win32/build/RhoRuntimeQt5-VS2008.nsi +0 -162
  1573. data/platform/win32/build/RhoRuntimeQt5.5.0.0_VS2012.nsi +0 -178
  1574. data/platform/win32/build/RhoRuntimeQt5.bat +0 -2
  1575. data/platform/win32/build/RhoRuntimeQt5.ico +0 -0
  1576. data/platform/win32/build/RhoRuntimeQt5.nsi +0 -165
  1577. data/res/build-tools/maven/bin/mvn.bat +0 -197
  1578. data/res/build-tools/maven/bin/mvnDebug.bat +0 -200
  1579. data/res/build-tools/maven/boot/plexus-classworlds-2.5.2.jar +0 -0
  1580. data/res/build-tools/maven/lib/aether-api-1.0.0.v20140518.jar +0 -0
  1581. data/res/build-tools/maven/lib/aether-api.license +0 -261
  1582. data/res/build-tools/maven/lib/aether-connector-basic-1.0.0.v20140518.jar +0 -0
  1583. data/res/build-tools/maven/lib/aether-connector-basic.license +0 -261
  1584. data/res/build-tools/maven/lib/aether-impl-1.0.0.v20140518.jar +0 -0
  1585. data/res/build-tools/maven/lib/aether-impl.license +0 -261
  1586. data/res/build-tools/maven/lib/aether-spi-1.0.0.v20140518.jar +0 -0
  1587. data/res/build-tools/maven/lib/aether-spi.license +0 -261
  1588. data/res/build-tools/maven/lib/aether-transport-wagon-1.0.0.v20140518.jar +0 -0
  1589. data/res/build-tools/maven/lib/aether-transport-wagon.license +0 -261
  1590. data/res/build-tools/maven/lib/aether-util-1.0.0.v20140518.jar +0 -0
  1591. data/res/build-tools/maven/lib/aether-util.license +0 -261
  1592. data/res/build-tools/maven/lib/cdi-api.license +0 -445
  1593. data/res/build-tools/maven/lib/commons-cli-1.2.jar +0 -0
  1594. data/res/build-tools/maven/lib/commons-io-2.2.jar +0 -0
  1595. data/res/build-tools/maven/lib/commons-lang-2.6.jar +0 -0
  1596. data/res/build-tools/maven/lib/guava-18.0.jar +0 -0
  1597. data/res/build-tools/maven/lib/jsoup-1.7.2.jar +0 -0
  1598. data/res/build-tools/maven/lib/jsoup.license +0 -66
  1599. data/res/build-tools/maven/lib/maven-aether-provider-3.2.5.jar +0 -0
  1600. data/res/build-tools/maven/lib/maven-aether-provider.license +0 -202
  1601. data/res/build-tools/maven/lib/maven-artifact-3.2.5.jar +0 -0
  1602. data/res/build-tools/maven/lib/maven-artifact.license +0 -202
  1603. data/res/build-tools/maven/lib/maven-compat-3.2.5.jar +0 -0
  1604. data/res/build-tools/maven/lib/maven-compat.license +0 -202
  1605. data/res/build-tools/maven/lib/maven-core-3.2.5.jar +0 -0
  1606. data/res/build-tools/maven/lib/maven-core.license +0 -202
  1607. data/res/build-tools/maven/lib/maven-embedder-3.2.5.jar +0 -0
  1608. data/res/build-tools/maven/lib/maven-embedder.license +0 -202
  1609. data/res/build-tools/maven/lib/maven-model-3.2.5.jar +0 -0
  1610. data/res/build-tools/maven/lib/maven-model-builder-3.2.5.jar +0 -0
  1611. data/res/build-tools/maven/lib/maven-model-builder.license +0 -202
  1612. data/res/build-tools/maven/lib/maven-model.license +0 -202
  1613. data/res/build-tools/maven/lib/maven-plugin-api-3.2.5.jar +0 -0
  1614. data/res/build-tools/maven/lib/maven-plugin-api.license +0 -202
  1615. data/res/build-tools/maven/lib/maven-repository-metadata-3.2.5.jar +0 -0
  1616. data/res/build-tools/maven/lib/maven-repository-metadata.license +0 -202
  1617. data/res/build-tools/maven/lib/maven-settings-3.2.5.jar +0 -0
  1618. data/res/build-tools/maven/lib/maven-settings-builder-3.2.5.jar +0 -0
  1619. data/res/build-tools/maven/lib/maven-settings-builder.license +0 -202
  1620. data/res/build-tools/maven/lib/maven-settings.license +0 -202
  1621. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.0.M1.jar +0 -0
  1622. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.0.M1.jar +0 -0
  1623. data/res/build-tools/maven/lib/plexus-cipher.license +0 -445
  1624. data/res/build-tools/maven/lib/plexus-component-annotations-1.5.5.jar +0 -0
  1625. data/res/build-tools/maven/lib/plexus-interpolation-1.21.jar +0 -0
  1626. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.3.jar +0 -0
  1627. data/res/build-tools/maven/lib/plexus-sec-dispatcher.license +0 -445
  1628. data/res/build-tools/maven/lib/plexus-utils-3.0.20.jar +0 -0
  1629. data/res/build-tools/maven/lib/sisu-guice-3.2.3-no_aop.jar +0 -0
  1630. data/res/build-tools/maven/lib/slf4j-api-1.7.5.jar +0 -0
  1631. data/res/build-tools/maven/lib/slf4j-simple-1.7.5.jar +0 -0
  1632. data/res/build-tools/maven/lib/slf4j-simple.license +0 -190
  1633. data/res/build-tools/maven/lib/wagon-file-2.8.jar +0 -0
  1634. data/res/build-tools/maven/lib/wagon-file.license +0 -202
  1635. data/res/build-tools/maven/lib/wagon-http-2.8-shaded.jar +0 -0
  1636. data/res/build-tools/maven/lib/wagon-http-shared-2.8.jar +0 -0
  1637. data/res/build-tools/maven/lib/wagon-http-shared.license +0 -202
  1638. data/res/build-tools/maven/lib/wagon-http.license +0 -202
  1639. data/res/build-tools/maven/lib/wagon-provider-api-2.8.jar +0 -0
  1640. data/res/build-tools/maven/lib/wagon-provider-api.license +0 -202
  1641. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css +0 -587
  1642. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +0 -1
  1643. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +0 -6
  1644. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +0 -1
  1645. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css +0 -6757
  1646. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css.map +0 -1
  1647. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css +0 -6
  1648. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css.map +0 -1
  1649. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  1650. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +0 -288
  1651. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  1652. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  1653. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  1654. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.js +0 -2377
  1655. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.min.js +0 -7
  1656. data/res/generators/templates/application/public/bootstrap-3.3.7/js/npm.js +0 -13
  1657. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.js +0 -4
  1658. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.map +0 -1
  1659. data/res/generators/templates/application/public/jquery/jquery-3.2.1.min.js +0 -4
@@ -1,406 +1,384 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
- <html>
3
- <head>
4
- <meta http-equiv="content-type"
5
- content="text/html; charset=ISO-8859-1">
6
- <title>CDDL ver. 1.0</title>
7
- <meta name="author" content="Cliff Allen">
8
- </head>
9
- <body>
10
1
  COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
11
- 1. <br>
12
- <br>
13
- Definitions.
14
- <br>
15
- <br>
16
- 1.1. <span style="font-style: italic;">Contributor</span> means each
17
- individual or entity that creates or
18
- contributes to the creation of Modifications.
19
- <br>
20
- <br>
21
- 1.2. <span style="font-style: italic;">Contributor Version</span>
22
- means the combination of the Original
23
- Software, prior Modifications used by a Contributor (if any), and the
24
- Modifications made by that particular Contributor.
25
- <br>
26
- <br>
27
- 1.3. <span style="font-style: italic;">Covered Software</span> means
28
- (a) the Original Software, or (b)
29
- Modifications, or (c) the combination of files containing Original
30
- Software with files containing Modifications, in each case including
31
- portions thereof.
32
- <br>
33
- <br>
34
- 1.4. <span style="font-style: italic;">Executable</span> means the
35
- Covered Software in any form other than
36
- Source Code.
37
- <br>
38
- <br>
39
- 1.5. <span style="font-style: italic;">Initial Developer</span> means
40
- the individual or entity that first makes
41
- Original Software available under this License.
42
- <br>
43
- <br>
44
- 1.6. <span style="font-style: italic;">Larger Work</span> means a work
45
- which combines Covered Software or
46
- portions thereof with code not governed by the terms of this License.
47
- <br>
48
- <br>
49
- 1.7. <span style="font-style: italic;">License</span> means this
50
- document.
51
- <br>
52
- <br>
53
- 1.8. <span style="font-style: italic;">Licensable</span> means having
54
- the right to grant, to the maximum extent
55
- possible, whether at the time of the initial grant or subsequently
56
- acquired, any and all of the rights conveyed herein.
57
- <br>
58
- <br>
59
- 1.9. <span style="font-style: italic;">Modifications</span> means the
60
- Source Code and Executable form of any of
61
- the following:
62
- A. Any file that results from an addition to, deletion from or
63
- modification of the contents of a file containing Original Software or
64
- previous Modifications;
65
- B. Any new file that contains any part of the Original Software or
66
- previous Modification; or
67
- C. Any new file that is contributed or otherwise made available under
68
- the terms of this License.
69
- <br>
70
- <br>
71
- 1.10. <span style="font-style: italic;">Original Software</span> means
72
- the Source Code and Executable form of
73
- computer software code that is originally released under this License.
74
- <br>
75
- <br>
76
- 1.11. <span style="font-style: italic;">Patent Claims</span> means any
77
- patent claim(s), now owned or hereafter
78
- acquired, including without limitation, method, process, and apparatus
79
- claims, in any patent Licensable by grantor.
80
- <br>
81
- <br>
82
- 1.12. <span style="font-style: italic;">Source Code</span> means (a)
83
- the common form of computer software code
84
- in which modifications are made and (b) associated documentation
85
- included in or with such code.
86
- <br>
87
- <br>
88
- 1.13. <span style="font-style: italic;">You (or Your)</span> means an
89
- individual or a legal entity exercising
90
- rights under, and complying with all of the terms of, this License. For
91
- legal entities, You includes any entity which controls, is controlled
92
- by, or is under common control with You. For purposes of this
93
- definition, control means (a)&nbsp;the power, direct or indirect, to
94
- cause
95
- the direction or management of such entity, whether by contract or
96
- otherwise, or (b)&nbsp;ownership of more than fifty percent (50%) of
97
- the
98
- outstanding shares or beneficial ownership of such entity.
99
- <br>
100
- <br>
101
- 2. License Grants.<br>
102
- <br>
103
- &nbsp;2.1. The Initial Developer Grant.
104
- Conditioned upon Your compliance with Section 3.1 below and subject to
105
- third party intellectual property claims, the Initial Developer hereby
106
- grants You a world-wide, royalty-free, non-exclusive license:
107
- <br>
108
- <br>
109
- (a) under intellectual property rights (other than patent or trademark)
110
- Licensable by Initial Developer, to use, reproduce, modify, display,
111
- perform, sublicense and distribute the Original Software (or portions
112
- thereof), with or without Modifications, and/or as part of a Larger
113
- Work; and
114
- <br>
115
- <br>
116
- (b) under Patent Claims infringed by the making, using or selling of
117
- Original Software, to make, have made, use, practice, sell, and offer
118
- for sale, and/or otherwise dispose of the Original Software (or
119
- portions thereof);<br>
120
- <br>
121
- &nbsp;(c) The licenses granted in Sections&nbsp;2.1(a) and (b) are
122
- effective on
123
- the date Initial Developer first distributes or otherwise makes the
124
- Original Software available to a third party under the terms of this
125
- License;<br>
126
- <br>
127
- &nbsp;(d) Notwithstanding Section&nbsp;2.1(b) above, no patent license
128
- is granted:
129
- (1)&nbsp;for code that You delete from the Original Software, or
130
- (2)&nbsp;for
131
- infringements caused by: (i)&nbsp;the modification of the Original
132
- Software,
133
- or (ii)&nbsp;the combination of the Original Software with other
134
- software or
135
- devices.
136
- <br>
137
- <br>
138
- 2.2. Contributor Grant.
139
- Conditioned upon Your compliance with Section 3.1 below and subject to
140
- third party intellectual property claims,
141
- each Contributor hereby grants You a world-wide, royalty-free,
142
- non-exclusive license:
143
- <br>
144
- <br>
145
- (a) under intellectual property rights (other than patent or trademark)
146
- Licensable by Contributor to use, reproduce, modify, display, perform,
147
- sublicense and distribute the Modifications created by such Contributor
148
- (or portions thereof), either on an unmodified basis, with other
149
- Modifications, as Covered Software and/or as part of a Larger Work; and
150
- <br>
151
- <br>
152
- (b) under Patent Claims infringed by the making, using, or selling of
153
- Modifications made by that Contributor either alone and/or in
154
- combination with its Contributor Version (or portions of such
155
- combination), to make, use, sell, offer for sale, have made, and/or
156
- otherwise dispose of: (1)&nbsp;Modifications made by that Contributor
157
- (or
158
- portions thereof); and (2)&nbsp;the combination of Modifications made
159
- by
160
- that Contributor with its Contributor Version (or portions of such
161
- combination).
162
- <br>
163
- <br>
164
- (c) The licenses granted in Sections&nbsp;2.2(a) and 2.2(b) are
165
- effective on
166
- the date Contributor first distributes or otherwise makes the
167
- Modifications available to a third party.<br>
168
- <br>
169
- (d) Notwithstanding Section&nbsp;2.2(b) above, no patent license is
170
- granted:
171
- (1)&nbsp;for any code that Contributor has deleted from the Contributor
172
- Version; (2)&nbsp;for infringements caused by: (i)&nbsp;third party
173
- modifications
174
- of Contributor Version, or (ii)&nbsp;the combination of Modifications
175
- made
176
- by that Contributor with other software (except as part of the
177
- Contributor Version) or other devices; or (3)&nbsp;under Patent Claims
178
- infringed by Covered Software in the absence of Modifications made by
179
- that Contributor.
180
- <br>
181
- <br>
182
- 3. Distribution Obligations.
183
- <br>
184
- <br>
185
- 3.1. Availability of Source Code.
186
- Any Covered Software that You distribute or otherwise make available in
187
- Executable form must also be made available in Source Code form and
188
- that Source Code form must be distributed only under the terms of this
189
- License. You must include a copy of this License with every copy of the
190
- Source Code form of the Covered Software You distribute or otherwise
191
- make available. You must inform recipients of any such Covered Software
192
- in Executable form as to how they can obtain such Covered Software in
193
- Source Code form in a reasonable manner on or through a medium
194
- customarily used for software exchange.
195
- <br>
196
- <br>
197
- 3.2. Modifications.
198
- The Modifications that You create or to which You contribute are
199
- governed by the terms of this License. You represent that You believe
200
- Your Modifications are Your original creation(s) and/or You have
201
- sufficient rights to grant the rights conveyed by this License.
202
- <br>
203
- <br>
204
- 3.3. Required Notices.
205
- You must include a notice in each of Your Modifications that identifies
206
- You as the Contributor of the Modification. You may not remove or alter
207
- any copyright, patent or trademark notices contained within the Covered
208
- Software, or any notices of licensing or any descriptive text giving
209
- attribution to any Contributor or the Initial Developer.
210
- <br>
211
- <br>
212
- 3.4. Application of Additional Terms.
213
- You may not offer or impose any terms on any Covered Software in Source
214
- Code form that alters or restricts the applicable version of this
215
- License or the recipients rights hereunder. You may choose to offer,
216
- and to charge a fee for, warranty, support, indemnity or liability
217
- obligations to one or more recipients of Covered Software. However, you
218
- may do so only on Your own behalf, and not on behalf of the Initial
219
- Developer or any Contributor. You must make it absolutely clear that
220
- any such warranty, support, indemnity or liability obligation is
221
- offered by You alone, and You hereby agree to indemnify the Initial
222
- Developer and every Contributor for any liability incurred by the
223
- Initial Developer or such Contributor as a result of warranty, support,
224
- indemnity or liability terms You offer.<br>
225
- <br>
226
- 3.5. Distribution of Executable Versions.
227
- You may distribute the Executable form of the Covered Software under
228
- the terms of this License or under the terms of a license of Your
229
- choice, which may contain terms different from this License, provided
230
- that You are in compliance with the terms of this License and that the
231
- license for the Executable form
232
- does not attempt to limit or alter the recipients rights in the Source
233
- Code form from the rights set forth in this License. If You distribute
234
- the Covered Software in Executable form under a different license, You
235
- must make it absolutely clear that any terms which differ from this
236
- License are offered by You alone, not by the Initial Developer or
237
- Contributor. You hereby agree to indemnify the Initial Developer and
238
- every Contributor for any liability incurred by the Initial Developer
239
- or such Contributor as a result of any such terms You offer.
240
- <br>
241
- <br>
242
- 3.6. Larger Works.
243
- You may create a Larger Work by combining Covered Software with other
244
- code not governed by the terms of this License and distribute the
245
- Larger Work as a single product. In such a case, You must make sure the
246
- requirements of this License are fulfilled for the Covered Software.
247
- <br>
248
- <br>
249
- 4. Versions of the License.
250
- <br>
251
- <br>
252
- 4.1. New Versions.
253
- Sun Microsystems, Inc. is the initial license steward and may publish
254
- revised and/or new versions of this License from time to time. Each
255
- version will be given a distinguishing version number. Except as
256
- provided in Section 4.3, no one other than the license steward has the
257
- right to modify this License.
258
- <br>
259
- <br>
260
- 4.2. Effect of New Versions.
261
- You may always continue to use, distribute or otherwise make the
262
- Covered Software available under the terms of the version of the
263
- License under which You originally received the Covered Software. If
264
- the Initial Developer includes a notice in the Original Software
265
- prohibiting it from being distributed or otherwise made available under
266
- any subsequent version of the License, You must distribute and make the
267
- Covered Software available under the terms of the version of the
268
- License under which You originally received the Covered Software.
269
- Otherwise, You may also choose to use, distribute or otherwise make the
270
- Covered Software available under the terms of any subsequent version of
271
- the License published by the license steward.
272
- <br>
273
- <br>
274
- 4.3. Modified Versions.
275
- When You are an Initial Developer and You want to create a new license
276
- for Your Original Software, You may create and use a modified version
277
- of this License if You: (a)&nbsp;rename the license and remove any
278
- references to the name of the license steward (except to note that the
279
- license differs from this License); and (b)&nbsp;otherwise make it
280
- clear
281
- that the license contains terms which differ from this License.
282
- <br>
283
- <br>
284
- 5. DISCLAIMER OF WARRANTY.
285
- COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS,
286
- WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
287
- WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF
288
- DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
289
- THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
290
- SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN
291
- ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR)
292
- ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS
293
- DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.
294
- NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER
295
- THIS DISCLAIMER.
296
- <br>
297
- <br>
298
- 6. TERMINATION.
299
- <br>
300
- <br>
301
- 6.1. This License and the rights granted hereunder will terminate
302
- automatically if You fail to comply with terms herein and fail to cure
303
- such breach within 30 days of becoming aware of the breach. Provisions
304
- which, by their nature, must remain in effect beyond the termination of
305
- this License shall survive.
306
- <br>
307
- <br>
308
- 6.2. If You assert a patent infringement claim (excluding declaratory
309
- judgment actions) against Initial Developer or a Contributor (the
310
- Initial Developer or Contributor against whom You assert such claim is
311
- referred to as Participant) alleging that the Participant Software
312
- (meaning the Contributor Version where the Participant is a Contributor
313
- or the Original Software where the Participant is the Initial
314
- Developer) directly or indirectly infringes any patent, then any and
315
- all rights granted directly or indirectly to You by such Participant,
316
- the Initial Developer (if the Initial Developer is not the Participant)
317
- and all Contributors under
318
- Sections&nbsp;2.1 and/or 2.2 of this License shall, upon 60 days notice
319
- from
320
- Participant terminate prospectively and automatically at the expiration
321
- of such 60 day notice period, unless if within such 60 day period You
322
- withdraw Your claim with respect to the Participant Software against
323
- such Participant either unilaterally or pursuant to a written agreement
324
- with Participant.
325
- <br>
326
- <br>
327
- 6.3. In the event of termination under Sections&nbsp;6.1 or 6.2 above,
328
- all
329
- end user licenses that have been validly granted by You or any
330
- distributor hereunder prior to termination (excluding licenses granted
331
- to You by any distributor) shall survive termination.
332
- <br>
333
- <br>
334
- 7. LIMITATION OF LIABILITY.
335
- UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
336
- (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
337
- DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED
338
- SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY
339
- PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
340
- OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST
341
- PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
342
- MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF
343
- SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.
344
- THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR
345
- PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO THE EXTENT
346
- APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT
347
- ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL
348
- DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
349
- <br>
350
- <br>
351
- 8. U.S. GOVERNMENT END USERS.
352
- The Covered Software is a commercial item, as that term is defined in
353
- 48&nbsp;C.F.R.&nbsp;2.101 (Oct. 1995), consisting of commercial
354
- computer software
355
- (as that term is defined at 48 C.F.R. &nbsp;252.227-7014(a)(1)) and
356
- commercial computer software documentation as such terms are used in
357
- 48&nbsp;C.F.R.&nbsp;12.212 (Sept. 1995). Consistent with 48 C.F.R.
358
- 12.212 and 48
359
- C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government
360
- End Users acquire Covered Software with only those rights set forth
361
- herein. This U.S. Government Rights clause is in lieu of, and
362
- supersedes, any other FAR, DFAR, or other clause or provision that
363
- addresses Government rights in computer software under this License.
364
- <br>
365
- <br>
366
- 9. MISCELLANEOUS.
367
- This License represents the complete agreement concerning subject
368
- matter hereof. If any provision of this License is held to be
369
- unenforceable, such provision shall be reformed only to the extent
370
- necessary to make it enforceable. This License shall be governed by the
371
- law of the jurisdiction specified in a notice contained within the
372
- Original Software (except to the extent applicable law, if any,
373
- provides otherwise), excluding such jurisdictions conflict-of-law
374
- provisions. Any litigation relating to this License shall be subject to
375
- the jurisdiction of the courts located in the jurisdiction and venue
376
- specified in a notice contained within the Original Software, with the
377
- losing party responsible for costs, including, without limitation,
378
- court costs and reasonable attorneys fees and expenses. The application
379
- of the United Nations Convention on Contracts for the International
380
- Sale of Goods is expressly excluded. Any law or regulation which
381
- provides that the language of a contract shall be construed against the
382
- drafter shall not apply to this License. You agree that You alone are
383
- responsible for compliance with the United States export administration
384
- regulations (and the export control laws and regulation of any other
385
- countries) when You use, distribute or otherwise make available any
386
- Covered Software. <br>
387
- <br>
388
- 10. RESPONSIBILITY FOR CLAIMS.
389
- As between Initial Developer and the Contributors, each party is
390
- responsible for claims and damages arising, directly or indirectly, out
391
- of its utilization of rights under this License and You agree to work
392
- with Initial Developer and Contributors to distribute such
393
- responsibility on an equitable basis. Nothing herein is intended or
394
- shall be deemed to constitute any admission of liability.
395
- <br>
396
- <br>
397
- NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION
398
- LICENSE (CDDL)
399
- The code released under the CDDL shall be governed by the
400
- laws of the State of California (excluding conflict-of-law provisions).
401
- Any litigation relating to this License shall be subject to the
402
- jurisdiction of the Federal Courts of the Northern District of
403
- California and the state courts of the State of California, with venue
404
- lying in Santa Clara County, California.
405
- </body>
406
- </html>
2
+
3
+
4
+ 1. Definitions.
5
+
6
+ 1.1. "Contributor" means each individual or entity that
7
+ creates or contributes to the creation of Modifications.
8
+
9
+ 1.2. "Contributor Version" means the combination of the
10
+ Original Software, prior Modifications used by a
11
+ Contributor (if any), and the Modifications made by that
12
+ particular Contributor.
13
+
14
+ 1.3. "Covered Software" means (a) the Original Software, or
15
+ (b) Modifications, or (c) the combination of files
16
+ containing Original Software with files containing
17
+ Modifications, in each case including portions thereof.
18
+
19
+ 1.4. "Executable" means the Covered Software in any form
20
+ other than Source Code.
21
+
22
+ 1.5. "Initial Developer" means the individual or entity
23
+ that first makes Original Software available under this
24
+ License.
25
+
26
+ 1.6. "Larger Work" means a work which combines Covered
27
+ Software or portions thereof with code not governed by the
28
+ terms of this License.
29
+
30
+ 1.7. "License" means this document.
31
+
32
+ 1.8. "Licensable" means having the right to grant, to the
33
+ maximum extent possible, whether at the time of the initial
34
+ grant or subsequently acquired, any and all of the rights
35
+ conveyed herein.
36
+
37
+ 1.9. "Modifications" means the Source Code and Executable
38
+ form of any of the following:
39
+
40
+ A. Any file that results from an addition to,
41
+ deletion from or modification of the contents of a
42
+ file containing Original Software or previous
43
+ Modifications;
44
+
45
+ B. Any new file that contains any part of the
46
+ Original Software or previous Modification; or
47
+
48
+ C. Any new file that is contributed or otherwise made
49
+ available under the terms of this License.
50
+
51
+ 1.10. "Original Software" means the Source Code and
52
+ Executable form of computer software code that is
53
+ originally released under this License.
54
+
55
+ 1.11. "Patent Claims" means any patent claim(s), now owned
56
+ or hereafter acquired, including without limitation,
57
+ method, process, and apparatus claims, in any patent
58
+ Licensable by grantor.
59
+
60
+ 1.12. "Source Code" means (a) the common form of computer
61
+ software code in which modifications are made and (b)
62
+ associated documentation included in or with such code.
63
+
64
+ 1.13. "You" (or "Your") means an individual or a legal
65
+ entity exercising rights under, and complying with all of
66
+ the terms of, this License. For legal entities, "You"
67
+ includes any entity which controls, is controlled by, or is
68
+ under common control with You. For purposes of this
69
+ definition, "control" means (a) the power, direct or
70
+ indirect, to cause the direction or management of such
71
+ entity, whether by contract or otherwise, or (b) ownership
72
+ of more than fifty percent (50%) of the outstanding shares
73
+ or beneficial ownership of such entity.
74
+
75
+ 2. License Grants.
76
+
77
+ 2.1. The Initial Developer Grant.
78
+
79
+ Conditioned upon Your compliance with Section 3.1 below and
80
+ subject to third party intellectual property claims, the
81
+ Initial Developer hereby grants You a world-wide,
82
+ royalty-free, non-exclusive license:
83
+
84
+ (a) under intellectual property rights (other than
85
+ patent or trademark) Licensable by Initial Developer,
86
+ to use, reproduce, modify, display, perform,
87
+ sublicense and distribute the Original Software (or
88
+ portions thereof), with or without Modifications,
89
+ and/or as part of a Larger Work; and
90
+
91
+ (b) under Patent Claims infringed by the making,
92
+ using or selling of Original Software, to make, have
93
+ made, use, practice, sell, and offer for sale, and/or
94
+ otherwise dispose of the Original Software (or
95
+ portions thereof).
96
+
97
+ (c) The licenses granted in Sections 2.1(a) and (b)
98
+ are effective on the date Initial Developer first
99
+ distributes or otherwise makes the Original Software
100
+ available to a third party under the terms of this
101
+ License.
102
+
103
+ (d) Notwithstanding Section 2.1(b) above, no patent
104
+ license is granted: (1) for code that You delete from
105
+ the Original Software, or (2) for infringements
106
+ caused by: (i) the modification of the Original
107
+ Software, or (ii) the combination of the Original
108
+ Software with other software or devices.
109
+
110
+ 2.2. Contributor Grant.
111
+
112
+ Conditioned upon Your compliance with Section 3.1 below and
113
+ subject to third party intellectual property claims, each
114
+ Contributor hereby grants You a world-wide, royalty-free,
115
+ non-exclusive license:
116
+
117
+ (a) under intellectual property rights (other than
118
+ patent or trademark) Licensable by Contributor to
119
+ use, reproduce, modify, display, perform, sublicense
120
+ and distribute the Modifications created by such
121
+ Contributor (or portions thereof), either on an
122
+ unmodified basis, with other Modifications, as
123
+ Covered Software and/or as part of a Larger Work; and
124
+
125
+
126
+ (b) under Patent Claims infringed by the making,
127
+ using, or selling of Modifications made by that
128
+ Contributor either alone and/or in combination with
129
+ its Contributor Version (or portions of such
130
+ combination), to make, use, sell, offer for sale,
131
+ have made, and/or otherwise dispose of: (1)
132
+ Modifications made by that Contributor (or portions
133
+ thereof); and (2) the combination of Modifications
134
+ made by that Contributor with its Contributor Version
135
+ (or portions of such combination).
136
+
137
+ (c) The licenses granted in Sections 2.2(a) and
138
+ 2.2(b) are effective on the date Contributor first
139
+ distributes or otherwise makes the Modifications
140
+ available to a third party.
141
+
142
+ (d) Notwithstanding Section 2.2(b) above, no patent
143
+ license is granted: (1) for any code that Contributor
144
+ has deleted from the Contributor Version; (2) for
145
+ infringements caused by: (i) third party
146
+ modifications of Contributor Version, or (ii) the
147
+ combination of Modifications made by that Contributor
148
+ with other software (except as part of the
149
+ Contributor Version) or other devices; or (3) under
150
+ Patent Claims infringed by Covered Software in the
151
+ absence of Modifications made by that Contributor.
152
+
153
+ 3. Distribution Obligations.
154
+
155
+ 3.1. Availability of Source Code.
156
+
157
+ Any Covered Software that You distribute or otherwise make
158
+ available in Executable form must also be made available in
159
+ Source Code form and that Source Code form must be
160
+ distributed only under the terms of this License. You must
161
+ include a copy of this License with every copy of the
162
+ Source Code form of the Covered Software You distribute or
163
+ otherwise make available. You must inform recipients of any
164
+ such Covered Software in Executable form as to how they can
165
+ obtain such Covered Software in Source Code form in a
166
+ reasonable manner on or through a medium customarily used
167
+ for software exchange.
168
+
169
+ 3.2. Modifications.
170
+
171
+ The Modifications that You create or to which You
172
+ contribute are governed by the terms of this License. You
173
+ represent that You believe Your Modifications are Your
174
+ original creation(s) and/or You have sufficient rights to
175
+ grant the rights conveyed by this License.
176
+
177
+ 3.3. Required Notices.
178
+
179
+ You must include a notice in each of Your Modifications
180
+ that identifies You as the Contributor of the Modification.
181
+ You may not remove or alter any copyright, patent or
182
+ trademark notices contained within the Covered Software, or
183
+ any notices of licensing or any descriptive text giving
184
+ attribution to any Contributor or the Initial Developer.
185
+
186
+ 3.4. Application of Additional Terms.
187
+
188
+ You may not offer or impose any terms on any Covered
189
+ Software in Source Code form that alters or restricts the
190
+ applicable version of this License or the recipients"
191
+ rights hereunder. You may choose to offer, and to charge a
192
+ fee for, warranty, support, indemnity or liability
193
+ obligations to one or more recipients of Covered Software.
194
+ However, you may do so only on Your own behalf, and not on
195
+ behalf of the Initial Developer or any Contributor. You
196
+ must make it absolutely clear that any such warranty,
197
+ support, indemnity or liability obligation is offered by
198
+ You alone, and You hereby agree to indemnify the Initial
199
+ Developer and every Contributor for any liability incurred
200
+ by the Initial Developer or such Contributor as a result of
201
+ warranty, support, indemnity or liability terms You offer.
202
+
203
+
204
+ 3.5. Distribution of Executable Versions.
205
+
206
+ You may distribute the Executable form of the Covered
207
+ Software under the terms of this License or under the terms
208
+ of a license of Your choice, which may contain terms
209
+ different from this License, provided that You are in
210
+ compliance with the terms of this License and that the
211
+ license for the Executable form does not attempt to limit
212
+ or alter the recipient"s rights in the Source Code form
213
+ from the rights set forth in this License. If You
214
+ distribute the Covered Software in Executable form under a
215
+ different license, You must make it absolutely clear that
216
+ any terms which differ from this License are offered by You
217
+ alone, not by the Initial Developer or Contributor. You
218
+ hereby agree to indemnify the Initial Developer and every
219
+ Contributor for any liability incurred by the Initial
220
+ Developer or such Contributor as a result of any such terms
221
+ You offer.
222
+
223
+ 3.6. Larger Works.
224
+
225
+ You may create a Larger Work by combining Covered Software
226
+ with other code not governed by the terms of this License
227
+ and distribute the Larger Work as a single product. In such
228
+ a case, You must make sure the requirements of this License
229
+ are fulfilled for the Covered Software.
230
+
231
+ 4. Versions of the License.
232
+
233
+ 4.1. New Versions.
234
+
235
+ Sun Microsystems, Inc. is the initial license steward and
236
+ may publish revised and/or new versions of this License
237
+ from time to time. Each version will be given a
238
+ distinguishing version number. Except as provided in
239
+ Section 4.3, no one other than the license steward has the
240
+ right to modify this License.
241
+
242
+ 4.2. Effect of New Versions.
243
+
244
+ You may always continue to use, distribute or otherwise
245
+ make the Covered Software available under the terms of the
246
+ version of the License under which You originally received
247
+ the Covered Software. If the Initial Developer includes a
248
+ notice in the Original Software prohibiting it from being
249
+ distributed or otherwise made available under any
250
+ subsequent version of the License, You must distribute and
251
+ make the Covered Software available under the terms of the
252
+ version of the License under which You originally received
253
+ the Covered Software. Otherwise, You may also choose to
254
+ use, distribute or otherwise make the Covered Software
255
+ available under the terms of any subsequent version of the
256
+ License published by the license steward.
257
+
258
+ 4.3. Modified Versions.
259
+
260
+ When You are an Initial Developer and You want to create a
261
+ new license for Your Original Software, You may create and
262
+ use a modified version of this License if You: (a) rename
263
+ the license and remove any references to the name of the
264
+ license steward (except to note that the license differs
265
+ from this License); and (b) otherwise make it clear that
266
+ the license contains terms which differ from this License.
267
+
268
+
269
+ 5. DISCLAIMER OF WARRANTY.
270
+
271
+ COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS"
272
+ BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
273
+ INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED
274
+ SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR
275
+ PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND
276
+ PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
277
+ COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE
278
+ INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
279
+ ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
280
+ WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
281
+ ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
282
+ DISCLAIMER.
283
+
284
+ 6. TERMINATION.
285
+
286
+ 6.1. This License and the rights granted hereunder will
287
+ terminate automatically if You fail to comply with terms
288
+ herein and fail to cure such breach within 30 days of
289
+ becoming aware of the breach. Provisions which, by their
290
+ nature, must remain in effect beyond the termination of
291
+ this License shall survive.
292
+
293
+ 6.2. If You assert a patent infringement claim (excluding
294
+ declaratory judgment actions) against Initial Developer or
295
+ a Contributor (the Initial Developer or Contributor against
296
+ whom You assert such claim is referred to as "Participant")
297
+ alleging that the Participant Software (meaning the
298
+ Contributor Version where the Participant is a Contributor
299
+ or the Original Software where the Participant is the
300
+ Initial Developer) directly or indirectly infringes any
301
+ patent, then any and all rights granted directly or
302
+ indirectly to You by such Participant, the Initial
303
+ Developer (if the Initial Developer is not the Participant)
304
+ and all Contributors under Sections 2.1 and/or 2.2 of this
305
+ License shall, upon 60 days notice from Participant
306
+ terminate prospectively and automatically at the expiration
307
+ of such 60 day notice period, unless if within such 60 day
308
+ period You withdraw Your claim with respect to the
309
+ Participant Software against such Participant either
310
+ unilaterally or pursuant to a written agreement with
311
+ Participant.
312
+
313
+ 6.3. In the event of termination under Sections 6.1 or 6.2
314
+ above, all end user licenses that have been validly granted
315
+ by You or any distributor hereunder prior to termination
316
+ (excluding licenses granted to You by any distributor)
317
+ shall survive termination.
318
+
319
+ 7. LIMITATION OF LIABILITY.
320
+
321
+ UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
322
+ (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
323
+ INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
324
+ COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE
325
+ LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
326
+ CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
327
+ LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK
328
+ STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
329
+ COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
330
+ INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
331
+ LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
332
+ INJURY RESULTING FROM SUCH PARTY"S NEGLIGENCE TO THE EXTENT
333
+ APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO
334
+ NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR
335
+ CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT
336
+ APPLY TO YOU.
337
+
338
+ 8. U.S. GOVERNMENT END USERS.
339
+
340
+ The Covered Software is a "commercial item," as that term is
341
+ defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial
342
+ computer software" (as that term is defined at 48 C.F.R. "
343
+ 252.227-7014(a)(1)) and "commercial computer software
344
+ documentation" as such terms are used in 48 C.F.R. 12.212 (Sept.
345
+ 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1
346
+ through 227.7202-4 (June 1995), all U.S. Government End Users
347
+ acquire Covered Software with only those rights set forth herein.
348
+ This U.S. Government Rights clause is in lieu of, and supersedes,
349
+ any other FAR, DFAR, or other clause or provision that addresses
350
+ Government rights in computer software under this License.
351
+
352
+ 9. MISCELLANEOUS.
353
+
354
+ This License represents the complete agreement concerning subject
355
+ matter hereof. If any provision of this License is held to be
356
+ unenforceable, such provision shall be reformed only to the
357
+ extent necessary to make it enforceable. This License shall be
358
+ governed by the law of the jurisdiction specified in a notice
359
+ contained within the Original Software (except to the extent
360
+ applicable law, if any, provides otherwise), excluding such
361
+ jurisdiction"s conflict-of-law provisions. Any litigation
362
+ relating to this License shall be subject to the jurisdiction of
363
+ the courts located in the jurisdiction and venue specified in a
364
+ notice contained within the Original Software, with the losing
365
+ party responsible for costs, including, without limitation, court
366
+ costs and reasonable attorneys" fees and expenses. The
367
+ application of the United Nations Convention on Contracts for the
368
+ International Sale of Goods is expressly excluded. Any law or
369
+ regulation which provides that the language of a contract shall
370
+ be construed against the drafter shall not apply to this License.
371
+ You agree that You alone are responsible for compliance with the
372
+ United States export administration regulations (and the export
373
+ control laws and regulation of any other countries) when You use,
374
+ distribute or otherwise make available any Covered Software.
375
+
376
+ 10. RESPONSIBILITY FOR CLAIMS.
377
+
378
+ As between Initial Developer and the Contributors, each party is
379
+ responsible for claims and damages arising, directly or
380
+ indirectly, out of its utilization of rights under this License
381
+ and You agree to work with Initial Developer and Contributors to
382
+ distribute such responsibility on an equitable basis. Nothing
383
+ herein is intended or shall be deemed to constitute any admission
384
+ of liability.