rhodes 6.2.0 → 7.1.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (553) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +14 -10
  3. data/appveyor.yml +1 -1
  4. data/extensions/emdk3-manager/ext/platform/android/Rakefile +2 -0
  5. data/extensions/rhoconnect-push/ext/rhoconnect-push/platform/android/Rakefile +18 -1
  6. data/extensions/rhoelementsext/ext/rhoelementsext/platform/android/Rakefile +19 -1
  7. data/lib/commonAPI/RubyServer/ext.yml +21 -0
  8. data/lib/commonAPI/RubyServer/ext/RubyServer.xml +101 -0
  9. data/lib/commonAPI/RubyServer/ext/build +19 -0
  10. data/lib/commonAPI/RubyServer/ext/build.bat +29 -0
  11. data/lib/commonAPI/RubyServer/ext/platform/android/Rakefile +161 -0
  12. data/lib/commonAPI/RubyServer/ext/platform/android/ext_java.files +9 -0
  13. data/lib/commonAPI/RubyServer/ext/platform/android/ext_native.files +7 -0
  14. data/lib/commonAPI/RubyServer/ext/platform/iphone/Rakefile +73 -0
  15. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer.xcodeproj/project.pbxproj +322 -0
  16. data/lib/commonAPI/RubyServer/ext/platform/iphone/RubyServer_Prefix.pch +7 -0
  17. data/lib/commonAPI/RubyServer/ext/shared/RubyServerImpl.cpp +242 -0
  18. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeFactory.java +23 -3
  19. data/lib/commonAPI/barcode/ext/platform/android/src/com/rho/barcode/BarcodeRhoExtension.java +68 -8
  20. data/lib/commonAPI/barcode/ext/platform/iphone/Barcode.xcodeproj/project.pbxproj +24 -52
  21. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.h +38 -10
  22. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewController.m +300 -22
  23. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/BarcodeViewFactory.mm +6 -0
  24. data/lib/commonAPI/barcode/ext/platform/iphone/Classes/barcode.m +6 -2
  25. data/lib/commonAPI/barcode/ext/platform/iphone/impl/Barcode.m +7 -3
  26. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeFactory.m +13 -0
  27. data/lib/commonAPI/barcode/ext/platform/iphone/impl/BarcodeSingleton.m +25 -3
  28. data/lib/commonAPI/bluetooth/ext/platform/android/Rakefile +29 -10
  29. data/lib/commonAPI/clipboard/ext/platform/android/Rakefile +29 -10
  30. data/lib/commonAPI/coreapi/ext/Notification.xml +47 -0
  31. data/lib/commonAPI/coreapi/ext/platform/android/ApplicationManifestAdds.erb +1 -0
  32. data/lib/commonAPI/coreapi/ext/platform/android/Rakefile +19 -0
  33. data/lib/commonAPI/coreapi/ext/platform/android/ext_java.files +2 -0
  34. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/AlarmReceiver.java +27 -0
  35. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/Notification.java +28 -10
  36. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationFactory.java +14 -1
  37. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationScheduler.java +260 -0
  38. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationSingleton.java +23 -1
  39. data/lib/commonAPI/coreapi/ext/platform/iphone/Coreapi.xcodeproj/project.pbxproj +21 -19
  40. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.h +1 -0
  41. data/lib/commonAPI/coreapi/ext/platform/iphone/impl/NotificationSingleton.m +234 -1
  42. data/lib/commonAPI/coreapi/ext/platform/qt/coreapi.pro +2 -0
  43. data/lib/commonAPI/coreapi/ext/platform/qt/src/CNotificationImpl.cpp +7 -0
  44. data/lib/commonAPI/coreapi/ext/shared/ApplicationImpl.cpp +5 -0
  45. data/lib/commonAPI/coreapi/public/api/rhoapi.js +18 -8
  46. data/lib/commonAPI/devicesecurity/ext/platform/android/Rakefile +19 -0
  47. data/lib/commonAPI/devicesecurity/ext/platform/iphone/DeviceSecurity.xcodeproj/project.pbxproj +16 -0
  48. data/lib/commonAPI/hardwarekeys/ext/keycapture.xml +11 -9
  49. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.h +5 -3
  50. data/lib/commonAPI/hardwarekeys/ext/platform/iphone/impl/KeyCaptureSingleton.m +80 -67
  51. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraEclair.java +25 -14
  52. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraGingerbread.java +55 -25
  53. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/CameraObject.java +34 -9
  54. data/lib/commonAPI/mediacapture/ext/platform/android/src/com/rho/camera/ICameraObject.java +1 -0
  55. data/lib/commonAPI/printing_zebra/ext/platform/android/Rakefile +18 -0
  56. data/lib/commonAPI/sensor/ext/platform/android/src/com/rho/sensor/Sensor.java +4 -4
  57. data/lib/extensions/decrypt/ext/platform/android/Rakefile +19 -1
  58. data/lib/extensions/decryptstub/ext/platform/android/Rakefile +19 -0
  59. data/lib/extensions/decryptstub/ext/platform/iphone/Decryptstub.xcodeproj/project.pbxproj +4 -2
  60. data/lib/extensions/digest-md5/ext/android/Rakefile +18 -0
  61. data/lib/extensions/digest-sha1/ext/android/Rakefile +18 -0
  62. data/lib/extensions/digest-sha2/ext/android/Rakefile +18 -0
  63. data/lib/extensions/esri/ext/esri/platform/iphone/Classes/MapViewControllerESRI.h +19 -19
  64. data/lib/extensions/fcm-push/ext/android/Rakefile +18 -0
  65. data/lib/extensions/fcm-push/ext/android/src/com/rhomobile/rhodes/fcm/FCMIntentService.java +38 -16
  66. data/lib/extensions/gcm-push/ext/android/Rakefile +19 -0
  67. data/lib/extensions/keyboard/ext.yml +15 -0
  68. data/lib/extensions/keyboard/ext/Keyboard.xml +28 -0
  69. data/lib/extensions/keyboard/ext/build +19 -0
  70. data/lib/extensions/keyboard/ext/build.bat +29 -0
  71. data/lib/extensions/keyboard/ext/platform/android/Rakefile +141 -0
  72. data/lib/extensions/keyboard/ext/platform/android/ext_java.files +9 -0
  73. data/lib/extensions/keyboard/ext/platform/android/ext_native.files +7 -0
  74. data/lib/extensions/keyboard/ext/platform/android/jni/Keyboard_impl.cpp +61 -0
  75. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/Keyboard.java +32 -0
  76. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardFactory.java +18 -0
  77. data/lib/extensions/keyboard/ext/platform/android/src/com/rho/keyboard/KeyboardSingleton.java +29 -0
  78. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard.xcodeproj/project.pbxproj +368 -0
  79. data/lib/extensions/keyboard/ext/platform/iphone/Keyboard_Prefix.pch +7 -0
  80. data/lib/extensions/keyboard/ext/platform/iphone/Rakefile +73 -0
  81. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.h +14 -0
  82. data/lib/extensions/keyboard/ext/platform/iphone/impl/Keyboard.m +24 -0
  83. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardFactorySingleton.m +16 -0
  84. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSetup.m +9 -0
  85. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.h +17 -0
  86. data/lib/extensions/keyboard/ext/platform/iphone/impl/KeyboardSingleton.m +23 -0
  87. data/lib/extensions/keyboard/ext/platform/iphone/impl/readme.txt +7 -0
  88. data/lib/extensions/keyboard/ext/platform/qt/Keyboard.pro +68 -0
  89. data/lib/extensions/keyboard/ext/platform/qt/Makefile +473 -0
  90. data/lib/extensions/keyboard/ext/platform/qt/Makefile.Release +408 -0
  91. data/lib/extensions/keyboard/ext/platform/qt/Rakefile +39 -0
  92. data/lib/extensions/keyboard/ext/platform/qt/src/Keyboard_impl.cpp +99 -0
  93. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.props +18 -0
  94. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj +197 -0
  95. data/lib/extensions/keyboard/ext/platform/uwp/Keyboard.vcxproj.filters +50 -0
  96. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.csproj +119 -0
  97. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.props +8 -0
  98. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardImpl.targets +7 -0
  99. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.props +18 -0
  100. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj +197 -0
  101. data/lib/extensions/keyboard/ext/platform/uwp/KeyboardLib.vcxproj.filters +58 -0
  102. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cpp +76 -0
  103. data/lib/extensions/keyboard/ext/platform/uwp/src/Keyboard_impl.cs +69 -0
  104. data/lib/extensions/keyboard/ext/platform/uwp/src/Properties/AssemblyInfo.cs +37 -0
  105. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.sln +52 -0
  106. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vcproj +714 -0
  107. data/lib/extensions/keyboard/ext/platform/wm/Keyboard.vsprops +15 -0
  108. data/lib/extensions/keyboard/ext/platform/wm/src/Keyboard_impl.cpp +77 -0
  109. data/lib/extensions/openssl.so.src/ext/android/Rakefile +18 -0
  110. data/lib/extensions/openssl.so/ext/android/aarch64/libopenssl.so.a +0 -0
  111. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/howtobuild.txt +2 -0
  112. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libcrypto.a +0 -0
  113. data/lib/extensions/openssl.so/ext/iphone/OpenSSl.SDK/libssl.a +0 -0
  114. data/lib/extensions/openssl.so/ext/iphone/Release-iphoneos/libopenssl.so.a +0 -0
  115. data/lib/extensions/openssl.so/ext/iphone/Release-iphonesimulator/libopenssl.so.a +0 -0
  116. data/lib/extensions/openssl/ext/android/Rakefile +18 -0
  117. data/lib/extensions/zlib/ext/zlib.c +5 -1
  118. data/lib/framework/autocomplete/Rhodes.rb +1 -1
  119. data/lib/framework/rhodes.rb +1 -1
  120. data/lib/framework/set.rb +799 -0
  121. data/lib/framework/version.rb +1 -1
  122. data/lib/rhodes.rb +1 -1
  123. data/platform/android/Rhodes/AndroidManifest.xml.erb +11 -2
  124. data/platform/android/Rhodes/jni/include/rhodes.h +6 -0
  125. data/platform/android/Rhodes/jni/include/rhodes/RhoClassFactory.h +3 -0
  126. data/platform/android/Rhodes/jni/include/rhodes/SecurityTokenGenerator.h +30 -0
  127. data/platform/android/Rhodes/jni/include/rhodes/details/rhojava.inc +1 -0
  128. data/platform/android/Rhodes/jni/src/JNIRhoRubyCppWrapper.cpp +408 -0
  129. data/platform/android/Rhodes/jni/src/RhoClassFactory.cpp +7 -0
  130. data/platform/android/Rhodes/jni/src/SecurityTokenGenerator.cpp +60 -0
  131. data/platform/android/Rhodes/jni/src/fileapi.cpp +318 -12
  132. data/platform/android/Rhodes/jni/src/mapview.cpp +4 -0
  133. data/platform/android/Rhodes/res/drawable/ic_notification.png +0 -0
  134. data/platform/android/Rhodes/res/xml/network_security_config.xml +7 -0
  135. data/platform/android/Rhodes/src/com/rhomobile/rhodes/BaseActivity.java +9 -0
  136. data/platform/android/Rhodes/src/com/rhomobile/rhodes/LocalFileProvider.java +1 -1
  137. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoMain.java +8 -0
  138. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyArrayObjects.java +33 -0
  139. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyClassObject.java +20 -0
  140. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyObject.java +115 -0
  141. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubySingleton.java +52 -0
  142. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhoRubyTypes.java +15 -0
  143. data/platform/android/Rhodes/src/com/rhomobile/rhodes/RhodesService.java +25 -13
  144. data/platform/android/Rhodes/src/com/rhomobile/rhodes/SecurityTokenGenerator.java +57 -0
  145. data/platform/android/Rhodes/src/com/rhomobile/rhodes/extmanager/RhoExtManagerImpl.java +1 -1
  146. data/platform/android/Rhodes/src/com/rhomobile/rhodes/mainview/SimpleMainView.java +9 -2
  147. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality.java +3 -0
  148. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality01.java +7 -0
  149. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality11.java +13 -1
  150. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionality26.java +105 -0
  151. data/platform/android/Rhodes/src/com/rhomobile/rhodes/osfunctionality/AndroidFunctionalityManager.java +4 -1
  152. data/platform/android/Rhodes/src/com/rhomobile/rhodes/socket/SSLImpl.java +24 -4
  153. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/GoogleWebView.java +20 -1
  154. data/platform/android/Rhodes/src/com/rhomobile/rhodes/webview/RhoWebViewClient.java +10 -0
  155. data/platform/android/build/Rakefile +30 -1
  156. data/platform/android/build/RhodesSRC_build.files +8 -0
  157. data/platform/android/build/android.rake +326 -22
  158. data/platform/android/build/android_tools.rb +36 -3
  159. data/platform/android/build/androidcommon.rb +97 -44
  160. data/platform/android/build/librhocommon_build.files +11 -0
  161. data/platform/android/build/librhodes_build.files +2 -0
  162. data/platform/android/build/manifest_generator.rb +9 -2
  163. data/platform/android/build/maven_deps_extractor.rb +96 -15
  164. data/platform/android/build/ndkwrapper.rb +111 -16
  165. data/platform/android/build/pom.erb +2 -2
  166. data/platform/iphone/Classes/AppManager/AppManager.m +31 -1
  167. data/platform/iphone/Classes/MapView/GoogleGeocoder.h +3 -3
  168. data/platform/iphone/Classes/RhoMainViewStubImpl.h +38 -0
  169. data/platform/iphone/Classes/RhoMainViewStubImpl.m +88 -0
  170. data/platform/iphone/Classes/RhoUIWebView.h +5 -0
  171. data/platform/iphone/Classes/RhoUIWebView.m +14 -6
  172. data/platform/iphone/Classes/{RhoWKWebView.m → RhoWKWebView.mm} +98 -18
  173. data/platform/iphone/Classes/RhoWebView.h +1 -1
  174. data/platform/iphone/Classes/RhoWebViewFabrique.m +24 -12
  175. data/platform/iphone/Classes/Rhodes.h +7 -2
  176. data/platform/iphone/Classes/Rhodes.m +46 -8
  177. data/platform/iphone/Classes/SimpleMainView.m +22 -13
  178. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.h +32 -3
  179. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +93 -61
  180. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.h +22 -0
  181. data/platform/iphone/Classes/URLProtocol/CRhoWKURLProtocol.m +246 -0
  182. data/platform/iphone/Classes/WebView.m +14 -2
  183. data/platform/iphone/Entitlements.plist +1 -1
  184. data/platform/iphone/Framework/RhoApplication/RhoApplication.xcodeproj/project.pbxproj +399 -0
  185. data/platform/iphone/Framework/Rhodes/Rhodes.xcodeproj/project.pbxproj +1208 -0
  186. data/platform/iphone/Framework/Rhodes/Rhodes/Info.plist +24 -0
  187. data/platform/iphone/Framework/Rhodes/Rhodes/Rhodes.h +21 -0
  188. data/platform/iphone/Framework/Rhodes/Rhodes/StubCode.m +15 -0
  189. data/platform/iphone/Info.plist +1 -3
  190. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +511 -4
  191. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +467 -1
  192. data/platform/iphone/Rhodes.xcodeproj/project.pbxproj +51 -274
  193. data/platform/iphone/RhodesBaseDelegate.h +1 -1
  194. data/platform/iphone/curl/curl.xcodeproj/project.pbxproj +85 -3
  195. data/platform/iphone/rbuild/ApplicationPlist.erb +1 -1
  196. data/platform/iphone/rbuild/iphone.rake +497 -25
  197. data/platform/iphone/rbuild/iphonecommon.rb +15 -6
  198. data/platform/iphone/rhodes_stub.cpp +15 -0
  199. data/platform/iphone/rhodeslib/api/RhodesLib.h +28 -0
  200. data/platform/iphone/rhodeslib/impl/RhodesLib.m +52 -0
  201. data/platform/iphone/rhodesruby/api/IRefCountedObject.h +20 -0
  202. data/platform/iphone/rhodesruby/api/IRhoRuby.h +72 -0
  203. data/platform/iphone/rhodesruby/api/IRhoRubyArray.h +12 -0
  204. data/platform/iphone/rhodesruby/api/IRhoRubyBoolean.h +11 -0
  205. data/platform/iphone/rhodesruby/api/IRhoRubyFloat.h +10 -0
  206. data/platform/iphone/rhodesruby/api/IRhoRubyHash.h +15 -0
  207. data/platform/iphone/rhodesruby/api/IRhoRubyInteger.h +10 -0
  208. data/platform/iphone/rhodesruby/api/IRhoRubyMutableArray.h +9 -0
  209. data/platform/iphone/rhodesruby/api/IRhoRubyMutableBoolean.h +10 -0
  210. data/platform/iphone/rhodesruby/api/IRhoRubyMutableFloat.h +10 -0
  211. data/platform/iphone/rhodesruby/api/IRhoRubyMutableHash.h +10 -0
  212. data/platform/iphone/rhodesruby/api/IRhoRubyMutableInteger.h +10 -0
  213. data/platform/iphone/rhodesruby/api/IRhoRubyMutableString.h +10 -0
  214. data/platform/iphone/rhodesruby/api/IRhoRubyNativeCallback.h +9 -0
  215. data/platform/iphone/rhodesruby/api/IRhoRubyNil.h +10 -0
  216. data/platform/iphone/rhodesruby/api/IRhoRubyObject.h +37 -0
  217. data/platform/iphone/rhodesruby/api/IRhoRubyRunnable.h +8 -0
  218. data/platform/iphone/rhodesruby/api/IRhoRubyString.h +10 -0
  219. data/platform/iphone/rhodesruby/api/RhoRuby.h +26 -0
  220. data/platform/iphone/rhodesruby/api/RhoRubySingletone.h +14 -0
  221. data/platform/iphone/rhodesruby/impl/RhoRubyFabrique.h +10 -0
  222. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.h +56 -0
  223. data/platform/iphone/rhodesruby/impl/RhoRubyImpl.mm +432 -0
  224. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.h +24 -0
  225. data/platform/iphone/rhodesruby/impl/RhoRubyMutableArrayImpl.mm +43 -0
  226. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.h +23 -0
  227. data/platform/iphone/rhodesruby/impl/RhoRubyMutableBooleanImpl.mm +38 -0
  228. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.h +23 -0
  229. data/platform/iphone/rhodesruby/impl/RhoRubyMutableFloatImpl.mm +35 -0
  230. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.h +24 -0
  231. data/platform/iphone/rhodesruby/impl/RhoRubyMutableHashImpl.mm +48 -0
  232. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.h +23 -0
  233. data/platform/iphone/rhodesruby/impl/RhoRubyMutableIntegerImpl.mm +35 -0
  234. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.h +23 -0
  235. data/platform/iphone/rhodesruby/impl/RhoRubyMutableStringImpl.mm +35 -0
  236. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.h +22 -0
  237. data/platform/iphone/rhodesruby/impl/RhoRubyNilImpl.mm +11 -0
  238. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.h +31 -0
  239. data/platform/iphone/rhodesruby/impl/RhoRubyObjectImpl.mm +49 -0
  240. data/platform/iphone/rhodesruby/impl/RhoRubySingletone.m +19 -0
  241. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.h +21 -0
  242. data/platform/iphone/rhodesruby/impl/RubyServerResponceImpl.mm +32 -0
  243. data/platform/iphone/rhoextlib/rhoextlib.xcodeproj/project.pbxproj +79 -0
  244. data/platform/iphone/rhorubylib/rhorubylib.xcodeproj/project.pbxproj +91 -0
  245. data/platform/iphone/rhosynclib/rhosynclib.xcodeproj/project.pbxproj +85 -0
  246. data/platform/osx/bin/RhoSimulator/RhoSimulator.app.zip +0 -0
  247. data/platform/shared/common/IRhoClassFactory.h +2 -0
  248. data/platform/shared/common/ISecurityTokenGenerator.h +16 -0
  249. data/platform/shared/common/RhoFile.cpp +11 -0
  250. data/platform/shared/common/RhoMath.h +14 -0
  251. data/platform/shared/common/RhoMutexLock.h +13 -0
  252. data/platform/shared/common/RhoSystem.h +1 -1
  253. data/platform/shared/common/RhoThread.cpp +25 -0
  254. data/platform/shared/common/RhodesApp.cpp +52 -6
  255. data/platform/shared/common/RhodesApp.h +25 -1
  256. data/platform/shared/common/RhodesAppBase.cpp +4 -2
  257. data/platform/shared/common/RhodesAppBase.h +5 -0
  258. data/platform/shared/common/iphone/RhoClassfactory.h +6 -0
  259. data/platform/shared/common/iphone/RhoCryptImpl.mm +21 -2
  260. data/platform/shared/common/map/BaseMapEngine.cpp +2 -2
  261. data/platform/shared/common/map/GeocodingMapEngine.cpp +1 -1
  262. data/platform/shared/common/map/GoogleMapEngine.cpp +1 -1
  263. data/platform/shared/common/map/OSMMapEngine.cpp +1 -1
  264. data/platform/shared/curl/lib/curl_config.h +28 -0
  265. data/platform/shared/db/DBAdapter.cpp +18 -10
  266. data/platform/shared/json.new/JSONIterator.cpp +2 -2
  267. data/platform/shared/net/HttpServer.cpp +32 -0
  268. data/platform/shared/net/HttpServer.h +15 -0
  269. data/platform/shared/net/INetRequest.cpp +54 -0
  270. data/platform/shared/qt/RhoRubylib.pro +10 -0
  271. data/platform/shared/qt/rhodes/impl/AlertImpl.cpp +13 -0
  272. data/platform/shared/qt/rhodes/impl/CameraImpl.cpp +6 -0
  273. data/platform/shared/qt/rhodes/impl/DateTimePickerImpl.cpp +4 -0
  274. data/platform/shared/qt/rhodes/impl/MainWindowImpl.cpp +36 -7
  275. data/platform/shared/qt/rhodes/impl/MainWindowImpl.h +12 -1
  276. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.cpp +21 -2
  277. data/platform/shared/qt/rhodes/impl/NativeTabbarImpl.h +1 -0
  278. data/platform/shared/qt/rhodes/impl/NativeToolbarImpl.cpp +10 -0
  279. data/platform/shared/qt/rhodes/impl/QtSystemImpl.cpp +55 -3
  280. data/platform/shared/qt/rhodes/impl/RhoClassFactoryImpl.h +11 -0
  281. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.cpp +71 -7
  282. data/platform/shared/qt/rhodes/impl/RhoThreadImpl.h +79 -2
  283. data/platform/shared/qt/rhodes/impl/RhodesImpl.cpp +16 -6
  284. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.cpp +37 -0
  285. data/platform/shared/qt/rhodes/impl/SecurityTokenGeneratorImpl.h +25 -0
  286. data/platform/shared/qt/rhodes/impl/SignatureImpl.cpp +2 -0
  287. data/platform/shared/qt/rhodes/impl/WebViewImpl.cpp +27 -0
  288. data/platform/shared/qt/rhodes/impl/notificationsound.cpp +16 -2
  289. data/platform/shared/qt/rhodes/impl/notificationsound.h +11 -1
  290. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.cpp +25 -16
  291. data/platform/shared/qt/rhodes/newVersion/QtMainWindow.h +3 -0
  292. data/platform/shared/qt/rhodes/newVersion/WebUrlRequestInterceptor.cpp +17 -0
  293. data/platform/shared/qt/rhodes/rhodes.pro +68 -14
  294. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.cpp +148 -0
  295. data/platform/shared/qt/rhodes/rhorubyVersion/rhodeslib.h +12 -0
  296. data/platform/shared/qt/rholib/rholib.pro +33 -5
  297. data/platform/shared/qt/rhoruby_win32_build.bat +19 -0
  298. data/platform/shared/qt/rhoruby_win32_build_debug.bat +19 -0
  299. data/platform/shared/qt/rhosimulator_win32_build_debug.bat +19 -0
  300. data/platform/shared/qt/rubylib/rubylib.pro +1 -0
  301. data/platform/shared/qt/sqlite3/sqlite3.pro +1 -0
  302. data/platform/shared/qt/syncengine/syncengine.pro +1 -0
  303. data/platform/shared/rhoruby/api/IArray.h +20 -0
  304. data/platform/shared/rhoruby/api/IBoolean.h +17 -0
  305. data/platform/shared/rhoruby/api/IFloat.h +17 -0
  306. data/platform/shared/rhoruby/api/IHash.h +23 -0
  307. data/platform/shared/rhoruby/api/IInteger.h +18 -0
  308. data/platform/shared/rhoruby/api/IMutableArray.h +18 -0
  309. data/platform/shared/rhoruby/api/IMutableBoolean.h +18 -0
  310. data/platform/shared/rhoruby/api/IMutableFloat.h +17 -0
  311. data/platform/shared/rhoruby/api/IMutableHash.h +18 -0
  312. data/platform/shared/rhoruby/api/IMutableInteger.h +17 -0
  313. data/platform/shared/rhoruby/api/IMutableString.h +17 -0
  314. data/platform/shared/rhoruby/api/INil.h +16 -0
  315. data/platform/shared/rhoruby/api/IObject.h +46 -0
  316. data/platform/shared/rhoruby/api/IRefCountedObject.h +20 -0
  317. data/platform/shared/rhoruby/api/IRhoRuby.h +78 -0
  318. data/platform/shared/rhoruby/api/IRunnable.h +17 -0
  319. data/platform/shared/rhoruby/api/IString.h +17 -0
  320. data/platform/shared/rhoruby/api/RhoRuby.h +29 -0
  321. data/platform/shared/rhoruby/api/RhoRubySingletone.h +19 -0
  322. data/platform/shared/rhoruby/api/SmartPointer.h +27 -0
  323. data/platform/shared/rhoruby/impl/MutableArrayImpl.cpp +54 -0
  324. data/platform/shared/rhoruby/impl/MutableArrayImpl.h +48 -0
  325. data/platform/shared/rhoruby/impl/MutableBooleanImpl.cpp +44 -0
  326. data/platform/shared/rhoruby/impl/MutableBooleanImpl.h +44 -0
  327. data/platform/shared/rhoruby/impl/MutableFloatImpl.cpp +41 -0
  328. data/platform/shared/rhoruby/impl/MutableFloatImpl.h +44 -0
  329. data/platform/shared/rhoruby/impl/MutableHashImpl.cpp +64 -0
  330. data/platform/shared/rhoruby/impl/MutableHashImpl.h +49 -0
  331. data/platform/shared/rhoruby/impl/MutableIntegerImpl.cpp +41 -0
  332. data/platform/shared/rhoruby/impl/MutableIntegerImpl.h +44 -0
  333. data/platform/shared/rhoruby/impl/MutableStringImpl.cpp +52 -0
  334. data/platform/shared/rhoruby/impl/MutableStringImpl.h +44 -0
  335. data/platform/shared/rhoruby/impl/NilImpl.cpp +23 -0
  336. data/platform/shared/rhoruby/impl/NilImpl.h +32 -0
  337. data/platform/shared/rhoruby/impl/ObjectImpl.cpp +77 -0
  338. data/platform/shared/rhoruby/impl/ObjectImpl.h +53 -0
  339. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.cpp +28 -0
  340. data/platform/shared/rhoruby/impl/RefCountedObjectImpl.h +33 -0
  341. data/platform/shared/rhoruby/impl/RhoRubyImpl.cpp +799 -0
  342. data/platform/shared/rhoruby/impl/RhoRubyImpl.h +81 -0
  343. data/platform/shared/rhoruby/impl/RhoRubySingletone.cpp +20 -0
  344. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.cpp +32 -0
  345. data/platform/shared/rhoruby/impl/RubyServerResponceImpl.h +21 -0
  346. data/platform/shared/ruby/android/ruby/config.h +55 -3
  347. data/platform/shared/ruby/error.c +1 -1
  348. data/platform/shared/ruby/ext/rho/rhoruby.c +60 -7
  349. data/platform/shared/ruby/ext/rho/rhoruby.h +3 -0
  350. data/platform/shared/rubyext/NativeToolbarExt.h +1 -0
  351. data/platform/uwp/rhodes/rhodes_TemporaryKey.pfx +0 -0
  352. data/platform/uwp/rhoruntime/common/RhoClassFactory.h +6 -0
  353. data/platform/win32/RhoSimulator/Qt5Core.dll +0 -0
  354. data/platform/win32/RhoSimulator/Qt5Gui.dll +0 -0
  355. data/platform/win32/RhoSimulator/Qt5Multimedia.dll +0 -0
  356. data/platform/win32/RhoSimulator/Qt5Network.dll +0 -0
  357. data/platform/win32/RhoSimulator/Qt5Positioning.dll +0 -0
  358. data/platform/win32/RhoSimulator/Qt5PrintSupport.dll +0 -0
  359. data/platform/win32/RhoSimulator/Qt5Qml.dll +0 -0
  360. data/platform/win32/RhoSimulator/Qt5Quick.dll +0 -0
  361. data/platform/win32/RhoSimulator/Qt5QuickWidgets.dll +0 -0
  362. data/platform/win32/RhoSimulator/Qt5SerialPort.dll +0 -0
  363. data/platform/win32/RhoSimulator/Qt5Svg.dll +0 -0
  364. data/platform/win32/RhoSimulator/Qt5WebChannel.dll +0 -0
  365. data/platform/win32/RhoSimulator/Qt5WebEngine.dll +0 -0
  366. data/platform/win32/RhoSimulator/Qt5WebEngineCore.dll +0 -0
  367. data/platform/win32/RhoSimulator/Qt5WebEngineWidgets.dll +0 -0
  368. data/platform/win32/RhoSimulator/Qt5Widgets.dll +0 -0
  369. data/platform/win32/RhoSimulator/QtWebEngineProcess.exe +0 -0
  370. data/platform/win32/RhoSimulator/RhoSimulator.exe +0 -0
  371. data/platform/win32/RhoSimulator/audio/qtaudio_wasapi.dll +0 -0
  372. data/platform/win32/RhoSimulator/audio/qtaudio_windows.dll +0 -0
  373. data/platform/win32/RhoSimulator/bearer/qgenericbearer.dll +0 -0
  374. data/platform/win32/RhoSimulator/iconengines/qsvgicon.dll +0 -0
  375. data/platform/win32/RhoSimulator/imageformats/qgif.dll +0 -0
  376. data/platform/win32/RhoSimulator/imageformats/qicns.dll +0 -0
  377. data/platform/win32/RhoSimulator/imageformats/qico.dll +0 -0
  378. data/platform/win32/RhoSimulator/imageformats/qjpeg.dll +0 -0
  379. data/platform/win32/RhoSimulator/imageformats/qsvg.dll +0 -0
  380. data/platform/win32/RhoSimulator/imageformats/qtga.dll +0 -0
  381. data/platform/win32/RhoSimulator/imageformats/qtiff.dll +0 -0
  382. data/platform/win32/RhoSimulator/imageformats/qwbmp.dll +0 -0
  383. data/platform/win32/RhoSimulator/imageformats/qwebp.dll +0 -0
  384. data/platform/win32/RhoSimulator/libEGL.dll +0 -0
  385. data/platform/win32/RhoSimulator/libGLESV2.dll +0 -0
  386. data/platform/win32/RhoSimulator/mediaservice/dsengine.dll +0 -0
  387. data/platform/win32/RhoSimulator/mediaservice/qtmedia_audioengine.dll +0 -0
  388. data/platform/win32/RhoSimulator/mediaservice/wmfengine.dll +0 -0
  389. data/platform/win32/RhoSimulator/platforms/qwindows.dll +0 -0
  390. data/platform/win32/RhoSimulator/playlistformats/qtmultimedia_m3u.dll +0 -0
  391. data/platform/win32/RhoSimulator/position/qtposition_geoclue.dll +0 -0
  392. data/platform/win32/RhoSimulator/position/qtposition_positionpoll.dll +0 -0
  393. data/platform/win32/RhoSimulator/position/qtposition_serialnmea.dll +0 -0
  394. data/platform/win32/RhoSimulator/position/qtposition_winrt.dll +0 -0
  395. data/platform/win32/RhoSimulator/printsupport/windowsprintersupport.dll +0 -0
  396. data/platform/wm/build/wm.rake +110 -5
  397. data/platform/wm/rhodes/rho/common/ExtManager.cpp +30 -0
  398. data/platform/wm/rhodes/rho/common/RhoClassFactory.h +6 -0
  399. data/platform/wm/rhodes/rho/rubyext/SystemImpl.cpp +3 -0
  400. data/platform/wm/rubylib/rubylib.vcxproj +6 -0
  401. data/platform/wp8/rhoruntime/common/RhoClassFactory.h +6 -0
  402. data/rakefile.rb +14 -10
  403. data/res/build-tools/iphonesim/build/Release/iphonesim_8 +23 -15
  404. data/res/build-tools/maven/LICENSE +18 -89
  405. data/res/build-tools/maven/NOTICE +1 -1
  406. data/res/build-tools/maven/README.txt +12 -12
  407. data/res/build-tools/maven/bin/m2.conf +2 -2
  408. data/res/build-tools/maven/bin/mvn +122 -125
  409. data/res/build-tools/maven/bin/mvn.cmd +205 -0
  410. data/res/build-tools/maven/bin/mvnDebug +10 -176
  411. data/res/build-tools/maven/bin/mvnDebug.cmd +33 -0
  412. data/res/build-tools/maven/bin/mvnyjp +9 -181
  413. data/res/build-tools/maven/boot/plexus-classworlds-2.6.0.jar +0 -0
  414. data/res/build-tools/maven/conf/logging/simplelogger.properties +8 -1
  415. data/res/build-tools/maven/conf/settings.xml +1 -1
  416. data/res/build-tools/maven/conf/toolchains.xml +103 -0
  417. data/res/build-tools/maven/lib/animal-sniffer-annotations-1.14.jar +0 -0
  418. data/res/build-tools/maven/lib/animal-sniffer-annotations.license +14 -0
  419. data/res/build-tools/maven/lib/checker-compat-qual-2.0.0.jar +0 -0
  420. data/res/build-tools/maven/lib/checker-compat-qual.license +14 -0
  421. data/res/build-tools/maven/lib/commons-cli-1.4.jar +0 -0
  422. data/res/build-tools/maven/lib/commons-io-2.5.jar +0 -0
  423. data/res/build-tools/maven/lib/commons-lang3-3.8.1.jar +0 -0
  424. data/res/build-tools/maven/lib/error_prone_annotations-2.1.3.jar +0 -0
  425. data/res/build-tools/maven/lib/guava-25.1-android.jar +0 -0
  426. data/res/build-tools/maven/lib/guice-4.2.1-no_aop.jar +0 -0
  427. data/res/build-tools/maven/lib/j2objc-annotations-1.1.jar +0 -0
  428. data/res/build-tools/maven/lib/jansi-1.17.1.jar +0 -0
  429. data/res/build-tools/maven/lib/jansi-native/README.txt +7 -0
  430. data/res/build-tools/maven/lib/jansi-native/freebsd32/libjansi.so +0 -0
  431. data/res/build-tools/maven/lib/jansi-native/freebsd64/libjansi.so +0 -0
  432. data/res/build-tools/maven/lib/jansi-native/linux32/libjansi.so +0 -0
  433. data/res/build-tools/maven/lib/jansi-native/linux64/libjansi.so +0 -0
  434. data/res/build-tools/maven/lib/jansi-native/osx/libjansi.jnilib +0 -0
  435. data/res/build-tools/maven/lib/jansi-native/windows32/jansi.dll +0 -0
  436. data/res/build-tools/maven/lib/jansi-native/windows64/jansi.dll +0 -0
  437. data/res/build-tools/maven/lib/jcl-over-slf4j-1.7.25.jar +0 -0
  438. data/res/build-tools/maven/lib/jcl-over-slf4j.license +14 -0
  439. data/res/build-tools/maven/lib/jsr250-api.license +383 -405
  440. data/res/build-tools/maven/lib/jsr305-3.0.2.jar +0 -0
  441. data/res/build-tools/maven/lib/maven-artifact-3.6.1.jar +0 -0
  442. data/res/build-tools/maven/lib/maven-builder-support-3.6.1.jar +0 -0
  443. data/res/build-tools/maven/lib/maven-compat-3.6.1.jar +0 -0
  444. data/res/build-tools/maven/lib/maven-core-3.6.1.jar +0 -0
  445. data/res/build-tools/maven/lib/maven-embedder-3.6.1.jar +0 -0
  446. data/res/build-tools/maven/lib/maven-model-3.6.1.jar +0 -0
  447. data/res/build-tools/maven/lib/maven-model-builder-3.6.1.jar +0 -0
  448. data/res/build-tools/maven/lib/maven-plugin-api-3.6.1.jar +0 -0
  449. data/res/build-tools/maven/lib/maven-repository-metadata-3.6.1.jar +0 -0
  450. data/res/build-tools/maven/lib/maven-resolver-api-1.3.3.jar +0 -0
  451. data/res/build-tools/maven/lib/maven-resolver-connector-basic-1.3.3.jar +0 -0
  452. data/res/build-tools/maven/lib/maven-resolver-impl-1.3.3.jar +0 -0
  453. data/res/build-tools/maven/lib/maven-resolver-provider-3.6.1.jar +0 -0
  454. data/res/build-tools/maven/lib/maven-resolver-spi-1.3.3.jar +0 -0
  455. data/res/build-tools/maven/lib/maven-resolver-transport-wagon-1.3.3.jar +0 -0
  456. data/res/build-tools/maven/lib/maven-resolver-util-1.3.3.jar +0 -0
  457. data/res/build-tools/maven/lib/maven-settings-3.6.1.jar +0 -0
  458. data/res/build-tools/maven/lib/maven-settings-builder-3.6.1.jar +0 -0
  459. data/res/build-tools/maven/lib/maven-shared-utils-3.2.1.jar +0 -0
  460. data/res/build-tools/maven/lib/maven-slf4j-provider-3.6.1.jar +0 -0
  461. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.3.jar +0 -0
  462. data/res/build-tools/maven/lib/org.eclipse.sisu.inject.license +210 -261
  463. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.3.jar +0 -0
  464. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus.license +210 -261
  465. data/res/build-tools/maven/lib/plexus-component-annotations-1.7.1.jar +0 -0
  466. data/res/build-tools/maven/lib/plexus-interpolation-1.25.jar +0 -0
  467. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.4.jar +0 -0
  468. data/res/build-tools/maven/lib/plexus-utils-3.2.0.jar +0 -0
  469. data/res/build-tools/maven/lib/slf4j-api-1.7.25.jar +0 -0
  470. data/res/build-tools/maven/lib/slf4j-api.license +10 -186
  471. data/res/build-tools/maven/lib/wagon-file-3.3.2.jar +0 -0
  472. data/res/build-tools/maven/lib/wagon-http-3.3.2-shaded.jar +0 -0
  473. data/res/build-tools/maven/lib/wagon-provider-api-3.3.2.jar +0 -0
  474. data/res/generators/rhogen.rb +150 -0
  475. data/res/generators/templates/application/AndroidManifest.erb +13 -4
  476. data/res/generators/templates/application/build.yml +9 -0
  477. data/res/generators/templates/application/nodejs_build.yml +1 -1
  478. data/res/generators/templates/application/resources/android/res/xml/network_security_config.xml +7 -0
  479. data/res/generators/templates/application/rhoconfig.txt +13 -6
  480. data/res/generators/templates/application/rhoconfig_rubynode.txt +139 -0
  481. data/res/generators/templates/application/rubynodejs_build.yml +95 -0
  482. data/res/generators/templates/extension/extensions/montana/ext/platform/android/Rakefile +19 -0
  483. data/res/generators/templates/iphone_project/root/Entitlements.plist +1 -1
  484. data/res/generators/templates/iphone_project/root/Info.plist +1 -3
  485. data/res/generators/templates/iphone_project/root/rhorunner_development.entitlements +1 -1
  486. data/res/generators/templates/iphone_project/root/rhorunner_production.entitlements +1 -1
  487. data/rhodes.gemspec +2 -2
  488. data/version +1 -1
  489. metadata +244 -71
  490. data/res/build-tools/maven/bin/mvn.bat +0 -197
  491. data/res/build-tools/maven/bin/mvnDebug.bat +0 -200
  492. data/res/build-tools/maven/boot/plexus-classworlds-2.5.2.jar +0 -0
  493. data/res/build-tools/maven/lib/aether-api-1.0.0.v20140518.jar +0 -0
  494. data/res/build-tools/maven/lib/aether-api.license +0 -261
  495. data/res/build-tools/maven/lib/aether-connector-basic-1.0.0.v20140518.jar +0 -0
  496. data/res/build-tools/maven/lib/aether-connector-basic.license +0 -261
  497. data/res/build-tools/maven/lib/aether-impl-1.0.0.v20140518.jar +0 -0
  498. data/res/build-tools/maven/lib/aether-impl.license +0 -261
  499. data/res/build-tools/maven/lib/aether-spi-1.0.0.v20140518.jar +0 -0
  500. data/res/build-tools/maven/lib/aether-spi.license +0 -261
  501. data/res/build-tools/maven/lib/aether-transport-wagon-1.0.0.v20140518.jar +0 -0
  502. data/res/build-tools/maven/lib/aether-transport-wagon.license +0 -261
  503. data/res/build-tools/maven/lib/aether-util-1.0.0.v20140518.jar +0 -0
  504. data/res/build-tools/maven/lib/aether-util.license +0 -261
  505. data/res/build-tools/maven/lib/cdi-api.license +0 -445
  506. data/res/build-tools/maven/lib/commons-cli-1.2.jar +0 -0
  507. data/res/build-tools/maven/lib/commons-io-2.2.jar +0 -0
  508. data/res/build-tools/maven/lib/commons-lang-2.6.jar +0 -0
  509. data/res/build-tools/maven/lib/guava-18.0.jar +0 -0
  510. data/res/build-tools/maven/lib/jsoup-1.7.2.jar +0 -0
  511. data/res/build-tools/maven/lib/jsoup.license +0 -66
  512. data/res/build-tools/maven/lib/maven-aether-provider-3.2.5.jar +0 -0
  513. data/res/build-tools/maven/lib/maven-aether-provider.license +0 -202
  514. data/res/build-tools/maven/lib/maven-artifact-3.2.5.jar +0 -0
  515. data/res/build-tools/maven/lib/maven-artifact.license +0 -202
  516. data/res/build-tools/maven/lib/maven-compat-3.2.5.jar +0 -0
  517. data/res/build-tools/maven/lib/maven-compat.license +0 -202
  518. data/res/build-tools/maven/lib/maven-core-3.2.5.jar +0 -0
  519. data/res/build-tools/maven/lib/maven-core.license +0 -202
  520. data/res/build-tools/maven/lib/maven-embedder-3.2.5.jar +0 -0
  521. data/res/build-tools/maven/lib/maven-embedder.license +0 -202
  522. data/res/build-tools/maven/lib/maven-model-3.2.5.jar +0 -0
  523. data/res/build-tools/maven/lib/maven-model-builder-3.2.5.jar +0 -0
  524. data/res/build-tools/maven/lib/maven-model-builder.license +0 -202
  525. data/res/build-tools/maven/lib/maven-model.license +0 -202
  526. data/res/build-tools/maven/lib/maven-plugin-api-3.2.5.jar +0 -0
  527. data/res/build-tools/maven/lib/maven-plugin-api.license +0 -202
  528. data/res/build-tools/maven/lib/maven-repository-metadata-3.2.5.jar +0 -0
  529. data/res/build-tools/maven/lib/maven-repository-metadata.license +0 -202
  530. data/res/build-tools/maven/lib/maven-settings-3.2.5.jar +0 -0
  531. data/res/build-tools/maven/lib/maven-settings-builder-3.2.5.jar +0 -0
  532. data/res/build-tools/maven/lib/maven-settings-builder.license +0 -202
  533. data/res/build-tools/maven/lib/maven-settings.license +0 -202
  534. data/res/build-tools/maven/lib/org.eclipse.sisu.inject-0.3.0.M1.jar +0 -0
  535. data/res/build-tools/maven/lib/org.eclipse.sisu.plexus-0.3.0.M1.jar +0 -0
  536. data/res/build-tools/maven/lib/plexus-cipher.license +0 -445
  537. data/res/build-tools/maven/lib/plexus-component-annotations-1.5.5.jar +0 -0
  538. data/res/build-tools/maven/lib/plexus-interpolation-1.21.jar +0 -0
  539. data/res/build-tools/maven/lib/plexus-sec-dispatcher-1.3.jar +0 -0
  540. data/res/build-tools/maven/lib/plexus-sec-dispatcher.license +0 -445
  541. data/res/build-tools/maven/lib/plexus-utils-3.0.20.jar +0 -0
  542. data/res/build-tools/maven/lib/sisu-guice-3.2.3-no_aop.jar +0 -0
  543. data/res/build-tools/maven/lib/slf4j-api-1.7.5.jar +0 -0
  544. data/res/build-tools/maven/lib/slf4j-simple-1.7.5.jar +0 -0
  545. data/res/build-tools/maven/lib/slf4j-simple.license +0 -190
  546. data/res/build-tools/maven/lib/wagon-file-2.8.jar +0 -0
  547. data/res/build-tools/maven/lib/wagon-file.license +0 -202
  548. data/res/build-tools/maven/lib/wagon-http-2.8-shaded.jar +0 -0
  549. data/res/build-tools/maven/lib/wagon-http-shared-2.8.jar +0 -0
  550. data/res/build-tools/maven/lib/wagon-http-shared.license +0 -202
  551. data/res/build-tools/maven/lib/wagon-http.license +0 -202
  552. data/res/build-tools/maven/lib/wagon-provider-api-2.8.jar +0 -0
  553. data/res/build-tools/maven/lib/wagon-provider-api.license +0 -202
