rubyfox-server 2.13.6.2 → 2.16.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (616) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -1
  3. data/README.md +19 -0
  4. data/lib/rubyfox/server/cli.rb +39 -5
  5. data/lib/rubyfox/server/data/config/UploadsLock.txt +1 -1
  6. data/lib/rubyfox/server/data/config/admin/admintool.xml +1 -0
  7. data/lib/rubyfox/server/data/config/admin/descriptors/config_room.txt +97 -43
  8. data/lib/rubyfox/server/data/config/admin/descriptors/config_server.txt +307 -93
  9. data/lib/rubyfox/server/data/config/admin/descriptors/config_zone.txt +311 -95
  10. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_game.txt +5 -5
  11. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_mmo.txt +6 -6
  12. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_room.txt +69 -44
  13. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_user.txt +55 -43
  14. data/lib/rubyfox/server/data/config/admin/descriptors/runtime_zone.txt +81 -36
  15. data/lib/rubyfox/server/data/config/admin/gmc/gmc.py +55 -18
  16. data/lib/rubyfox/server/data/config/admin/icons/Analytics.png +0 -0
  17. data/lib/rubyfox/server/data/config/admin/icons/Analytics.svg +1 -0
  18. data/lib/rubyfox/server/data/config/admin/icons/BanManager.png +0 -0
  19. data/lib/rubyfox/server/data/config/admin/icons/BanManager.svg +1 -0
  20. data/lib/rubyfox/server/data/config/admin/icons/BlueBoxMonitor.png +0 -0
  21. data/lib/rubyfox/server/data/config/admin/icons/BlueBoxMonitor.svg +1 -0
  22. data/lib/rubyfox/server/data/config/admin/icons/Console.png +0 -0
  23. data/lib/rubyfox/server/data/config/admin/icons/Console.svg +9 -0
  24. data/lib/rubyfox/server/data/config/admin/icons/Dashboard.png +0 -0
  25. data/lib/rubyfox/server/data/config/admin/icons/Dashboard.svg +1 -0
  26. data/lib/rubyfox/server/data/config/admin/icons/ExtensionManager.png +0 -0
  27. data/lib/rubyfox/server/data/config/admin/icons/ExtensionManager.svg +1 -0
  28. data/lib/rubyfox/server/data/config/admin/icons/LicenseManager.png +0 -0
  29. data/lib/rubyfox/server/data/config/admin/icons/LicenseManager.svg +1 -0
  30. data/lib/rubyfox/server/data/config/admin/icons/LogViewer.png +0 -0
  31. data/lib/rubyfox/server/data/config/admin/icons/LogViewer.svg +1 -0
  32. data/lib/rubyfox/server/data/config/admin/icons/ServerConfigurator.png +0 -0
  33. data/lib/rubyfox/server/data/config/admin/icons/ServerConfigurator.svg +1 -0
  34. data/lib/rubyfox/server/data/config/admin/icons/ServletManager.svg +1 -0
  35. data/lib/rubyfox/server/data/config/admin/icons/ZoneConfigurator.png +0 -0
  36. data/lib/rubyfox/server/data/config/admin/icons/ZoneConfigurator.svg +1 -0
  37. data/lib/rubyfox/server/data/config/admin/icons/ZoneMonitor.png +0 -0
  38. data/lib/rubyfox/server/data/config/admin/icons/ZoneMonitor.svg +1 -0
  39. data/lib/rubyfox/server/data/config/core.xml +2 -2
  40. data/lib/rubyfox/server/data/config/log4j.properties +7 -7
  41. data/lib/rubyfox/server/data/config/server.xml +9 -10
  42. data/lib/rubyfox/server/data/config/wordsFile.txt +0 -2
  43. data/lib/rubyfox/server/data/data/GeoLite2-Country.mmdb +0 -0
  44. data/lib/rubyfox/server/data/{config → data/buddylists/BasicExamples}/.keep +0 -0
  45. data/lib/rubyfox/server/data/data/{buddylists → uploads}/.keep +0 -0
  46. data/lib/rubyfox/server/data/lib/BlueBox.war +0 -0
  47. data/lib/rubyfox/server/data/lib/apache-tomcat/.RELEASE-NOTES.swp +0 -0
  48. data/lib/rubyfox/server/data/lib/apache-tomcat/LICENSE +1061 -0
  49. data/lib/rubyfox/server/data/lib/apache-tomcat/NOTICE +68 -0
  50. data/lib/rubyfox/server/data/lib/apache-tomcat/README.md +79 -0
  51. data/lib/rubyfox/server/data/lib/apache-tomcat/RELEASE-NOTES +174 -0
  52. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/bootstrap.jar +0 -0
  53. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina-tasks.xml +39 -0
  54. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina.bat +387 -0
  55. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/catalina.sh +690 -0
  56. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/ciphers.bat +58 -0
  57. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/ciphers.sh +60 -0
  58. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/commons-daemon-native.tar.gz +0 -0
  59. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/commons-daemon.jar +0 -0
  60. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/configtest.bat +58 -0
  61. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/configtest.sh +60 -0
  62. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/daemon.sh +293 -0
  63. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/digest.bat +58 -0
  64. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/digest.sh +60 -0
  65. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/makebase.bat +114 -0
  66. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/makebase.sh +115 -0
  67. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/setclasspath.bat +94 -0
  68. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/setclasspath.sh +98 -0
  69. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/shutdown.bat +58 -0
  70. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/shutdown.sh +60 -0
  71. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/startup.bat +58 -0
  72. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/startup.sh +60 -0
  73. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tomcat-juli.jar +0 -0
  74. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tomcat-native.tar.gz +0 -0
  75. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tool-wrapper.bat +110 -0
  76. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/tool-wrapper.sh +153 -0
  77. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/version.bat +58 -0
  78. data/lib/rubyfox/server/data/lib/apache-tomcat/bin/version.sh +60 -0
  79. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/Catalina/localhost/rewrite.config +1 -0
  80. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/catalina.policy +260 -0
  81. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/catalina.properties +206 -0
  82. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/context.xml +31 -0
  83. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/jaspic-providers.xml +23 -0
  84. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/jaspic-providers.xsd +53 -0
  85. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/keystore.jks +0 -0
  86. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/logging.properties +79 -0
  87. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/server.xml +161 -0
  88. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/tomcat-users.xml +41 -0
  89. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/tomcat-users.xsd +59 -0
  90. data/lib/rubyfox/server/data/lib/apache-tomcat/conf/web.xml +4737 -0
  91. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/annotations-api.jar +0 -0
  92. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ant.jar +0 -0
  93. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ha.jar +0 -0
  94. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-ssi.jar +0 -0
  95. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-storeconfig.jar +0 -0
  96. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina-tribes.jar +0 -0
  97. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/catalina.jar +0 -0
  98. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/ecj-4.15.jar +0 -0
  99. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/el-api.jar +0 -0
  100. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jasper-el.jar +0 -0
  101. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jasper.jar +0 -0
  102. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jaspic-api.jar +0 -0
  103. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/jsp-api.jar +0 -0
  104. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/servlet-api.jar +0 -0
  105. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/sfs2x-ws-helper.jar +0 -0
  106. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-api.jar +0 -0
  107. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-coyote.jar +0 -0
  108. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-dbcp.jar +0 -0
  109. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-cs.jar +0 -0
  110. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-de.jar +0 -0
  111. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-es.jar +0 -0
  112. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-fr.jar +0 -0
  113. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ja.jar +0 -0
  114. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ko.jar +0 -0
  115. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-pt-BR.jar +0 -0
  116. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-ru.jar +0 -0
  117. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-i18n-zh-CN.jar +0 -0
  118. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-jdbc.jar +0 -0
  119. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-jni.jar +0 -0
  120. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-util-scan.jar +0 -0
  121. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-util.jar +0 -0
  122. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/tomcat-websocket.jar +0 -0
  123. data/lib/rubyfox/server/data/lib/apache-tomcat/lib/websocket-api.jar +0 -0
  124. data/lib/rubyfox/server/data/{extensions → lib/apache-tomcat/logs}/.keep +0 -0
  125. data/lib/rubyfox/server/data/lib/{jetty/lib/ext/.donotdelete → apache-tomcat/temp/safeToDelete.tmp} +0 -0
  126. data/lib/rubyfox/server/data/lib/{jetty/resources → apache-tomcat/work}/.keep +0 -0
  127. data/lib/rubyfox/server/data/lib/commons-collections-3.2.2.jar +0 -0
  128. data/lib/rubyfox/server/data/lib/commons-compress-1.19.jar +0 -0
  129. data/lib/rubyfox/server/data/lib/js/LibApi.js +48 -181
  130. data/lib/rubyfox/server/data/lib/sfs2x-admin.jar +0 -0
  131. data/lib/rubyfox/server/data/lib/sfs2x-core.jar +0 -0
  132. data/lib/rubyfox/server/data/lib/sfs2x-lib.jar +0 -0
  133. data/lib/rubyfox/server/data/lib/sfs2x-util.jar +0 -0
  134. data/lib/rubyfox/server/data/lib/sfs2x.jar +0 -0
  135. data/lib/rubyfox/server/data/sfs2x-service +6 -6
  136. data/lib/rubyfox/server/data/sfs2x-service.vmoptions +1 -1
  137. data/lib/rubyfox/server/data/sfs2x.sh +1 -1
  138. data/lib/rubyfox/server/data/www/BlueBox.war +0 -0
  139. data/lib/rubyfox/server/data/www/HelloServlet/index.jsp +1 -1
  140. data/lib/rubyfox/server/data/www/{root → ROOT}/_css_/default.css +0 -0
  141. data/lib/rubyfox/server/data/www/{root → ROOT}/_css_/reset.css +0 -0
  142. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/background_gradient.png +0 -0
  143. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/background_logo.png +0 -0
  144. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/favicon.png +0 -0
  145. data/lib/rubyfox/server/data/www/{root → ROOT}/_images_/logo_smartfoxserver.png +0 -0
  146. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/_changes-to-default-themes_.txt +15 -0
  147. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/bootstrap.min.css +7 -0
  148. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/custom-bootstrap.min.css +1 -0
  149. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/css/all.min.css +5 -0
  150. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.eot +0 -0
  151. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.svg +3459 -0
  152. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.ttf +0 -0
  153. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.woff +0 -0
  154. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
  155. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.eot +0 -0
  156. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.svg +803 -0
  157. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.ttf +0 -0
  158. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.woff +0 -0
  159. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
  160. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.eot +0 -0
  161. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.svg +4527 -0
  162. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.ttf +0 -0
  163. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.woff +0 -0
  164. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
  165. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/fonts.css +175 -0
  166. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/jquery.scrolling-tabs.min.css +8 -0
  167. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/kendo.custom-bootstrap-v4.css +15280 -0
  168. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/reset.css +54 -0
  169. data/lib/rubyfox/server/data/www/ROOT/admin/assets/css/style.css +1428 -0
  170. data/lib/rubyfox/server/data/www/ROOT/admin/assets/data/countries.geo.json +178 -0
  171. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.otf +0 -0
  172. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.ttf +0 -0
  173. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.woff +0 -0
  174. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/FreeMono.woff2 +0 -0
  175. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.ttf +0 -0
  176. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.woff +0 -0
  177. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300.woff2 +0 -0
  178. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.ttf +0 -0
  179. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.woff +0 -0
  180. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-300italic.woff2 +0 -0
  181. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.ttf +0 -0
  182. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.woff +0 -0
  183. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600.woff2 +0 -0
  184. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.ttf +0 -0
  185. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.woff +0 -0
  186. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-600italic.woff2 +0 -0
  187. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.ttf +0 -0
  188. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.woff +0 -0
  189. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700.woff2 +0 -0
  190. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.ttf +0 -0
  191. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.woff +0 -0
  192. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-700italic.woff2 +0 -0
  193. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.ttf +0 -0
  194. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.woff +0 -0
  195. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800.woff2 +0 -0
  196. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.ttf +0 -0
  197. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.woff +0 -0
  198. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-800italic.woff2 +0 -0
  199. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.ttf +0 -0
  200. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.woff +0 -0
  201. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-italic.woff2 +0 -0
  202. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.ttf +0 -0
  203. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.woff +0 -0
  204. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/open-sans-v15-cyrillic_greek_cyrillic-ext_vietnamese_latin_latin-ext_greek-ext-regular.woff2 +0 -0
  205. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.ttf +0 -0
  206. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.woff +0 -0
  207. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-300.woff2 +0 -0
  208. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.ttf +0 -0
  209. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.woff +0 -0
  210. data/lib/rubyfox/server/data/www/ROOT/admin/assets/fonts/roboto-condensed-v16-latin-700.woff2 +0 -0
  211. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/compare.png +0 -0
  212. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsChart.png +0 -0
  213. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsCompare.png +0 -0
  214. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsFilter.png +0 -0
  215. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsMap.png +0 -0
  216. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/demographicsTable.png +0 -0
  217. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyChart.png +0 -0
  218. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyCompare.png +0 -0
  219. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyFilter.png +0 -0
  220. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/analytics-adv/technologyTable.png +0 -0
  221. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/apple-touch-icon-180x180.png +0 -0
  222. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-16x16.png +0 -0
  223. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-32x32.png +0 -0
  224. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/favicon-64x64.png +0 -0
  225. data/lib/rubyfox/server/data/www/ROOT/admin/assets/images/logo.png +0 -0
  226. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/application.bundle.js +2208 -0
  227. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-0.bundle.js +7662 -0
  228. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-1.bundle.js +929 -0
  229. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-10.bundle.js +766 -0
  230. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-11.bundle.js +71 -0
  231. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-12.bundle.js +1184 -0
  232. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-12~module-13~module-9.bundle.js +2618 -0
  233. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-13.bundle.js +3315 -0
  234. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-3.bundle.js +280 -0
  235. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-4.bundle.js +1122 -0
  236. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-5.bundle.js +2624 -0
  237. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-6.bundle.js +801 -0
  238. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-7.bundle.js +607 -0
  239. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-8.bundle.js +1221 -0
  240. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/module-9.bundle.js +847 -0
  241. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-0.bundle.js +3240 -0
  242. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-0~module-1~module-13~module-4~module-5~module-7~module-8.bundle.js +17357 -0
  243. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/core/modules/vendors~module-9.bundle.js +807 -0
  244. data/lib/rubyfox/server/data/{lib/jetty/webapps → www/ROOT/admin/assets/js/custom-modules}/.keep +0 -0
  245. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/bootstrap.min.js +7 -0
  246. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/jquery-3.3.1.min.js +2 -0
  247. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/jquery.scrolling-tabs.min.js +8 -0
  248. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/js.cookie.min.js +8 -0
  249. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/kendo.all.min.js +136 -0
  250. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/popper.min.js +5 -0
  251. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/sfs2x-api-1.7.15.js +8 -0
  252. data/lib/rubyfox/server/data/www/ROOT/admin/assets/js/libs/versions-readme.txt +16 -0
  253. data/lib/rubyfox/server/data/www/ROOT/admin/index.html +244 -0
  254. data/lib/rubyfox/server/data/www/ROOT/admin/manifest.json +25 -0
  255. data/lib/rubyfox/server/data/www/ROOT/admin/modules/analytics.html +328 -0
  256. data/lib/rubyfox/server/data/www/ROOT/admin/modules/ban-manager.html +160 -0
  257. data/lib/rubyfox/server/data/www/ROOT/admin/modules/blue-box-monitor.html +37 -0
  258. data/lib/rubyfox/server/data/www/ROOT/admin/modules/console.html +135 -0
  259. data/lib/rubyfox/server/data/www/ROOT/admin/modules/dashboard.html +368 -0
  260. data/lib/rubyfox/server/data/www/ROOT/admin/modules/extension-manager.html +98 -0
  261. data/lib/rubyfox/server/data/www/ROOT/admin/modules/license-manager.html +117 -0
  262. data/lib/rubyfox/server/data/www/ROOT/admin/modules/log-viewer.html +194 -0
  263. data/lib/rubyfox/server/data/www/ROOT/admin/modules/server-configurator.html +55 -0
  264. data/lib/rubyfox/server/data/www/ROOT/admin/modules/servlet-manager.html +98 -0
  265. data/lib/rubyfox/server/data/www/ROOT/admin/modules/zone-configurator.html +62 -0
  266. data/lib/rubyfox/server/data/www/ROOT/admin/modules/zone-monitor.html +346 -0
  267. data/lib/rubyfox/server/data/www/{root → ROOT}/crossdomain.xml +0 -0
  268. data/lib/rubyfox/server/data/www/{root → ROOT}/examples/index.html +0 -0
  269. data/lib/rubyfox/server/data/www/{root → ROOT}/favicon.ico +0 -0
  270. data/lib/rubyfox/server/data/www/{root → ROOT}/favicon.png +0 -0
  271. data/lib/rubyfox/server/data/www/{root → ROOT}/index.html +0 -0
  272. data/lib/rubyfox/server/data/www/host-manager/META-INF/context.xml +24 -0
  273. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/401.jsp +71 -0
  274. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/403.jsp +90 -0
  275. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/jsp/404.jsp +62 -0
  276. data/lib/rubyfox/server/data/www/host-manager/WEB-INF/web.xml +131 -0
  277. data/lib/rubyfox/server/data/www/host-manager/images/asf-logo.svg +226 -0
  278. data/lib/rubyfox/server/data/www/host-manager/images/tomcat.gif +0 -0
  279. data/lib/rubyfox/server/data/www/host-manager/index.jsp +18 -0
  280. data/lib/rubyfox/server/data/www/host-manager/manager.xml +26 -0
  281. data/lib/rubyfox/server/data/{logs → www/logsBackup}/.keep +0 -0
  282. data/lib/rubyfox/server/data/www/manager/META-INF/context.xml +24 -0
  283. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/401.jsp +80 -0
  284. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/403.jsp +100 -0
  285. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/404.jsp +63 -0
  286. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorCerts.jsp +92 -0
  287. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorCiphers.jsp +92 -0
  288. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/connectorTrustedCerts.jsp +92 -0
  289. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/sessionDetail.jsp +197 -0
  290. data/lib/rubyfox/server/data/www/manager/WEB-INF/jsp/sessionsList.jsp +170 -0
  291. data/lib/rubyfox/server/data/www/manager/WEB-INF/web.xml +195 -0
  292. data/lib/rubyfox/server/data/www/manager/images/asf-logo.svg +226 -0
  293. data/lib/rubyfox/server/data/www/manager/images/tomcat.gif +0 -0
  294. data/lib/rubyfox/server/data/www/manager/index.jsp +18 -0
  295. data/lib/rubyfox/server/data/www/manager/status.xsd +84 -0
  296. data/lib/rubyfox/server/data/www/manager/xform.xsl +125 -0
  297. data/lib/rubyfox/server/version.rb +1 -1
  298. metadata +257 -339
  299. data/lib/rubyfox/server/data/config/ExtensionManagerLock.txt +0 -2
  300. data/lib/rubyfox/server/data/lib/Lib/reindex$py.class +0 -0
  301. data/lib/rubyfox/server/data/lib/jetty/VERSION.txt +0 -9707
  302. data/lib/rubyfox/server/data/lib/jetty/etc/README.spnego +0 -62
  303. data/lib/rubyfox/server/data/lib/jetty/etc/example-quickstart.xml +0 -27
  304. data/lib/rubyfox/server/data/lib/jetty/etc/gcloud-memcached-session-context.xml +0 -33
  305. data/lib/rubyfox/server/data/lib/jetty/etc/gcloud-session-context.xml +0 -25
  306. data/lib/rubyfox/server/data/lib/jetty/etc/hawtio.xml +0 -16
  307. data/lib/rubyfox/server/data/lib/jetty/etc/home-base-warning.xml +0 -8
  308. data/lib/rubyfox/server/data/lib/jetty/etc/jamon.xml +0 -32
  309. data/lib/rubyfox/server/data/lib/jetty/etc/jdbcRealm.properties +0 -72
  310. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-alpn.xml +0 -32
  311. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-annotations.xml +0 -20
  312. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-cdi.xml +0 -19
  313. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-debug.xml +0 -36
  314. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-debuglog.xml +0 -25
  315. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-deploy.xml +0 -76
  316. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-memcached-sessions.xml +0 -27
  317. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-session-idmgr.xml +0 -19
  318. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gcloud-sessions.xml +0 -27
  319. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gzip-inflate.xml +0 -12
  320. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-gzip.xml +0 -67
  321. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http-forwarded.xml +0 -20
  322. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http.xml +0 -47
  323. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http2.xml +0 -25
  324. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-http2c.xml +0 -17
  325. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-https.xml +0 -29
  326. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-infinispan.xml +0 -39
  327. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ipaccess.xml +0 -28
  328. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jaas.xml +0 -16
  329. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jdbc-sessions.xml +0 -34
  330. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jmx-remote.xml +0 -40
  331. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-jmx.xml +0 -32
  332. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-logging.xml +0 -36
  333. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-lowresources.xml +0 -22
  334. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-monitor.xml +0 -30
  335. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-nosql.xml +0 -19
  336. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-plus.xml +0 -26
  337. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy-protocol-ssl.xml +0 -10
  338. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy-protocol.xml +0 -10
  339. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-proxy.xml +0 -35
  340. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-requestlog.xml +0 -30
  341. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-rewrite-customizer.xml +0 -17
  342. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-rewrite.xml +0 -31
  343. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-setuid.xml +0 -30
  344. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-spring.xml +0 -61
  345. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ssl-context.xml +0 -31
  346. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-ssl.xml +0 -58
  347. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-started.xml +0 -15
  348. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-stats.xml +0 -18
  349. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-stop.xml +0 -6
  350. data/lib/rubyfox/server/data/lib/jetty/etc/jetty-threadlimit.xml +0 -20
  351. data/lib/rubyfox/server/data/lib/jetty/etc/jetty.conf +0 -12
  352. data/lib/rubyfox/server/data/lib/jetty/etc/jetty.xml +0 -195
  353. data/lib/rubyfox/server/data/lib/jetty/etc/jminix.xml +0 -12
  354. data/lib/rubyfox/server/data/lib/jetty/etc/jolokia.xml +0 -16
  355. data/lib/rubyfox/server/data/lib/jetty/etc/keystore +0 -0
  356. data/lib/rubyfox/server/data/lib/jetty/etc/krb5.ini +0 -23
  357. data/lib/rubyfox/server/data/lib/jetty/etc/rewrite-compactpath.xml +0 -10
  358. data/lib/rubyfox/server/data/lib/jetty/etc/sessions/hazelcast/default.xml +0 -19
  359. data/lib/rubyfox/server/data/lib/jetty/etc/sessions/hazelcast/remote.xml +0 -19
  360. data/lib/rubyfox/server/data/lib/jetty/etc/spnego.conf +0 -19
  361. data/lib/rubyfox/server/data/lib/jetty/etc/spnego.properties +0 -1
  362. data/lib/rubyfox/server/data/lib/jetty/etc/webdefault.xml +0 -539
  363. data/lib/rubyfox/server/data/lib/jetty/lib/alpn-api-1.1.3.v20160715.jar +0 -0
  364. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.eclipse.jdt.core.compiler.ecj-4.4.2.jar +0 -0
  365. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.eclipse.jetty.apache-jsp-9.3.27.v20190418.jar +0 -0
  366. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.mortbay.jasper.apache-el-8.0.33.jar +0 -0
  367. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jsp/org.mortbay.jasper.apache-jsp-8.0.33.jar +0 -0
  368. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-impl-1.2.5.jar +0 -0
  369. data/lib/rubyfox/server/data/lib/jetty/lib/apache-jstl/org.apache.taglibs.taglibs-standard-spec-1.2.5.jar +0 -0
  370. data/lib/rubyfox/server/data/lib/jetty/lib/asm-6.0.jar +0 -0
  371. data/lib/rubyfox/server/data/lib/jetty/lib/asm-commons-6.0.jar +0 -0
  372. data/lib/rubyfox/server/data/lib/jetty/lib/fcgi/fcgi-client-9.3.27.v20190418.jar +0 -0
  373. data/lib/rubyfox/server/data/lib/jetty/lib/fcgi/fcgi-server-9.3.27.v20190418.jar +0 -0
  374. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-common-9.3.27.v20190418.jar +0 -0
  375. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-hpack-9.3.27.v20190418.jar +0 -0
  376. data/lib/rubyfox/server/data/lib/jetty/lib/http2/http2-server-9.3.27.v20190418.jar +0 -0
  377. data/lib/rubyfox/server/data/lib/jetty/lib/jaspi/javax.security.auth.message-1.0.0.v201108011116.jar +0 -0
  378. data/lib/rubyfox/server/data/lib/jetty/lib/javax-websocket-client-impl-9.3.27.v20190418.jar +0 -0
  379. data/lib/rubyfox/server/data/lib/jetty/lib/javax-websocket-server-impl-9.3.27.v20190418.jar +0 -0
  380. data/lib/rubyfox/server/data/lib/jetty/lib/javax.annotation-api-1.2.jar +0 -0
  381. data/lib/rubyfox/server/data/lib/jetty/lib/javax.websocket-api-1.0.jar +0 -0
  382. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-alpn-java-server-9.3.27.v20190418.jar +0 -0
  383. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-alpn-server-9.3.27.v20190418.jar +0 -0
  384. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-annotations-9.3.27.v20190418.jar +0 -0
  385. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-client-9.3.27.v20190418.jar +0 -0
  386. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-continuation-9.3.27.v20190418.jar +0 -0
  387. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-deploy-9.3.27.v20190418.jar +0 -0
  388. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-gcloud-memcached-session-manager-9.3.27.v20190418.jar +0 -0
  389. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-gcloud-session-manager-9.3.27.v20190418.jar +0 -0
  390. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-hazelcast-9.3.27.v20190418.jar +0 -0
  391. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-http-9.3.27.v20190418.jar +0 -0
  392. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-infinispan-9.3.27.v20190418.jar +0 -0
  393. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-io-9.3.27.v20190418.jar +0 -0
  394. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jaas-9.3.27.v20190418.jar +0 -0
  395. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jaspi-9.3.27.v20190418.jar +0 -0
  396. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jmx-9.3.27.v20190418.jar +0 -0
  397. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-jndi-9.3.27.v20190418.jar +0 -0
  398. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-nosql-9.3.27.v20190418.jar +0 -0
  399. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-plus-9.3.27.v20190418.jar +0 -0
  400. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-proxy-9.3.27.v20190418.jar +0 -0
  401. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-quickstart-9.3.27.v20190418.jar +0 -0
  402. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-rewrite-9.3.27.v20190418.jar +0 -0
  403. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-schemas-3.1.jar +0 -0
  404. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-security-9.3.27.v20190418.jar +0 -0
  405. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-server-9.3.27.v20190418.jar +0 -0
  406. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-servlet-9.3.27.v20190418.jar +0 -0
  407. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-servlets-9.3.27.v20190418.jar +0 -0
  408. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-util-9.3.27.v20190418.jar +0 -0
  409. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-webapp-9.3.27.v20190418.jar +0 -0
  410. data/lib/rubyfox/server/data/lib/jetty/lib/jetty-xml-9.3.27.v20190418.jar +0 -0
  411. data/lib/rubyfox/server/data/lib/jetty/lib/jndi/javax.mail.glassfish-1.4.1.v201005082020.jar +0 -0
  412. data/lib/rubyfox/server/data/lib/jetty/lib/jndi/javax.transaction-api-1.2.jar +0 -0
  413. data/lib/rubyfox/server/data/lib/jetty/lib/monitor/jetty-monitor-9.3.27.v20190418.jar +0 -0
  414. data/lib/rubyfox/server/data/lib/jetty/lib/servlet-api-3.1.jar +0 -0
  415. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/jetty-setuid-java-1.0.3.jar +0 -0
  416. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/libsetuid-linux.so +0 -0
  417. data/lib/rubyfox/server/data/lib/jetty/lib/setuid/libsetuid-osx.so +0 -0
  418. data/lib/rubyfox/server/data/lib/jetty/lib/spring/jetty-spring-9.3.27.v20190418.jar +0 -0
  419. data/lib/rubyfox/server/data/lib/jetty/lib/start.jar +0 -0
  420. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-api-9.3.27.v20190418.jar +0 -0
  421. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-client-9.3.27.v20190418.jar +0 -0
  422. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-common-9.3.27.v20190418.jar +0 -0
  423. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-server-9.3.27.v20190418.jar +0 -0
  424. data/lib/rubyfox/server/data/lib/jetty/lib/websocket-servlet-9.3.27.v20190418.jar +0 -0
  425. data/lib/rubyfox/server/data/lib/jetty/license-eplv10-aslv20.html +0 -576
  426. data/lib/rubyfox/server/data/lib/jetty/modules/.donotdelete +0 -0
  427. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0.mod +0 -8
  428. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_05.mod +0 -8
  429. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_101.mod +0 -8
  430. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_102.mod +0 -8
  431. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_11.mod +0 -8
  432. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_111.mod +0 -8
  433. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_112.mod +0 -8
  434. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_121.mod +0 -8
  435. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_131.mod +0 -8
  436. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_141.mod +0 -8
  437. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_144.mod +0 -8
  438. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_151.mod +0 -8
  439. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_152.mod +0 -8
  440. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_161.mod +0 -8
  441. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_162.mod +0 -8
  442. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_171.mod +0 -8
  443. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_172.mod +0 -8
  444. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_181.mod +0 -8
  445. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_191.mod +0 -8
  446. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_192.mod +0 -8
  447. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_20.mod +0 -8
  448. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_201.mod +0 -8
  449. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_202.mod +0 -8
  450. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_211.mod +0 -8
  451. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_212.mod +0 -8
  452. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_25.mod +0 -8
  453. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_31.mod +0 -8
  454. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_40.mod +0 -8
  455. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_45.mod +0 -8
  456. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_51.mod +0 -8
  457. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_60.mod +0 -8
  458. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_65.mod +0 -8
  459. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_66.mod +0 -8
  460. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_71.mod +0 -8
  461. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_72.mod +0 -8
  462. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_73.mod +0 -8
  463. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_74.mod +0 -8
  464. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_77.mod +0 -8
  465. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_91.mod +0 -8
  466. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-1.8.0_92.mod +0 -8
  467. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-8.mod +0 -30
  468. data/lib/rubyfox/server/data/lib/jetty/modules/alpn-impl/alpn-9.mod +0 -5
  469. data/lib/rubyfox/server/data/lib/jetty/modules/alpn.mod +0 -22
  470. data/lib/rubyfox/server/data/lib/jetty/modules/annotations.mod +0 -17
  471. data/lib/rubyfox/server/data/lib/jetty/modules/apache-jsp.mod +0 -10
  472. data/lib/rubyfox/server/data/lib/jetty/modules/apache-jstl.mod +0 -9
  473. data/lib/rubyfox/server/data/lib/jetty/modules/cdi.mod +0 -38
  474. data/lib/rubyfox/server/data/lib/jetty/modules/client.mod +0 -6
  475. data/lib/rubyfox/server/data/lib/jetty/modules/continuation.mod +0 -6
  476. data/lib/rubyfox/server/data/lib/jetty/modules/debug.mod +0 -29
  477. data/lib/rubyfox/server/data/lib/jetty/modules/debuglog.mod +0 -25
  478. data/lib/rubyfox/server/data/lib/jetty/modules/deploy.mod +0 -31
  479. data/lib/rubyfox/server/data/lib/jetty/modules/ext.mod +0 -11
  480. data/lib/rubyfox/server/data/lib/jetty/modules/fcgi.mod +0 -15
  481. data/lib/rubyfox/server/data/lib/jetty/modules/flight-recorder.mod +0 -13
  482. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-memcached-sessions.mod +0 -26
  483. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-session-idmgr.mod +0 -63
  484. data/lib/rubyfox/server/data/lib/jetty/modules/gcloud-sessions.mod +0 -11
  485. data/lib/rubyfox/server/data/lib/jetty/modules/gzip-inflate.mod +0 -17
  486. data/lib/rubyfox/server/data/lib/jetty/modules/gzip.mod +0 -23
  487. data/lib/rubyfox/server/data/lib/jetty/modules/hawtio.mod +0 -28
  488. data/lib/rubyfox/server/data/lib/jetty/modules/hazelcast-embedded-sessions.mod +0 -26
  489. data/lib/rubyfox/server/data/lib/jetty/modules/hazelcast-remote-sessions.mod +0 -26
  490. data/lib/rubyfox/server/data/lib/jetty/modules/home-base-warning.mod +0 -7
  491. data/lib/rubyfox/server/data/lib/jetty/modules/http-forwarded.mod +0 -24
  492. data/lib/rubyfox/server/data/lib/jetty/modules/http.mod +0 -39
  493. data/lib/rubyfox/server/data/lib/jetty/modules/http2.mod +0 -20
  494. data/lib/rubyfox/server/data/lib/jetty/modules/http2c.mod +0 -22
  495. data/lib/rubyfox/server/data/lib/jetty/modules/https.mod +0 -14
  496. data/lib/rubyfox/server/data/lib/jetty/modules/infinispan.mod +0 -33
  497. data/lib/rubyfox/server/data/lib/jetty/modules/ipaccess.mod +0 -9
  498. data/lib/rubyfox/server/data/lib/jetty/modules/jaas.mod +0 -17
  499. data/lib/rubyfox/server/data/lib/jetty/modules/jamon.mod +0 -31
  500. data/lib/rubyfox/server/data/lib/jetty/modules/jaspi.mod +0 -10
  501. data/lib/rubyfox/server/data/lib/jetty/modules/jdbc-sessions.mod +0 -27
  502. data/lib/rubyfox/server/data/lib/jetty/modules/jminix.mod +0 -41
  503. data/lib/rubyfox/server/data/lib/jetty/modules/jmx-remote.mod +0 -16
  504. data/lib/rubyfox/server/data/lib/jetty/modules/jmx.mod +0 -13
  505. data/lib/rubyfox/server/data/lib/jetty/modules/jndi.mod +0 -11
  506. data/lib/rubyfox/server/data/lib/jetty/modules/jolokia.mod +0 -19
  507. data/lib/rubyfox/server/data/lib/jetty/modules/jsp.mod +0 -9
  508. data/lib/rubyfox/server/data/lib/jetty/modules/jstl.mod +0 -8
  509. data/lib/rubyfox/server/data/lib/jetty/modules/jvm.mod +0 -22
  510. data/lib/rubyfox/server/data/lib/jetty/modules/logging.mod +0 -36
  511. data/lib/rubyfox/server/data/lib/jetty/modules/lowresources.mod +0 -28
  512. data/lib/rubyfox/server/data/lib/jetty/modules/monitor.mod +0 -13
  513. data/lib/rubyfox/server/data/lib/jetty/modules/nosql.mod +0 -31
  514. data/lib/rubyfox/server/data/lib/jetty/modules/npn.mod +0 -4
  515. data/lib/rubyfox/server/data/lib/jetty/modules/plus.mod +0 -15
  516. data/lib/rubyfox/server/data/lib/jetty/modules/proxy-protocol-ssl.mod +0 -9
  517. data/lib/rubyfox/server/data/lib/jetty/modules/proxy-protocol.mod +0 -9
  518. data/lib/rubyfox/server/data/lib/jetty/modules/proxy.mod +0 -22
  519. data/lib/rubyfox/server/data/lib/jetty/modules/quickstart.mod +0 -11
  520. data/lib/rubyfox/server/data/lib/jetty/modules/requestlog.mod +0 -40
  521. data/lib/rubyfox/server/data/lib/jetty/modules/resources.mod +0 -10
  522. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite-compactpath.mod +0 -10
  523. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite-customizer.mod +0 -24
  524. data/lib/rubyfox/server/data/lib/jetty/modules/rewrite.mod +0 -23
  525. data/lib/rubyfox/server/data/lib/jetty/modules/security.mod +0 -9
  526. data/lib/rubyfox/server/data/lib/jetty/modules/server.mod +0 -82
  527. data/lib/rubyfox/server/data/lib/jetty/modules/servlet.mod +0 -9
  528. data/lib/rubyfox/server/data/lib/jetty/modules/servlets.mod +0 -11
  529. data/lib/rubyfox/server/data/lib/jetty/modules/setuid.mod +0 -19
  530. data/lib/rubyfox/server/data/lib/jetty/modules/spring.mod +0 -17
  531. data/lib/rubyfox/server/data/lib/jetty/modules/ssl.mod +0 -101
  532. data/lib/rubyfox/server/data/lib/jetty/modules/stats.mod +0 -9
  533. data/lib/rubyfox/server/data/lib/jetty/modules/threadlimit.mod +0 -22
  534. data/lib/rubyfox/server/data/lib/jetty/modules/webapp.mod +0 -10
  535. data/lib/rubyfox/server/data/lib/jetty/modules/websocket.mod +0 -12
  536. data/lib/rubyfox/server/data/lib/jetty/notice.html +0 -111
  537. data/lib/rubyfox/server/data/lib/jetty/start.d/README.TXT +0 -24
  538. data/lib/rubyfox/server/data/lib/jetty/start.d/http.ini +0 -7
  539. data/lib/rubyfox/server/data/lib/jetty/start.d/https.ini +0 -10
  540. data/lib/rubyfox/server/data/lib/jetty/start.d/ssl.ini +0 -19
  541. data/lib/rubyfox/server/data/lib/jetty/start.ini +0 -85
  542. data/lib/rubyfox/server/data/www/.keep +0 -0
  543. data/lib/rubyfox/server/data/www/HelloServlet/META-INF/context.xml +0 -2
  544. data/lib/rubyfox/server/data/www/PyServletExample/MyModule$py.class +0 -0
  545. data/lib/rubyfox/server/data/www/PyServletExample/MyModule.py +0 -5
  546. data/lib/rubyfox/server/data/www/PyServletExample/WEB-INF/web.xml +0 -37
  547. data/lib/rubyfox/server/data/www/PyServletExample/errors/404.htm +0 -20
  548. data/lib/rubyfox/server/data/www/PyServletExample/index.py +0 -42
  549. data/lib/rubyfox/server/data/www/root/admin/.keep +0 -0
  550. data/lib/rubyfox/server/data/www/root/admin/AdminTool.swf +0 -0
  551. data/lib/rubyfox/server/data/www/root/admin/ReleaseNotes.txt +0 -201
  552. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/adobeFlashPlayer.png +0 -0
  553. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/advanced.png +0 -0
  554. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/analytics.png +0 -0
  555. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/banManager.png +0 -0
  556. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bannedIPs.png +0 -0
  557. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bannedUsernames.png +0 -0
  558. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bookmarks.png +0 -0
  559. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/bootLog.png +0 -0
  560. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/buddyList.png +0 -0
  561. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/buddyProperties.png +0 -0
  562. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/connection.png +0 -0
  563. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/databaseManager.png +0 -0
  564. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/floodFilter.png +0 -0
  565. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/gameSettings.png +0 -0
  566. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/general.png +0 -0
  567. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/globalServerStatus.png +0 -0
  568. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/hTML5WebSockets.png +0 -0
  569. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/iPDiscovery.png +0 -0
  570. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/iPFilter.png +0 -0
  571. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/jVMSettings.png +0 -0
  572. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/logsDownload.png +0 -0
  573. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/mMOSettings.png +0 -0
  574. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/mailer.png +0 -0
  575. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/permissionsAndEvents.png +0 -0
  576. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/privilegeManager.png +0 -0
  577. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/remoteAdmin.png +0 -0
  578. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomExtension.png +0 -0
  579. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomVariables.png +0 -0
  580. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/roomsAndGroups.png +0 -0
  581. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeLog.png +0 -0
  582. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeRoomSettings.png +0 -0
  583. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeUserSettings.png +0 -0
  584. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/runtimeZoneSettings.png +0 -0
  585. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsApplication.png +0 -0
  586. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsDemographics.png +0 -0
  587. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsExceptions.png +0 -0
  588. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsOverview.png +0 -0
  589. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/statsTechnology.png +0 -0
  590. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/systemQueueStatus.png +0 -0
  591. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/threadPools.png +0 -0
  592. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/userManagement.png +0 -0
  593. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/userVariables.png +0 -0
  594. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/webServer.png +0 -0
  595. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/wordsFilter.png +0 -0
  596. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/zoneExtension.png +0 -0
  597. data/lib/rubyfox/server/data/www/root/admin/assets/icons/tabs/zoneTraffic.png +0 -0
  598. data/lib/rubyfox/server/data/www/root/admin/expressInstall.swf +0 -0
  599. data/lib/rubyfox/server/data/www/root/admin/index.html +0 -124
  600. data/lib/rubyfox/server/data/www/root/admin/modules/Analytics.swf +0 -0
  601. data/lib/rubyfox/server/data/www/root/admin/modules/BanManager.swf +0 -0
  602. data/lib/rubyfox/server/data/www/root/admin/modules/BlueBoxMonitor.swf +0 -0
  603. data/lib/rubyfox/server/data/www/root/admin/modules/Console.swf +0 -0
  604. data/lib/rubyfox/server/data/www/root/admin/modules/Dashboard.swf +0 -0
  605. data/lib/rubyfox/server/data/www/root/admin/modules/ExtensionManager.swf +0 -0
  606. data/lib/rubyfox/server/data/www/root/admin/modules/LicenseManager.swf +0 -0
  607. data/lib/rubyfox/server/data/www/root/admin/modules/LogViewer.swf +0 -0
  608. data/lib/rubyfox/server/data/www/root/admin/modules/ServerConfigurator.swf +0 -0
  609. data/lib/rubyfox/server/data/www/root/admin/modules/ServletManager.swf +0 -0
  610. data/lib/rubyfox/server/data/www/root/admin/modules/ZoneConfigurator.swf +0 -0
  611. data/lib/rubyfox/server/data/www/root/admin/modules/ZoneMonitor.swf +0 -0
  612. data/lib/rubyfox/server/data/www/root/admin/swfobject.js +0 -4
  613. data/lib/rubyfox/server/data/www/root/examples/.keep +0 -0
  614. data/lib/rubyfox/server/data/www/sfs2x-ws.war +0 -0
  615. data/lib/rubyfox/server/data/www/sfs2x-ws.xml +0 -30
  616. data/lib/rubyfox/server/data/zones/BasicExamples.zone.xml +0 -147