@@ -20,6 +20,13 @@ org.slf4j.simpleLogger.showDateTime=false
20
20
  org.slf4j.simpleLogger.showThreadName=false
21
21
  org.slf4j.simpleLogger.showLogName=false
22
22
  org.slf4j.simpleLogger.logFile=System.out
23
+ org.slf4j.simpleLogger.cacheOutputStream=true
23
24
  org.slf4j.simpleLogger.levelInBrackets=true
24
25
  org.slf4j.simpleLogger.log.Sisu=info
25
- org.slf4j.simpleLogger.warnLevelString=WARNING
26
+ org.slf4j.simpleLogger.warnLevelString=WARNING
27
+
28
+ # MNG-6181: mvn -X also prints all debug logging from HttpClient
29
+ # Be aware that the shaded packages are used
30
+ # org.apache.http -> org.apache.maven.wagon.providers.http.httpclient
31
+ org.slf4j.simpleLogger.log.org.apache.maven.wagon.providers.http.httpclient=off
32
+ org.slf4j.simpleLogger.log.org.apache.maven.wagon.providers.http.httpclient.wire=off
@@ -32,7 +32,7 @@ under the License.
32
32
  | 2. Global Level. This settings.xml file provides configuration for all Maven
33
33
  | users on a machine (assuming they're all using the same Maven
34
34
  | installation). It's normally provided in
35
- | ${maven.home}/conf/settings.xml.
35
+ | ${maven.conf}/settings.xml.
36
36
  |
37
37
  | NOTE: This location can be overridden with the CLI option:
38
38
  |
@@ -0,0 +1,103 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <!--
4
+ Licensed to the Apache Software Foundation (ASF) under one
5
+ or more contributor license agreements. See the NOTICE file
6
+ distributed with this work for additional information
7
+ regarding copyright ownership. The ASF licenses this file
8
+ to you under the Apache License, Version 2.0 (the
9
+ "License"); you may not use this file except in compliance
10
+ with the License. You may obtain a copy of the License at
11
+
12
+ http://www.apache.org/licenses/LICENSE-2.0
13
+
14
+ Unless required by applicable law or agreed to in writing,
15
+ software distributed under the License is distributed on an
16
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17
+ KIND, either express or implied. See the License for the
18
+ specific language governing permissions and limitations
19
+ under the License.
20
+ -->
21
+
22
+ <!--
23
+ | This is the toolchains file for Maven. It can be specified at two levels:
24
+ |
25
+ | 1. User Level. This toolchains.xml file provides configuration for a single user,
26
+ | and is normally provided in ${user.home}/.m2/toolchains.xml.
27
+ |
28
+ | NOTE: This location can be overridden with the CLI option:
29
+ |
30
+ | -t /path/to/user/toolchains.xml
31
+ |
32
+ | 2. Global Level. This toolchains.xml file provides configuration for all Maven
33
+ | users on a machine (assuming they're all using the same Maven
34
+ | installation). It's normally provided in
35
+ | ${maven.conf}/toolchains.xml.
36
+ |
37
+ | NOTE: This location can be overridden with the CLI option:
38
+ |
39
+ | -gt /path/to/global/toolchains.xml
40
+ |
41
+ | The sections in this sample file are intended to give you a running start at
42
+ | getting the most out of your Maven installation.
43
+ |-->
44
+ <toolchains xmlns="http://maven.apache.org/TOOLCHAINS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
45
+ xsi:schemaLocation="http://maven.apache.org/TOOLCHAINS/1.1.0 http://maven.apache.org/xsd/toolchains-1.1.0.xsd">
46
+
47
+ <!--
48
+ | With toolchains you can refer to installations on your system. This
49
+ | way you don't have to hardcode paths in your pom.xml.
50
+ |
51
+ | Every toolchain consist of 3 elements:
52
+ | * type: the type of tool. An often used value is 'jdk'. Toolchains-aware
53
+ | plugins should document which type you must use.
54
+ |
55
+ | * provides: A list of key/value-pairs.
56
+ | Based on the toolchain-configuration in the pom.xml Maven will search for
57
+ | matching <provides/> configuration. You can decide for yourself which key-value
58
+ | pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default
59
+ | the version has a special meaning. If you configured in the pom.xml '1.5'
60
+ | Maven will search for 1.5 and above.
61
+ |
62
+ | * configuration: Additional configuration for this tool.
63
+ | Look for documentation of the toolchains-aware plugin which configuration elements
64
+ | can be used.
65
+ |
66
+ | See also https://maven.apache.org/guides/mini/guide-using-toolchains.html
67
+ |
68
+ | General example
69
+
70
+ <toolchain>
71
+ <type/>
72
+ <provides>
73
+ <version>1.0</version>
74
+ </provides>
75
+ <configuration/>
76
+ </toolchain>
77
+
78
+ | JDK examples
79
+
80
+ <toolchain>
81
+ <type>jdk</type>
82
+ <provides>
83
+ <version>1.5</version>
84
+ <vendor>sun</vendor>
85
+ </provides>
86
+ <configuration>
87
+ <jdkHome>/path/to/jdk/1.5</jdkHome>
88
+ </configuration>
89
+ </toolchain>
90
+ <toolchain>
91
+ <type>jdk</type>
92
+ <provides>
93
+ <version>1.6</version>
94
+ <vendor>sun</vendor>
95
+ </provides>
96
+ <configuration>
97
+ <jdkHome>/path/to/jdk/1.6</jdkHome>
98
+ </configuration>
99
+ </toolchain>
100
+
101
+ -->
102
+
103
+ </toolchains>
@@ -0,0 +1,14 @@
1
+ The MIT License
2
+
3
+ Copyright (c) <year> <copyright holders>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
6
+ to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
7
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
13
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
14
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,14 @@
1
+ The MIT License
2
+
3
+ Copyright (c) <year> <copyright holders>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
6
+ to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
7
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
13
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
14
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,7 @@
1
+ This directory contains Jansi native libraries, extracted from Jansi jar.
2
+
3
+ You can add your own extensions for platforms not natively supported by
4
+ Jansi: the libraries follow HawtJNI directory and filename conventions.
5
+ See http://fusesource.github.io/hawtjni/documentation/api/org/fusesource/hawtjni/runtime/Library.html
6
+
7
+ See https://github.com/fusesource/jansi-native for native lib source.
@@ -0,0 +1,14 @@
1
+ The MIT License
2
+
3
+ Copyright (c) <year> <copyright holders>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
6
+ to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
7
+ and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8
+
9
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
13
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
14
+ OTHER DEALINGS IN THE SOFTWARE.
@@ -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.