@@ -1,576 +0,0 @@
1
- <html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"><head>
2
-
3
-
4
- <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
5
- <meta name="ProgId" content="Word.Document">
6
- <meta name="Generator" content="Microsoft Word 9">
7
- <meta name="Originator" content="Microsoft Word 9">
8
- <link rel="File-List" href="http://www.eclipse.org/legal/Eclipse%20EPL%202003_11_10%20Final_files/filelist.xml">
9
- <title>Eclipse Public License - Version 1.0 / Apache License - Version 2.0</title>
10
- <!--[if gte mso 9]><xml>
11
- <o:DocumentProperties>
12
- <o:Revision>2</o:Revision>
13
- <o:TotalTime>3</o:TotalTime>
14
- <o:Created>2004-03-05T23:03:00Z</o:Created>
15
- <o:LastSaved>2004-03-05T23:03:00Z</o:LastSaved>
16
- <o:Pages>4</o:Pages>
17
- <o:Words>1626</o:Words>
18
- <o:Characters>9270</o:Characters>
19
- <o:Lines>77</o:Lines>
20
- <o:Paragraphs>18</o:Paragraphs>
21
- <o:CharactersWithSpaces>11384</o:CharactersWithSpaces>
22
- <o:Version>9.4402</o:Version>
23
- </o:DocumentProperties>
24
- </xml><![endif]--><!--[if gte mso 9]><xml>
25
- <w:WordDocument>
26
- <w:TrackRevisions/>
27
- </w:WordDocument>
28
- </xml><![endif]-->
29
- <style>
30
- <!--
31
- /* Font Definitions */
32
- @font-face
33
- {font-family:Tahoma;
34
- panose-1:2 11 6 4 3 5 4 4 2 4;
35
- mso-font-charset:0;
36
- mso-generic-font-family:swiss;
37
- mso-font-pitch:variable;
38
- mso-font-signature:553679495 -2147483648 8 0 66047 0;}
39
- /* Style Definitions */
40
- p.MsoNormal, li.MsoNormal, div.MsoNormal
41
- {mso-style-parent:"";
42
- margin:0in;
43
- margin-bottom:.0001pt;
44
- mso-pagination:widow-orphan;
45
- font-size:12.0pt;
46
- font-family:"Times New Roman";
47
- mso-fareast-font-family:"Times New Roman";}
48
- p
49
- {margin-right:0in;
50
- mso-margin-top-alt:auto;
51
- mso-margin-bottom-alt:auto;
52
- margin-left:0in;
53
- mso-pagination:widow-orphan;
54
- font-size:12.0pt;
55
- font-family:"Times New Roman";
56
- mso-fareast-font-family:"Times New Roman";}
57
- p.BalloonText, li.BalloonText, div.BalloonText
58
- {mso-style-name:"Balloon Text";
59
- margin:0in;
60
- margin-bottom:.0001pt;
61
- mso-pagination:widow-orphan;
62
- font-size:8.0pt;
63
- font-family:Tahoma;
64
- mso-fareast-font-family:"Times New Roman";}
65
- @page Section1
66
- {size:8.5in 11.0in;
67
- margin:1.0in 1.25in 1.0in 1.25in;
68
- mso-header-margin:.5in;
69
- mso-footer-margin:.5in;
70
- mso-paper-source:0;}
71
- div.Section1
72
- {page:Section1;}
73
- -->
74
- </style>
75
- </head><body style="" lang="EN-US">
76
-
77
- <div class="Section1">
78
-
79
- <p style="text-align: center;" align="center"><b>Eclipse Public License - v 1.0</b>
80
- </p>
81
-
82
- <p><span style="font-size: 10pt;">THE ACCOMPANYING PROGRAM IS PROVIDED UNDER
83
- THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE,
84
- REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE
85
- OF THIS AGREEMENT.</span> </p>
86
-
87
- <p><b><span style="font-size: 10pt;">1. DEFINITIONS</span></b> </p>
88
-
89
- <p><span style="font-size: 10pt;">"Contribution" means:</span> </p>
90
-
91
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">a)
92
- in the case of the initial Contributor, the initial code and documentation
93
- distributed under this Agreement, and<br clear="left">
94
- b) in the case of each subsequent Contributor:</span></p>
95
-
96
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">i)
97
- changes to the Program, and</span></p>
98
-
99
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">ii)
100
- additions to the Program;</span></p>
101
-
102
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">where
103
- such changes and/or additions to the Program originate from and are distributed
104
- by that particular Contributor. A Contribution 'originates' from a Contributor
105
- if it was added to the Program by such Contributor itself or anyone acting on
106
- such Contributor's behalf. Contributions do not include additions to the
107
- Program which: (i) are separate modules of software distributed in conjunction
108
- with the Program under their own license agreement, and (ii) are not derivative
109
- works of the Program. </span></p>
110
-
111
- <p><span style="font-size: 10pt;">"Contributor" means any person or
112
- entity that distributes the Program.</span> </p>
113
-
114
- <p><span style="font-size: 10pt;">"Licensed Patents " mean patent
115
- claims licensable by a Contributor which are necessarily infringed by the use
116
- or sale of its Contribution alone or when combined with the Program. </span></p>
117
-
118
- <p><span style="font-size: 10pt;">"Program" means the Contributions
119
- distributed in accordance with this Agreement.</span> </p>
120
-
121
- <p><span style="font-size: 10pt;">"Recipient" means anyone who
122
- receives the Program under this Agreement, including all Contributors.</span> </p>
123
-
124
- <p><b><span style="font-size: 10pt;">2. GRANT OF RIGHTS</span></b> </p>
125
-
126
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">a)
127
- Subject to the terms of this Agreement, each Contributor hereby grants Recipient
128
- a non-exclusive, worldwide, royalty-free copyright license to<span style="color: red;"> </span>reproduce, prepare derivative works of, publicly
129
- display, publicly perform, distribute and sublicense the Contribution of such
130
- Contributor, if any, and such derivative works, in source code and object code
131
- form.</span></p>
132
-
133
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">b)
134
- Subject to the terms of this Agreement, each Contributor hereby grants
135
- Recipient a non-exclusive, worldwide,<span style="color: green;"> </span>royalty-free
136
- patent license under Licensed Patents to make, use, sell, offer to sell, import
137
- and otherwise transfer the Contribution of such Contributor, if any, in source
138
- code and object code form. This patent license shall apply to the combination
139
- of the Contribution and the Program if, at the time the Contribution is added
140
- by the Contributor, such addition of the Contribution causes such combination
141
- to be covered by the Licensed Patents. The patent license shall not apply to
142
- any other combinations which include the Contribution. No hardware per se is
143
- licensed hereunder. </span></p>
144
-
145
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">c)
146
- Recipient understands that although each Contributor grants the licenses to its
147
- Contributions set forth herein, no assurances are provided by any Contributor
148
- that the Program does not infringe the patent or other intellectual property
149
- rights of any other entity. Each Contributor disclaims any liability to Recipient
150
- for claims brought by any other entity based on infringement of intellectual
151
- property rights or otherwise. As a condition to exercising the rights and
152
- licenses granted hereunder, each Recipient hereby assumes sole responsibility
153
- to secure any other intellectual property rights needed, if any. For example,
154
- if a third party patent license is required to allow Recipient to distribute
155
- the Program, it is Recipient's responsibility to acquire that license before
156
- distributing the Program.</span></p>
157
-
158
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">d)
159
- Each Contributor represents that to its knowledge it has sufficient copyright
160
- rights in its Contribution, if any, to grant the copyright license set forth in
161
- this Agreement. </span></p>
162
-
163
- <p><b><span style="font-size: 10pt;">3. REQUIREMENTS</span></b> </p>
164
-
165
- <p><span style="font-size: 10pt;">A Contributor may choose to distribute the
166
- Program in object code form under its own license agreement, provided that:</span>
167
- </p>
168
-
169
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">a)
170
- it complies with the terms and conditions of this Agreement; and</span></p>
171
-
172
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">b)
173
- its license agreement:</span></p>
174
-
175
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">i)
176
- effectively disclaims on behalf of all Contributors all warranties and
177
- conditions, express and implied, including warranties or conditions of title
178
- and non-infringement, and implied warranties or conditions of merchantability
179
- and fitness for a particular purpose; </span></p>
180
-
181
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">ii)
182
- effectively excludes on behalf of all Contributors all liability for damages,
183
- including direct, indirect, special, incidental and consequential damages, such
184
- as lost profits; </span></p>
185
-
186
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">iii)
187
- states that any provisions which differ from this Agreement are offered by that
188
- Contributor alone and not by any other party; and</span></p>
189
-
190
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">iv)
191
- states that source code for the Program is available from such Contributor, and
192
- informs licensees how to obtain it in a reasonable manner on or through a
193
- medium customarily used for software exchange.<span style="color: blue;"> </span></span></p>
194
-
195
- <p><span style="font-size: 10pt;">When the Program is made available in source
196
- code form:</span> </p>
197
-
198
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">a)
199
- it must be made available under this Agreement; and </span></p>
200
-
201
- <p class="MsoNormal" style="margin-left: 0.5in;"><span style="font-size: 10pt;">b) a
202
- copy of this Agreement must be included with each copy of the Program. </span></p>
203
-
204
- <p><span style="font-size: 10pt;">Contributors may not remove or alter any
205
- copyright notices contained within the Program. </span></p>
206
-
207
- <p><span style="font-size: 10pt;">Each Contributor must identify itself as the
208
- originator of its Contribution, if any, in a manner that reasonably allows
209
- subsequent Recipients to identify the originator of the Contribution. </span></p>
210
-
211
- <p><b><span style="font-size: 10pt;">4. COMMERCIAL DISTRIBUTION</span></b> </p>
212
-
213
- <p><span style="font-size: 10pt;">Commercial distributors of software may
214
- accept certain responsibilities with respect to end users, business partners
215
- and the like. While this license is intended to facilitate the commercial use
216
- of the Program, the Contributor who includes the Program in a commercial
217
- product offering should do so in a manner which does not create potential
218
- liability for other Contributors. Therefore, if a Contributor includes the
219
- Program in a commercial product offering, such Contributor ("Commercial
220
- Contributor") hereby agrees to defend and indemnify every other
221
- Contributor ("Indemnified Contributor") against any losses, damages and
222
- costs (collectively "Losses") arising from claims, lawsuits and other
223
- legal actions brought by a third party against the Indemnified Contributor to
224
- the extent caused by the acts or omissions of such Commercial Contributor in
225
- connection with its distribution of the Program in a commercial product
226
- offering. The obligations in this section do not apply to any claims or Losses
227
- relating to any actual or alleged intellectual property infringement. In order
228
- to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
229
- Contributor in writing of such claim, and b) allow the Commercial Contributor
230
- to control, and cooperate with the Commercial Contributor in, the defense and
231
- any related settlement negotiations. The Indemnified Contributor may participate
232
- in any such claim at its own expense.</span> </p>
233
-
234
- <p><span style="font-size: 10pt;">For example, a Contributor might include the
235
- Program in a commercial product offering, Product X. That Contributor is then a
236
- Commercial Contributor. If that Commercial Contributor then makes performance
237
- claims, or offers warranties related to Product X, those performance claims and
238
- warranties are such Commercial Contributor's responsibility alone. Under this
239
- section, the Commercial Contributor would have to defend claims against the
240
- other Contributors related to those performance claims and warranties, and if a
241
- court requires any other Contributor to pay any damages as a result, the
242
- Commercial Contributor must pay those damages.</span> </p>
243
-
244
- <p><b><span style="font-size: 10pt;">5. NO WARRANTY</span></b> </p>
245
-
246
- <p><span style="font-size: 10pt;">EXCEPT AS EXPRESSLY SET FORTH IN THIS
247
- AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT
248
- WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
249
- WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
250
- MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
251
- responsible for determining the appropriateness of using and distributing the
252
- Program and assumes all risks associated with its exercise of rights under this
253
- Agreement , including but not limited to the risks and costs of program errors,
254
- compliance with applicable laws, damage to or loss of data, programs or
255
- equipment, and unavailability or interruption of operations. </span></p>
256
-
257
- <p><b><span style="font-size: 10pt;">6. DISCLAIMER OF LIABILITY</span></b> </p>
258
-
259
- <p><span style="font-size: 10pt;">EXCEPT AS EXPRESSLY SET FORTH IN THIS
260
- AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR
261
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
262
- (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY
263
- OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
264
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF
265
- THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF
266
- THE POSSIBILITY OF SUCH DAMAGES.</span> </p>
267
-
268
- <p><b><span style="font-size: 10pt;">7. GENERAL</span></b> </p>
269
-
270
- <p><span style="font-size: 10pt;">If any provision of this Agreement is invalid
271
- or unenforceable under applicable law, it shall not affect the validity or
272
- enforceability of the remainder of the terms of this Agreement, and without
273
- further action by the parties hereto, such provision shall be reformed to the
274
- minimum extent necessary to make such provision valid and enforceable.</span> </p>
275
-
276
- <p><span style="font-size: 10pt;">If Recipient institutes patent litigation
277
- against any entity (including a cross-claim or counterclaim in a lawsuit)
278
- alleging that the Program itself (excluding combinations of the Program with
279
- other software or hardware) infringes such Recipient's patent(s), then such
280
- Recipient's rights granted under Section 2(b) shall terminate as of the date
281
- such litigation is filed. </span></p>
282
-
283
- <p><span style="font-size: 10pt;">All Recipient's rights under this Agreement
284
- shall terminate if it fails to comply with any of the material terms or
285
- conditions of this Agreement and does not cure such failure in a reasonable
286
- period of time after becoming aware of such noncompliance. If all Recipient's
287
- rights under this Agreement terminate, Recipient agrees to cease use and
288
- distribution of the Program as soon as reasonably practicable. However,
289
- Recipient's obligations under this Agreement and any licenses granted by
290
- Recipient relating to the Program shall continue and survive. </span></p>
291
-
292
- <p><span style="font-size: 10pt;">Everyone is permitted to copy and distribute
293
- copies of this Agreement, but in order to avoid inconsistency the Agreement is
294
- copyrighted and may only be modified in the following manner. The Agreement
295
- Steward reserves the right to publish new versions (including revisions) of
296
- this Agreement from time to time. No one other than the Agreement Steward has
297
- the right to modify this Agreement. The Eclipse Foundation is the initial
298
- Agreement Steward. The Eclipse Foundation may assign the responsibility to
299
- serve as the Agreement Steward to a suitable separate entity. Each new version
300
- of the Agreement will be given a distinguishing version number. The Program
301
- (including Contributions) may always be distributed subject to the version of
302
- the Agreement under which it was received. In addition, after a new version of
303
- the Agreement is published, Contributor may elect to distribute the Program
304
- (including its Contributions) under the new version. Except as expressly stated
305
- in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to
306
- the intellectual property of any Contributor under this Agreement, whether
307
- expressly, by implication, estoppel or otherwise. All rights in the Program not
308
- expressly granted under this Agreement are reserved.</span> </p>
309
-
310
- <p><span style="font-size: 10pt;">This Agreement is governed by the laws of the
311
- State of New York and the intellectual property laws of the United States of
312
- America. No party to this Agreement will bring a legal action under this
313
- Agreement more than one year after the cause of action arose. Each party waives
314
- its rights to a jury trial in any resulting litigation.</span> </p>
315
-
316
- <p class="MsoNormal"><!--[if !supportEmptyParas]-->&nbsp;<!--[endif]--><o:p></o:p></p>
317
-
318
- </div>
319
-
320
- <div class="Section2">
321
-
322
- <p style="text-align: center;" align="center"><b>Apache License</b></br>
323
- Version 2.0, January 2004<br/>
324
- http://www.apache.org/licenses/<br/>
325
- </p>
326
- <p><span style="font-size: 10pt;">TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</spam></p>
327
- <p><b><span style="font-size: 10pt;">1. Definitions.</span></b> </p>
328
- <p><span style="font-size: 10pt;">
329
- "License" shall mean the terms and conditions for use, reproduction,
330
- and distribution as defined by Sections 1 through 9 of this document.</span></p>
331
- <p><span style="font-size: 10pt;">
332
- "Licensor" shall mean the copyright owner or entity authorized by
333
- the copyright owner that is granting the License.</span></p>
334
- <p><span style="font-size: 10pt;">
335
- "Legal Entity" shall mean the union of the acting entity and all
336
- other entities that control, are controlled by, or are under common
337
- control with that entity. For the purposes of this definition,
338
- "control" means (i) the power, direct or indirect, to cause the
339
- direction or management of such entity, whether by contract or
340
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
341
- outstanding shares, or (iii) beneficial ownership of such entity.</span></p>
342
- <p><span style="font-size: 10pt;">
343
- "You" (or "Your") shall mean an individual or Legal Entity
344
- exercising permissions granted by this License.</span></p>
345
- <p><span style="font-size: 10pt;">
346
- "Source" form shall mean the preferred form for making modifications,
347
- including but not limited to software source code, documentation
348
- source, and configuration files.</span></p>
349
- <p><span style="font-size: 10pt;">
350
- "Object" form shall mean any form resulting from mechanical
351
- transformation or translation of a Source form, including but
352
- not limited to compiled object code, generated documentation,
353
- and conversions to other media types.</span></p>
354
- <p><span style="font-size: 10pt;">
355
- "Work" shall mean the work of authorship, whether in Source or
356
- Object form, made available under the License, as indicated by a
357
- copyright notice that is included in or attached to the work
358
- (an example is provided in the Appendix below).</span></p>
359
- <p><span style="font-size: 10pt;">
360
- "Derivative Works" shall mean any work, whether in Source or Object
361
- form, that is based on (or derived from) the Work and for which the
362
- editorial revisions, annotations, elaborations, or other modifications
363
- represent, as a whole, an original work of authorship. For the purposes
364
- of this License, Derivative Works shall not include works that remain
365
- separable from, or merely link (or bind by name) to the interfaces of,
366
- the Work and Derivative Works thereof.</span></p>
367
- <p><span style="font-size: 10pt;">
368
- "Contribution" shall mean any work of authorship, including
369
- the original version of the Work and any modifications or additions
370
- to that Work or Derivative Works thereof, that is intentionally
371
- submitted to Licensor for inclusion in the Work by the copyright owner
372
- or by an individual or Legal Entity authorized to submit on behalf of
373
- the copyright owner. For the purposes of this definition, "submitted"
374
- means any form of electronic, verbal, or written communication sent
375
- to the Licensor or its representatives, including but not limited to
376
- communication on electronic mailing lists, source code control systems,
377
- and issue tracking systems that are managed by, or on behalf of, the
378
- Licensor for the purpose of discussing and improving the Work, but
379
- excluding communication that is conspicuously marked or otherwise
380
- designated in writing by the copyright owner as "Not a Contribution."</span></p>
381
- <p><span style="font-size: 10pt;">
382
- "Contributor" shall mean Licensor and any individual or Legal Entity
383
- on behalf of whom a Contribution has been received by Licensor and
384
- subsequently incorporated within the Work.</span></p>
385
-
386
- <p><b><span style="font-size: 10pt;">2. Grant of Copyright License.</span></b> </p>
387
- <p><span style="font-size: 10pt;">
388
- Subject to the terms and conditions of
389
- this License, each Contributor hereby grants to You a perpetual,
390
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
391
- copyright license to reproduce, prepare Derivative Works of,
392
- publicly display, publicly perform, sublicense, and distribute the
393
- Work and such Derivative Works in Source or Object form.</span></p>
394
-
395
-
396
- <p><b><span style="font-size: 10pt;">3. Grant of Patent License.</span></b><p>
397
-
398
- <p><span style="font-size: 10pt;">
399
- Subject to the terms and conditions of
400
- this License, each Contributor hereby grants to You a perpetual,
401
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
402
- (except as stated in this section) patent license to make, have made,
403
- use, offer to sell, sell, import, and otherwise transfer the Work,
404
- where such license applies only to those patent claims licensable
405
- by such Contributor that are necessarily infringed by their
406
- Contribution(s) alone or by combination of their Contribution(s)
407
- with the Work to which such Contribution(s) was submitted. If You
408
- institute patent litigation against any entity (including a
409
- cross-claim or counterclaim in a lawsuit) alleging that the Work
410
- or a Contribution incorporated within the Work constitutes direct
411
- or contributory patent infringement, then any patent licenses
412
- granted to You under this License for that Work shall terminate
413
- as of the date such litigation is filed.
414
- </span></p>
415
- <p><b><span style="font-size: 10pt;">
416
- 4. Redistribution.
417
- </span></b></p>
418
-
419
- <p><span style="font-size: 10pt;">You may reproduce and distribute copies of the
420
- Work or Derivative Works thereof in any medium, with or without
421
- modifications, and in Source or Object form, provided that You
422
- meet the following conditions:</span><p>
423
- <ul>
424
- <li><span style="font-size: 10pt;">
425
- (a) You must give any other recipients of the Work or
426
- Derivative Works a copy of this License; and</span><p>
427
- </li>
428
- <li><span style="font-size: 10pt;">
429
- (b) You must cause any modified files to carry prominent notices
430
- stating that You changed the files; and</span><p>
431
- </li>
432
- </li><span style="font-size: 10pt;">
433
- (c) You must retain, in the Source form of any Derivative Works
434
- that You distribute, all copyright, patent, trademark, and
435
- attribution notices from the Source form of the Work,
436
- excluding those notices that do not pertain to any part of
437
- the Derivative Works; and</span><p>
438
- </li>
439
- <li><span style="font-size: 10pt;">
440
- (d) If the Work includes a "NOTICE" text file as part of its
441
- distribution, then any Derivative Works that You distribute must
442
- include a readable copy of the attribution notices contained
443
- within such NOTICE file, excluding those notices that do not
444
- pertain to any part of the Derivative Works, in at least one
445
- of the following places: within a NOTICE text file distributed
446
- as part of the Derivative Works; within the Source form or
447
- documentation, if provided along with the Derivative Works; or,
448
- within a display generated by the Derivative Works, if and
449
- wherever such third-party notices normally appear. The contents
450
- of the NOTICE file are for informational purposes only and
451
- do not modify the License. You may add Your own attribution
452
- notices within Derivative Works that You distribute, alongside
453
- or as an addendum to the NOTICE text from the Work, provided
454
- that such additional attribution notices cannot be construed
455
- as modifying the License.</span><p>
456
- </li>
457
- </ul>
458
- </span></p>
459
-
460
- <p><span style="font-size: 10pt;">
461
- You may add Your own copyright statement to Your modifications and
462
- may provide additional or different license terms and conditions
463
- for use, reproduction, or distribution of Your modifications, or
464
- for any such Derivative Works as a whole, provided Your use,
465
- reproduction, and distribution of the Work otherwise complies with
466
- the conditions stated in this License.
467
- </span></p>
468
- <p><b><span style="font-size: 10pt;">
469
- 5. Submission of Contributions.
470
- </span></b></p>
471
-
472
- <p><span style="font-size: 10pt;">Unless You explicitly state otherwise,
473
- any Contribution intentionally submitted for inclusion in the Work
474
- by You to the Licensor shall be under the terms and conditions of
475
- this License, without any additional terms or conditions.
476
- Notwithstanding the above, nothing herein shall supersede or modify
477
- the terms of any separate license agreement you may have executed
478
- with Licensor regarding such Contributions.
479
- </span></p>
480
- <p><b><span style="font-size: 10pt;">
481
- 6. Trademarks.
482
- </span></b></p>
483
-
484
- <p><span style="font-size: 10pt;">This License does not grant permission to use the trade
485
- names, trademarks, service marks, or product names of the Licensor,
486
- except as required for reasonable and customary use in describing the
487
- origin of the Work and reproducing the content of the NOTICE file.
488
- </span></p>
489
- <p><b><span style="font-size: 10pt;">
490
- 7. Disclaimer of Warranty.
491
- </span></b></p>
492
-
493
- <p><span style="font-size: 10pt;">Unless required by applicable law or
494
- agreed to in writing, Licensor provides the Work (and each
495
- Contributor provides its Contributions) on an "AS IS" BASIS,
496
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
497
- implied, including, without limitation, any warranties or conditions
498
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
499
- PARTICULAR PURPOSE. You are solely responsible for determining the
500
- appropriateness of using or redistributing the Work and assume any
501
- risks associated with Your exercise of permissions under this License.
502
- </span></p>
503
- <p><b><span style="font-size: 10pt;">
504
- 8. Limitation of Liability.
505
- </span></b></p>
506
-
507
- <p><span style="font-size: 10pt;">In no event and under no legal theory,
508
- whether in tort (including negligence), contract, or otherwise,
509
- unless required by applicable law (such as deliberate and grossly
510
- negligent acts) or agreed to in writing, shall any Contributor be
511
- liable to You for damages, including any direct, indirect, special,
512
- incidental, or consequential damages of any character arising as a
513
- result of this License or out of the use or inability to use the
514
- Work (including but not limited to damages for loss of goodwill,
515
- work stoppage, computer failure or malfunction, or any and all
516
- other commercial damages or losses), even if such Contributor
517
- has been advised of the possibility of such damages.
518
- </span></p>
519
- <p><b><span style="font-size: 10pt;">
520
- 9. Accepting Warranty or Additional Liability.
521
- </span></b></p>
522
- <p><span style="font-size: 10pt;">While redistributing
523
- the Work or Derivative Works thereof, You may choose to offer,
524
- and charge a fee for, acceptance of support, warranty, indemnity,
525
- or other liability obligations and/or rights consistent with this
526
- License. However, in accepting such obligations, You may act only
527
- on Your own behalf and on Your sole responsibility, not on behalf
528
- of any other Contributor, and only if You agree to indemnify,
529
- defend, and hold each Contributor harmless for any liability
530
- incurred by, or claims asserted against, such Contributor by reason
531
- of your accepting any such warranty or additional liability.
532
- </span></p>
533
-
534
- <p><span style="font-size: 10pt;">
535
- END OF TERMS AND CONDITIONS
536
- </span></p>
537
-
538
- <p><span style="font-size: 10pt;">
539
- APPENDIX: How to apply the Apache License to your work.
540
- </span></p>
541
-
542
- <p><span style="font-size: 10pt;">
543
- To apply the Apache License to your work, attach the following
544
- boilerplate notice, with the fields enclosed by brackets "[]"
545
- replaced with your own identifying information. (Don't include
546
- the brackets!) The text should be enclosed in the appropriate
547
- comment syntax for the file format. We also recommend that a
548
- file or class name and description of purpose be included on the
549
- same "printed page" as the copyright notice for easier
550
- identification within third-party archives.
551
- </span></p>
552
-
553
- <p><span style="font-size: 10pt;">
554
- Copyright [yyyy] [name of copyright owner]
555
- </span></p>
556
-
557
- <p><span style="font-size: 10pt;">
558
- Licensed under the Apache License, Version 2.0 (the "License");
559
- you may not use this file except in compliance with the License.
560
- You may obtain a copy of the License at
561
- </span></p>
562
-
563
- <p><span style="font-size: 10pt;">
564
- http://www.apache.org/licenses/LICENSE-2.0
565
- </span></p>
566
-
567
- <p><span style="font-size: 10pt;">
568
- Unless required by applicable law or agreed to in writing, software
569
- distributed under the License is distributed on an "AS IS" BASIS,
570
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
571
- See the License for the specific language governing permissions and
572
- limitations under the License.
573
- </span></p>
574
-
575
- </div>
576
- </body></html>