foreman_discovery 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1366) hide show
  1. data/LICENSE +619 -0
  2. data/README.md +128 -0
  3. data/Rakefile +111 -0
  4. data/app/controllers/discovers_controller.rb +151 -0
  5. data/app/helpers/discovers_helper.rb +37 -0
  6. data/app/models/host/discovered.rb +97 -0
  7. data/app/models/host/managed_extensions.rb +32 -0
  8. data/app/models/setting/discovered.rb +28 -0
  9. data/app/overrides/add_build_flag.rb +4 -0
  10. data/app/views/discovers/_discovers_list.html.erb +54 -0
  11. data/app/views/discovers/_selected_hosts.html.erb +29 -0
  12. data/app/views/discovers/index.html.erb +2 -0
  13. data/app/views/discovers/multiple_destroy.html.erb +5 -0
  14. data/app/views/discovers/select_multiple_location.html.erb +10 -0
  15. data/app/views/discovers/select_multiple_organization.html.erb +10 -0
  16. data/app/views/discovers/show.html.erb +16 -0
  17. data/config/environment.rb +0 -0
  18. data/config/initializers/discovery_setup.rb +20 -0
  19. data/config/routes.rb +26 -0
  20. data/lib/discovery_home_helper_patch.rb +21 -0
  21. data/lib/foreman_discovery.rb +4 -0
  22. data/lib/foreman_discovery/engine.rb +32 -0
  23. data/lib/foreman_discovery/facts.rb +12 -0
  24. data/lib/foreman_discovery/version.rb +3 -0
  25. data/lib/tasks.rake +72 -0
  26. data/test/foreman_app/CHANGELOG +3969 -0
  27. data/test/foreman_app/Contributors +94 -0
  28. data/test/foreman_app/Gemfile +33 -0
  29. data/test/foreman_app/README.md +17 -0
  30. data/test/foreman_app/Rakefile +7 -0
  31. data/test/foreman_app/VERSION +1 -0
  32. data/test/foreman_app/app/assets/images/Archlinux.png +0 -0
  33. data/test/foreman_app/app/assets/images/Centos.png +0 -0
  34. data/test/foreman_app/app/assets/images/Darwin.png +0 -0
  35. data/test/foreman_app/app/assets/images/Debian.png +0 -0
  36. data/test/foreman_app/app/assets/images/Fedora.png +0 -0
  37. data/test/foreman_app/app/assets/images/Redhat.png +0 -0
  38. data/test/foreman_app/app/assets/images/SLC.png +0 -0
  39. data/test/foreman_app/app/assets/images/Scientific.png +0 -0
  40. data/test/foreman_app/app/assets/images/Solaris.png +0 -0
  41. data/test/foreman_app/app/assets/images/Suse.png +0 -0
  42. data/test/foreman_app/app/assets/images/Ubuntu.png +0 -0
  43. data/test/foreman_app/app/assets/images/Windows.png +0 -0
  44. data/test/foreman_app/app/assets/images/bullet_toggle_plus.png +0 -0
  45. data/test/foreman_app/app/assets/images/edit-hover.png +0 -0
  46. data/test/foreman_app/app/assets/images/edit.png +0 -0
  47. data/test/foreman_app/app/assets/images/false.png +0 -0
  48. data/test/foreman_app/app/assets/images/foreman.png +0 -0
  49. data/test/foreman_app/app/assets/images/foreman_background.png +0 -0
  50. data/test/foreman_app/app/assets/images/foreman_large.png +0 -0
  51. data/test/foreman_app/app/assets/images/foreman_white.png +0 -0
  52. data/test/foreman_app/app/assets/images/pie_chart_icon.png +0 -0
  53. data/test/foreman_app/app/assets/images/pie_overlay.png +0 -0
  54. data/test/foreman_app/app/assets/images/spinner.gif +0 -0
  55. data/test/foreman_app/app/assets/images/switch.png +0 -0
  56. data/test/foreman_app/app/assets/images/toggle_check.png +0 -0
  57. data/test/foreman_app/app/assets/images/true.png +0 -0
  58. data/test/foreman_app/app/assets/images/user.jpg +0 -0
  59. data/test/foreman_app/app/assets/javascripts/application.js +348 -0
  60. data/test/foreman_app/app/assets/javascripts/charts.js +317 -0
  61. data/test/foreman_app/app/assets/javascripts/compute_resource.js +120 -0
  62. data/test/foreman_app/app/assets/javascripts/config_template.js +153 -0
  63. data/test/foreman_app/app/assets/javascripts/host_checkbox.js +151 -0
  64. data/test/foreman_app/app/assets/javascripts/host_edit.js +591 -0
  65. data/test/foreman_app/app/assets/javascripts/lookup_keys.js +184 -0
  66. data/test/foreman_app/app/assets/javascripts/nfs_visibility.js +33 -0
  67. data/test/foreman_app/app/assets/javascripts/noVNC.js +47 -0
  68. data/test/foreman_app/app/assets/javascripts/reports.js +27 -0
  69. data/test/foreman_app/app/assets/javascripts/spice.js +53 -0
  70. data/test/foreman_app/app/assets/javascripts/taxonomy.js +18 -0
  71. data/test/foreman_app/app/assets/javascripts/topbar.js +39 -0
  72. data/test/foreman_app/app/assets/javascripts/trends.js +10 -0
  73. data/test/foreman_app/app/assets/stylesheets/application.scss +350 -0
  74. data/test/foreman_app/app/assets/stylesheets/bootstrap_and_overrides.scss +130 -0
  75. data/test/foreman_app/app/assets/stylesheets/charts.scss +138 -0
  76. data/test/foreman_app/app/assets/stylesheets/dashboard.scss +42 -0
  77. data/test/foreman_app/app/assets/stylesheets/login.scss +77 -0
  78. data/test/foreman_app/app/assets/stylesheets/topbar.scss +83 -0
  79. data/test/foreman_app/app/assets/stylesheets/wizard.scss +60 -0
  80. data/test/foreman_app/app/controllers/api/base_controller.rb +162 -0
  81. data/test/foreman_app/app/controllers/api/v1/architectures_controller.rb +53 -0
  82. data/test/foreman_app/app/controllers/api/v1/audits_controller.rb +26 -0
  83. data/test/foreman_app/app/controllers/api/v1/auth_source_ldaps_controller.rb +72 -0
  84. data/test/foreman_app/app/controllers/api/v1/base_controller.rb +12 -0
  85. data/test/foreman_app/app/controllers/api/v1/bookmarks_controller.rb +59 -0
  86. data/test/foreman_app/app/controllers/api/v1/common_parameters_controller.rb +53 -0
  87. data/test/foreman_app/app/controllers/api/v1/compute_resources_controller.rb +71 -0
  88. data/test/foreman_app/app/controllers/api/v1/config_templates_controller.rb +102 -0
  89. data/test/foreman_app/app/controllers/api/v1/dashboard_controller.rb +20 -0
  90. data/test/foreman_app/app/controllers/api/v1/domains_controller.rb +74 -0
  91. data/test/foreman_app/app/controllers/api/v1/environments_controller.rb +50 -0
  92. data/test/foreman_app/app/controllers/api/v1/fact_values_controller.rb +23 -0
  93. data/test/foreman_app/app/controllers/api/v1/home_controller.rb +25 -0
  94. data/test/foreman_app/app/controllers/api/v1/hostgroups_controller.rb +70 -0
  95. data/test/foreman_app/app/controllers/api/v1/hosts_controller.rb +113 -0
  96. data/test/foreman_app/app/controllers/api/v1/images_controller.rb +73 -0
  97. data/test/foreman_app/app/controllers/api/v1/lookup_keys_controller.rb +63 -0
  98. data/test/foreman_app/app/controllers/api/v1/media_controller.rb +75 -0
  99. data/test/foreman_app/app/controllers/api/v1/models_controller.rb +56 -0
  100. data/test/foreman_app/app/controllers/api/v1/operatingsystems_controller.rb +79 -0
  101. data/test/foreman_app/app/controllers/api/v1/ptables_controller.rb +55 -0
  102. data/test/foreman_app/app/controllers/api/v1/puppetclasses_controller.rb +56 -0
  103. data/test/foreman_app/app/controllers/api/v1/reports_controller.rb +43 -0
  104. data/test/foreman_app/app/controllers/api/v1/roles_controller.rb +49 -0
  105. data/test/foreman_app/app/controllers/api/v1/settings_controller.rb +35 -0
  106. data/test/foreman_app/app/controllers/api/v1/smart_proxies_controller.rb +69 -0
  107. data/test/foreman_app/app/controllers/api/v1/subnets_controller.rb +77 -0
  108. data/test/foreman_app/app/controllers/api/v1/template_kinds_controller.rb +14 -0
  109. data/test/foreman_app/app/controllers/api/v1/usergroups_controller.rb +51 -0
  110. data/test/foreman_app/app/controllers/api/v1/users_controller.rb +102 -0
  111. data/test/foreman_app/app/controllers/api/v2/base_controller.rb +12 -0
  112. data/test/foreman_app/app/controllers/api/v2/compute_resources_controller.rb +20 -0
  113. data/test/foreman_app/app/controllers/api/v2/config_templates_controller.rb +26 -0
  114. data/test/foreman_app/app/controllers/api/v2/domains_controller.rb +20 -0
  115. data/test/foreman_app/app/controllers/api/v2/environments_controller.rb +20 -0
  116. data/test/foreman_app/app/controllers/api/v2/host_classes_controller.rb +49 -0
  117. data/test/foreman_app/app/controllers/api/v2/hostgroup_classes_controller.rb +44 -0
  118. data/test/foreman_app/app/controllers/api/v2/hostgroups_controller.rb +20 -0
  119. data/test/foreman_app/app/controllers/api/v2/locations_controller.rb +9 -0
  120. data/test/foreman_app/app/controllers/api/v2/media_controller.rb +20 -0
  121. data/test/foreman_app/app/controllers/api/v2/organizations_controller.rb +9 -0
  122. data/test/foreman_app/app/controllers/api/v2/parameters_controller.rb +131 -0
  123. data/test/foreman_app/app/controllers/api/v2/puppetclasses_controller.rb +60 -0
  124. data/test/foreman_app/app/controllers/api/v2/smart_proxies_controller.rb +20 -0
  125. data/test/foreman_app/app/controllers/api/v2/subnets_controller.rb +20 -0
  126. data/test/foreman_app/app/controllers/api/v2/template_combinations_controller.rb +46 -0
  127. data/test/foreman_app/app/controllers/api/v2/users_controller.rb +20 -0
  128. data/test/foreman_app/app/controllers/application_controller.rb +349 -0
  129. data/test/foreman_app/app/controllers/architectures_controller.rb +51 -0
  130. data/test/foreman_app/app/controllers/audits_controller.rb +19 -0
  131. data/test/foreman_app/app/controllers/auth_source_ldaps_controller.rb +49 -0
  132. data/test/foreman_app/app/controllers/bookmarks_controller.rb +55 -0
  133. data/test/foreman_app/app/controllers/common_parameters_controller.rb +46 -0
  134. data/test/foreman_app/app/controllers/compute_resources_controller.rb +103 -0
  135. data/test/foreman_app/app/controllers/compute_resources_vms_controller.rb +78 -0
  136. data/test/foreman_app/app/controllers/concerns/api/taxonomy_scope.rb +15 -0
  137. data/test/foreman_app/app/controllers/concerns/api/v2/taxonomies_controller.rb +99 -0
  138. data/test/foreman_app/app/controllers/config_templates_controller.rb +105 -0
  139. data/test/foreman_app/app/controllers/dashboard_controller.rb +21 -0
  140. data/test/foreman_app/app/controllers/domains_controller.rb +55 -0
  141. data/test/foreman_app/app/controllers/environments_controller.rb +59 -0
  142. data/test/foreman_app/app/controllers/fact_values_controller.rb +60 -0
  143. data/test/foreman_app/app/controllers/facts_controller.rb +25 -0
  144. data/test/foreman_app/app/controllers/home_controller.rb +37 -0
  145. data/test/foreman_app/app/controllers/hostgroups_controller.rb +115 -0
  146. data/test/foreman_app/app/controllers/hosts_controller.rb +570 -0
  147. data/test/foreman_app/app/controllers/images_controller.rb +57 -0
  148. data/test/foreman_app/app/controllers/locations_controller.rb +4 -0
  149. data/test/foreman_app/app/controllers/lookup_keys_controller.rb +60 -0
  150. data/test/foreman_app/app/controllers/lookup_values_controller.rb +58 -0
  151. data/test/foreman_app/app/controllers/media_controller.rb +56 -0
  152. data/test/foreman_app/app/controllers/models_controller.rb +49 -0
  153. data/test/foreman_app/app/controllers/notices_controller.rb +9 -0
  154. data/test/foreman_app/app/controllers/operatingsystems_controller.rb +77 -0
  155. data/test/foreman_app/app/controllers/organizations_controller.rb +4 -0
  156. data/test/foreman_app/app/controllers/ptables_controller.rb +56 -0
  157. data/test/foreman_app/app/controllers/puppetclasses_controller.rb +85 -0
  158. data/test/foreman_app/app/controllers/reports_controller.rb +60 -0
  159. data/test/foreman_app/app/controllers/roles_controller.rb +78 -0
  160. data/test/foreman_app/app/controllers/settings_controller.rb +21 -0
  161. data/test/foreman_app/app/controllers/smart_proxies/autosign_controller.rb +47 -0
  162. data/test/foreman_app/app/controllers/smart_proxies/puppetca_controller.rb +59 -0
  163. data/test/foreman_app/app/controllers/smart_proxies_controller.rb +43 -0
  164. data/test/foreman_app/app/controllers/statistics_controller.rb +27 -0
  165. data/test/foreman_app/app/controllers/subnets_controller.rb +88 -0
  166. data/test/foreman_app/app/controllers/tasks_controller.rb +16 -0
  167. data/test/foreman_app/app/controllers/topbar_sweeper.rb +24 -0
  168. data/test/foreman_app/app/controllers/trends_controller.rb +56 -0
  169. data/test/foreman_app/app/controllers/unattended_controller.rb +257 -0
  170. data/test/foreman_app/app/controllers/usergroups_controller.rb +44 -0
  171. data/test/foreman_app/app/controllers/users_controller.rb +150 -0
  172. data/test/foreman_app/app/helpers/application_helper.rb +317 -0
  173. data/test/foreman_app/app/helpers/architecture_helper.rb +2 -0
  174. data/test/foreman_app/app/helpers/architectures_helper.rb +2 -0
  175. data/test/foreman_app/app/helpers/audits_helper.rb +138 -0
  176. data/test/foreman_app/app/helpers/auth_source_ldaps_helper.rb +8 -0
  177. data/test/foreman_app/app/helpers/auth_sources_helper.rb +2 -0
  178. data/test/foreman_app/app/helpers/bookmarks_helper.rb +2 -0
  179. data/test/foreman_app/app/helpers/common_parameters_helper.rb +22 -0
  180. data/test/foreman_app/app/helpers/compute_resources_helper.rb +28 -0
  181. data/test/foreman_app/app/helpers/compute_resources_vms_helper.rb +45 -0
  182. data/test/foreman_app/app/helpers/config_templates_helper.rb +10 -0
  183. data/test/foreman_app/app/helpers/dashboard_helper.rb +35 -0
  184. data/test/foreman_app/app/helpers/domains_helper.rb +3 -0
  185. data/test/foreman_app/app/helpers/environments_helper.rb +3 -0
  186. data/test/foreman_app/app/helpers/fact_values_helper.rb +8 -0
  187. data/test/foreman_app/app/helpers/home_helper.rb +116 -0
  188. data/test/foreman_app/app/helpers/hostgroups_helper.rb +14 -0
  189. data/test/foreman_app/app/helpers/hosts_and_hostgroups_helper.rb +99 -0
  190. data/test/foreman_app/app/helpers/hosts_helper.rb +267 -0
  191. data/test/foreman_app/app/helpers/images_helper.rb +11 -0
  192. data/test/foreman_app/app/helpers/layout_helper.rb +214 -0
  193. data/test/foreman_app/app/helpers/lookup_keys_helper.rb +108 -0
  194. data/test/foreman_app/app/helpers/media_helper.rb +2 -0
  195. data/test/foreman_app/app/helpers/medium_helper.rb +2 -0
  196. data/test/foreman_app/app/helpers/model_helper.rb +2 -0
  197. data/test/foreman_app/app/helpers/models_helper.rb +2 -0
  198. data/test/foreman_app/app/helpers/notices_helper.rb +3 -0
  199. data/test/foreman_app/app/helpers/operatingsystems_helper.rb +40 -0
  200. data/test/foreman_app/app/helpers/organization_helper.rb +2 -0
  201. data/test/foreman_app/app/helpers/ptables_helper.rb +2 -0
  202. data/test/foreman_app/app/helpers/puppetclasses_and_environments_helper.rb +39 -0
  203. data/test/foreman_app/app/helpers/puppetclasses_helper.rb +16 -0
  204. data/test/foreman_app/app/helpers/reports_helper.rb +48 -0
  205. data/test/foreman_app/app/helpers/settings_helper.rb +27 -0
  206. data/test/foreman_app/app/helpers/smart_proxies/autosign_helper.rb +6 -0
  207. data/test/foreman_app/app/helpers/smart_proxies/puppetca_helper.rb +20 -0
  208. data/test/foreman_app/app/helpers/smart_proxies_helper.rb +2 -0
  209. data/test/foreman_app/app/helpers/statistics_helper.rb +16 -0
  210. data/test/foreman_app/app/helpers/subnets_helper.rb +9 -0
  211. data/test/foreman_app/app/helpers/tasks_helper.rb +22 -0
  212. data/test/foreman_app/app/helpers/taxonomy_helper.rb +107 -0
  213. data/test/foreman_app/app/helpers/trends_helper.rb +46 -0
  214. data/test/foreman_app/app/helpers/unattended_helper.rb +16 -0
  215. data/test/foreman_app/app/helpers/usergroups_helper.rb +2 -0
  216. data/test/foreman_app/app/helpers/users_helper.rb +21 -0
  217. data/test/foreman_app/app/models/architecture.rb +23 -0
  218. data/test/foreman_app/app/models/archlinux.rb +27 -0
  219. data/test/foreman_app/app/models/auth_source.rb +70 -0
  220. data/test/foreman_app/app/models/auth_source_internal.rb +17 -0
  221. data/test/foreman_app/app/models/auth_source_ldap.rb +147 -0
  222. data/test/foreman_app/app/models/authorization.rb +51 -0
  223. data/test/foreman_app/app/models/bookmark.rb +30 -0
  224. data/test/foreman_app/app/models/classification.rb +126 -0
  225. data/test/foreman_app/app/models/common_parameter.rb +13 -0
  226. data/test/foreman_app/app/models/compute_resource.rb +232 -0
  227. data/test/foreman_app/app/models/config_template.rb +172 -0
  228. data/test/foreman_app/app/models/dashboard.rb +53 -0
  229. data/test/foreman_app/app/models/debian.rb +47 -0
  230. data/test/foreman_app/app/models/domain.rb +90 -0
  231. data/test/foreman_app/app/models/domain_parameter.rb +22 -0
  232. data/test/foreman_app/app/models/environment.rb +57 -0
  233. data/test/foreman_app/app/models/environment_class.rb +25 -0
  234. data/test/foreman_app/app/models/fact_name.rb +17 -0
  235. data/test/foreman_app/app/models/fact_trend.rb +57 -0
  236. data/test/foreman_app/app/models/fact_value.rb +83 -0
  237. data/test/foreman_app/app/models/facts_importer.rb +121 -0
  238. data/test/foreman_app/app/models/feature.rb +4 -0
  239. data/test/foreman_app/app/models/foreman_trend.rb +38 -0
  240. data/test/foreman_app/app/models/group_parameter.rb +22 -0
  241. data/test/foreman_app/app/models/host.rb +30 -0
  242. data/test/foreman_app/app/models/host/base.rb +141 -0
  243. data/test/foreman_app/app/models/host/hostmix.rb +13 -0
  244. data/test/foreman_app/app/models/host/managed.rb +854 -0
  245. data/test/foreman_app/app/models/host_class.rb +13 -0
  246. data/test/foreman_app/app/models/host_common.rb +95 -0
  247. data/test/foreman_app/app/models/host_mailer.rb +77 -0
  248. data/test/foreman_app/app/models/host_observer.rb +19 -0
  249. data/test/foreman_app/app/models/host_parameter.rb +20 -0
  250. data/test/foreman_app/app/models/host_template_helpers.rb +43 -0
  251. data/test/foreman_app/app/models/hostext/search.rb +128 -0
  252. data/test/foreman_app/app/models/hostgroup.rb +159 -0
  253. data/test/foreman_app/app/models/hostgroup_class.rb +15 -0
  254. data/test/foreman_app/app/models/image.rb +14 -0
  255. data/test/foreman_app/app/models/key_pair.rb +5 -0
  256. data/test/foreman_app/app/models/location.rb +25 -0
  257. data/test/foreman_app/app/models/log.rb +25 -0
  258. data/test/foreman_app/app/models/lookup_key.rb +261 -0
  259. data/test/foreman_app/app/models/lookup_value.rb +61 -0
  260. data/test/foreman_app/app/models/medium.rb +58 -0
  261. data/test/foreman_app/app/models/message.rb +19 -0
  262. data/test/foreman_app/app/models/model.rb +14 -0
  263. data/test/foreman_app/app/models/nic.rb +61 -0
  264. data/test/foreman_app/app/models/nic/bmc.rb +22 -0
  265. data/test/foreman_app/app/models/nic/bootable.rb +31 -0
  266. data/test/foreman_app/app/models/nic/interface.rb +23 -0
  267. data/test/foreman_app/app/models/nic/managed.rb +57 -0
  268. data/test/foreman_app/app/models/notice.rb +36 -0
  269. data/test/foreman_app/app/models/operatingsystem.rb +196 -0
  270. data/test/foreman_app/app/models/orchestration.rb +184 -0
  271. data/test/foreman_app/app/models/orchestration/compute.rb +157 -0
  272. data/test/foreman_app/app/models/orchestration/dhcp.rb +154 -0
  273. data/test/foreman_app/app/models/orchestration/dns.rb +130 -0
  274. data/test/foreman_app/app/models/orchestration/puppetca.rb +79 -0
  275. data/test/foreman_app/app/models/orchestration/ssh_provision.rb +115 -0
  276. data/test/foreman_app/app/models/orchestration/tftp.rb +133 -0
  277. data/test/foreman_app/app/models/organization.rb +24 -0
  278. data/test/foreman_app/app/models/os_default_template.rb +11 -0
  279. data/test/foreman_app/app/models/os_parameter.rb +16 -0
  280. data/test/foreman_app/app/models/parameter.rb +34 -0
  281. data/test/foreman_app/app/models/ptable.rb +25 -0
  282. data/test/foreman_app/app/models/puppet_class_importer.rb +269 -0
  283. data/test/foreman_app/app/models/puppetclass.rb +172 -0
  284. data/test/foreman_app/app/models/redhat.rb +61 -0
  285. data/test/foreman_app/app/models/report.rb +356 -0
  286. data/test/foreman_app/app/models/report_common.rb +52 -0
  287. data/test/foreman_app/app/models/role.rb +156 -0
  288. data/test/foreman_app/app/models/setting.rb +174 -0
  289. data/test/foreman_app/app/models/setting/auth.rb +29 -0
  290. data/test/foreman_app/app/models/setting/general.rb +27 -0
  291. data/test/foreman_app/app/models/setting/provisioning.rb +28 -0
  292. data/test/foreman_app/app/models/setting/puppet.rb +36 -0
  293. data/test/foreman_app/app/models/smart_proxies/puppet_ca.rb +66 -0
  294. data/test/foreman_app/app/models/smart_proxy.rb +96 -0
  295. data/test/foreman_app/app/models/solaris.rb +114 -0
  296. data/test/foreman_app/app/models/source.rb +18 -0
  297. data/test/foreman_app/app/models/subnet.rb +146 -0
  298. data/test/foreman_app/app/models/subnet_domain.rb +12 -0
  299. data/test/foreman_app/app/models/suse.rb +22 -0
  300. data/test/foreman_app/app/models/tax_host.rb +181 -0
  301. data/test/foreman_app/app/models/taxable_taxonomy.rb +14 -0
  302. data/test/foreman_app/app/models/taxonomix.rb +47 -0
  303. data/test/foreman_app/app/models/taxonomy.rb +135 -0
  304. data/test/foreman_app/app/models/template_combination.rb +12 -0
  305. data/test/foreman_app/app/models/template_kind.rb +6 -0
  306. data/test/foreman_app/app/models/token.rb +23 -0
  307. data/test/foreman_app/app/models/trend.rb +22 -0
  308. data/test/foreman_app/app/models/trend_counter.rb +7 -0
  309. data/test/foreman_app/app/models/trend_importer.rb +50 -0
  310. data/test/foreman_app/app/models/user.rb +251 -0
  311. data/test/foreman_app/app/models/user_fact.rb +26 -0
  312. data/test/foreman_app/app/models/user_hostgroup.rb +10 -0
  313. data/test/foreman_app/app/models/user_role.rb +32 -0
  314. data/test/foreman_app/app/models/usergroup.rb +61 -0
  315. data/test/foreman_app/app/models/usergroup_member.rb +5 -0
  316. data/test/foreman_app/app/models/windows.rb +20 -0
  317. data/test/foreman_app/app/views/api/v1/architectures/create.json.rabl +3 -0
  318. data/test/foreman_app/app/views/api/v1/architectures/index.json.rabl +3 -0
  319. data/test/foreman_app/app/views/api/v1/architectures/show.json.rabl +3 -0
  320. data/test/foreman_app/app/views/api/v1/audits/index.json.rabl +3 -0
  321. data/test/foreman_app/app/views/api/v1/audits/show.json.rabl +5 -0
  322. data/test/foreman_app/app/views/api/v1/auth_source_ldaps/index.json.rabl +3 -0
  323. data/test/foreman_app/app/views/api/v1/auth_source_ldaps/show.json.rabl +3 -0
  324. data/test/foreman_app/app/views/api/v1/bookmarks/create.json.rabl +2 -0
  325. data/test/foreman_app/app/views/api/v1/bookmarks/index.json.rabl +3 -0
  326. data/test/foreman_app/app/views/api/v1/bookmarks/show.json.rabl +2 -0
  327. data/test/foreman_app/app/views/api/v1/bookmarks/update.json.rabl +8 -0
  328. data/test/foreman_app/app/views/api/v1/common_parameters/create.json.rabl +3 -0
  329. data/test/foreman_app/app/views/api/v1/common_parameters/index.json.rabl +3 -0
  330. data/test/foreman_app/app/views/api/v1/common_parameters/show.json.rabl +3 -0
  331. data/test/foreman_app/app/views/api/v1/compute_resources/create.json.rabl +3 -0
  332. data/test/foreman_app/app/views/api/v1/compute_resources/ec2.json.rabl +1 -0
  333. data/test/foreman_app/app/views/api/v1/compute_resources/index.json.rabl +3 -0
  334. data/test/foreman_app/app/views/api/v1/compute_resources/libvirt.json.rabl +0 -0
  335. data/test/foreman_app/app/views/api/v1/compute_resources/openstack.json.rabl +1 -0
  336. data/test/foreman_app/app/views/api/v1/compute_resources/ovirt.json.rabl +1 -0
  337. data/test/foreman_app/app/views/api/v1/compute_resources/rackspace.json.rabl +1 -0
  338. data/test/foreman_app/app/views/api/v1/compute_resources/show.json.rabl +8 -0
  339. data/test/foreman_app/app/views/api/v1/compute_resources/vmware.json.rabl +1 -0
  340. data/test/foreman_app/app/views/api/v1/config_templates/create.json.rabl +3 -0
  341. data/test/foreman_app/app/views/api/v1/config_templates/index.json.rabl +3 -0
  342. data/test/foreman_app/app/views/api/v1/config_templates/show.json.rabl +11 -0
  343. data/test/foreman_app/app/views/api/v1/domains/index.json.rabl +3 -0
  344. data/test/foreman_app/app/views/api/v1/domains/show.json.rabl +2 -0
  345. data/test/foreman_app/app/views/api/v1/environments/create.json.rabl +3 -0
  346. data/test/foreman_app/app/views/api/v1/environments/index.json.rabl +3 -0
  347. data/test/foreman_app/app/views/api/v1/environments/show.json.rabl +5 -0
  348. data/test/foreman_app/app/views/api/v1/errors/access_denied.json.rabl +4 -0
  349. data/test/foreman_app/app/views/api/v1/errors/not_found.json.rabl +3 -0
  350. data/test/foreman_app/app/views/api/v1/errors/param_error.json.rabl +7 -0
  351. data/test/foreman_app/app/views/api/v1/errors/route_error.json.rabl +4 -0
  352. data/test/foreman_app/app/views/api/v1/errors/standard_error.json.rabl +5 -0
  353. data/test/foreman_app/app/views/api/v1/errors/unauthorized.json.rabl +3 -0
  354. data/test/foreman_app/app/views/api/v1/errors/unprocessable_entity.json.rabl +6 -0
  355. data/test/foreman_app/app/views/api/v1/home/index.json.rabl +24 -0
  356. data/test/foreman_app/app/views/api/v1/home/status.json.rabl +6 -0
  357. data/test/foreman_app/app/views/api/v1/hostgroups/create.json.rabl +3 -0
  358. data/test/foreman_app/app/views/api/v1/hostgroups/index.json.rabl +3 -0
  359. data/test/foreman_app/app/views/api/v1/hostgroups/show.json.rabl +3 -0
  360. data/test/foreman_app/app/views/api/v1/hosts/create.json.rabl +3 -0
  361. data/test/foreman_app/app/views/api/v1/hosts/index.json.rabl +3 -0
  362. data/test/foreman_app/app/views/api/v1/hosts/show.json.rabl +12 -0
  363. data/test/foreman_app/app/views/api/v1/images/index.json.rabl +3 -0
  364. data/test/foreman_app/app/views/api/v1/images/show.json.rabl +3 -0
  365. data/test/foreman_app/app/views/api/v1/lookup_keys/index.json.rabl +3 -0
  366. data/test/foreman_app/app/views/api/v1/lookup_keys/show.json.rabl +3 -0
  367. data/test/foreman_app/app/views/api/v1/media/index.json.rabl +3 -0
  368. data/test/foreman_app/app/views/api/v1/media/show.json.rabl +9 -0
  369. data/test/foreman_app/app/views/api/v1/models/index.rabl +4 -0
  370. data/test/foreman_app/app/views/api/v1/models/show.rabl +3 -0
  371. data/test/foreman_app/app/views/api/v1/operatingsystems/create.json.rabl +4 -0
  372. data/test/foreman_app/app/views/api/v1/operatingsystems/index.json.rabl +3 -0
  373. data/test/foreman_app/app/views/api/v1/operatingsystems/show.json.rabl +22 -0
  374. data/test/foreman_app/app/views/api/v1/operatingsystems/update.json.rabl +3 -0
  375. data/test/foreman_app/app/views/api/v1/ptables/index.json.rabl +3 -0
  376. data/test/foreman_app/app/views/api/v1/ptables/show.json.rabl +3 -0
  377. data/test/foreman_app/app/views/api/v1/reports/index.json.rabl +3 -0
  378. data/test/foreman_app/app/views/api/v1/reports/show.json.rabl +16 -0
  379. data/test/foreman_app/app/views/api/v1/roles/create.json.rabl +3 -0
  380. data/test/foreman_app/app/views/api/v1/roles/index.json.rabl +3 -0
  381. data/test/foreman_app/app/views/api/v1/roles/show.json.rabl +3 -0
  382. data/test/foreman_app/app/views/api/v1/settings/index.json.rabl +3 -0
  383. data/test/foreman_app/app/views/api/v1/settings/show.json.rabl +3 -0
  384. data/test/foreman_app/app/views/api/v1/smart_proxies/index.json.rabl +3 -0
  385. data/test/foreman_app/app/views/api/v1/smart_proxies/show.json.rabl +9 -0
  386. data/test/foreman_app/app/views/api/v1/subnets/create.json.rabl +3 -0
  387. data/test/foreman_app/app/views/api/v1/subnets/index.json.rabl +5 -0
  388. data/test/foreman_app/app/views/api/v1/subnets/show.json.rabl +17 -0
  389. data/test/foreman_app/app/views/api/v1/subnets/update.json.rabl +3 -0
  390. data/test/foreman_app/app/views/api/v1/template_kinds/index.json.rabl +3 -0
  391. data/test/foreman_app/app/views/api/v1/template_kinds/show.json.rabl +3 -0
  392. data/test/foreman_app/app/views/api/v1/usergroups/index.json.rabl +3 -0
  393. data/test/foreman_app/app/views/api/v1/usergroups/show.json.rabl +3 -0
  394. data/test/foreman_app/app/views/api/v1/users/create.json.rabl +3 -0
  395. data/test/foreman_app/app/views/api/v1/users/index.json.rabl +5 -0
  396. data/test/foreman_app/app/views/api/v1/users/show.json.rabl +13 -0
  397. data/test/foreman_app/app/views/api/v2/config_templates/create.json.rabl +3 -0
  398. data/test/foreman_app/app/views/api/v2/config_templates/index.json.rabl +3 -0
  399. data/test/foreman_app/app/views/api/v2/config_templates/show.json.rabl +33 -0
  400. data/test/foreman_app/app/views/api/v2/errors/access_denied.json.rabl +4 -0
  401. data/test/foreman_app/app/views/api/v2/errors/not_found.json.rabl +3 -0
  402. data/test/foreman_app/app/views/api/v2/errors/param_error.json.rabl +7 -0
  403. data/test/foreman_app/app/views/api/v2/errors/route_error.json.rabl +4 -0
  404. data/test/foreman_app/app/views/api/v2/errors/standard_error.json.rabl +5 -0
  405. data/test/foreman_app/app/views/api/v2/errors/unauthorized.json.rabl +3 -0
  406. data/test/foreman_app/app/views/api/v2/errors/unprocessable_entity.json.rabl +6 -0
  407. data/test/foreman_app/app/views/api/v2/parameters/create.json.rabl +3 -0
  408. data/test/foreman_app/app/views/api/v2/parameters/index.json.rabl +3 -0
  409. data/test/foreman_app/app/views/api/v2/parameters/show.json.rabl +3 -0
  410. data/test/foreman_app/app/views/api/v2/parameters/update.json.rabl +3 -0
  411. data/test/foreman_app/app/views/api/v2/puppetclasses/show.json.rabl +7 -0
  412. data/test/foreman_app/app/views/api/v2/taxonomies/index.json.rabl +3 -0
  413. data/test/foreman_app/app/views/api/v2/taxonomies/show.json.rabl +7 -0
  414. data/test/foreman_app/app/views/api/v2/taxonomies/update.json.rabl +3 -0
  415. data/test/foreman_app/app/views/api/v2/template_combinations/create.json.rabl +3 -0
  416. data/test/foreman_app/app/views/api/v2/template_combinations/index.json.rabl +3 -0
  417. data/test/foreman_app/app/views/api/v2/template_combinations/show.json.rabl +3 -0
  418. data/test/foreman_app/app/views/architectures/_form.html.erb +6 -0
  419. data/test/foreman_app/app/views/architectures/edit.html.erb +3 -0
  420. data/test/foreman_app/app/views/architectures/index.html.erb +21 -0
  421. data/test/foreman_app/app/views/architectures/new.html.erb +3 -0
  422. data/test/foreman_app/app/views/architectures/welcome.html.erb +14 -0
  423. data/test/foreman_app/app/views/audits/_list.erb +24 -0
  424. data/test/foreman_app/app/views/audits/index.html.erb +6 -0
  425. data/test/foreman_app/app/views/audits/show.html.erb +56 -0
  426. data/test/foreman_app/app/views/auth_source_ldaps/_form.html.erb +23 -0
  427. data/test/foreman_app/app/views/auth_source_ldaps/edit.html.erb +3 -0
  428. data/test/foreman_app/app/views/auth_source_ldaps/index.html.erb +22 -0
  429. data/test/foreman_app/app/views/auth_source_ldaps/new.html.erb +3 -0
  430. data/test/foreman_app/app/views/auth_source_ldaps/welcome.html.erb +8 -0
  431. data/test/foreman_app/app/views/bookmarks/_form.html.erb +8 -0
  432. data/test/foreman_app/app/views/bookmarks/_list.html.erb +7 -0
  433. data/test/foreman_app/app/views/bookmarks/edit.html.erb +3 -0
  434. data/test/foreman_app/app/views/bookmarks/index.html.erb +25 -0
  435. data/test/foreman_app/app/views/bookmarks/new.html.erb +3 -0
  436. data/test/foreman_app/app/views/bookmarks/welcome.html.erb +8 -0
  437. data/test/foreman_app/app/views/common/403.html.erb +9 -0
  438. data/test/foreman_app/app/views/common/404.html.erb +8 -0
  439. data/test/foreman_app/app/views/common/500.html.erb +19 -0
  440. data/test/foreman_app/app/views/common/_domain.html.erb +9 -0
  441. data/test/foreman_app/app/views/common/_domain_subnet.html.erb +10 -0
  442. data/test/foreman_app/app/views/common/_edit_habtm.erb +20 -0
  443. data/test/foreman_app/app/views/common/_notice.erb +20 -0
  444. data/test/foreman_app/app/views/common/_puppetclasses_or_envs_changed.html.erb +32 -0
  445. data/test/foreman_app/app/views/common/_searchbar.erb +37 -0
  446. data/test/foreman_app/app/views/common/_show_habtm.html.erb +1 -0
  447. data/test/foreman_app/app/views/common/os_selection/_architecture.html.erb +9 -0
  448. data/test/foreman_app/app/views/common/os_selection/_image_details.html.erb +7 -0
  449. data/test/foreman_app/app/views/common/os_selection/_initial.html.erb +15 -0
  450. data/test/foreman_app/app/views/common/os_selection/_operatingsystem.html.erb +15 -0
  451. data/test/foreman_app/app/views/common_parameters/_form.html.erb +6 -0
  452. data/test/foreman_app/app/views/common_parameters/_inherited_parameters.erb +23 -0
  453. data/test/foreman_app/app/views/common_parameters/_parameter.erb +14 -0
  454. data/test/foreman_app/app/views/common_parameters/_parameters.erb +6 -0
  455. data/test/foreman_app/app/views/common_parameters/_puppetclass_parameter.erb +16 -0
  456. data/test/foreman_app/app/views/common_parameters/_puppetclasses_parameters.erb +7 -0
  457. data/test/foreman_app/app/views/common_parameters/_show_parameter.html.erb +5 -0
  458. data/test/foreman_app/app/views/common_parameters/edit.html.erb +3 -0
  459. data/test/foreman_app/app/views/common_parameters/index.html.erb +22 -0
  460. data/test/foreman_app/app/views/common_parameters/new.html.erb +3 -0
  461. data/test/foreman_app/app/views/compute_resources/_form.html.erb +44 -0
  462. data/test/foreman_app/app/views/compute_resources/edit.html.erb +3 -0
  463. data/test/foreman_app/app/views/compute_resources/form/_ec2.html.erb +8 -0
  464. data/test/foreman_app/app/views/compute_resources/form/_libvirt.html.erb +9 -0
  465. data/test/foreman_app/app/views/compute_resources/form/_openstack.html.erb +9 -0
  466. data/test/foreman_app/app/views/compute_resources/form/_ovirt.html.erb +8 -0
  467. data/test/foreman_app/app/views/compute_resources/form/_rackspace.html.erb +8 -0
  468. data/test/foreman_app/app/views/compute_resources/form/_vmware.html.erb +8 -0
  469. data/test/foreman_app/app/views/compute_resources/index.html.erb +24 -0
  470. data/test/foreman_app/app/views/compute_resources/new.html.erb +3 -0
  471. data/test/foreman_app/app/views/compute_resources/show.html.erb +56 -0
  472. data/test/foreman_app/app/views/compute_resources_vms/form/_ec2.html.erb +10 -0
  473. data/test/foreman_app/app/views/compute_resources_vms/form/_libvirt.html.erb +33 -0
  474. data/test/foreman_app/app/views/compute_resources_vms/form/_openstack.html.erb +9 -0
  475. data/test/foreman_app/app/views/compute_resources_vms/form/_ovirt.html.erb +43 -0
  476. data/test/foreman_app/app/views/compute_resources_vms/form/_rackspace.html.erb +7 -0
  477. data/test/foreman_app/app/views/compute_resources_vms/form/_vmware.html.erb +37 -0
  478. data/test/foreman_app/app/views/compute_resources_vms/form/libvirt/_network.html.erb +9 -0
  479. data/test/foreman_app/app/views/compute_resources_vms/form/libvirt/_volume.html.erb +6 -0
  480. data/test/foreman_app/app/views/compute_resources_vms/form/ovirt/_network.html.erb +13 -0
  481. data/test/foreman_app/app/views/compute_resources_vms/form/ovirt/_volume.html.erb +18 -0
  482. data/test/foreman_app/app/views/compute_resources_vms/form/vmware/_network.html.erb +8 -0
  483. data/test/foreman_app/app/views/compute_resources_vms/form/vmware/_volume.html.erb +8 -0
  484. data/test/foreman_app/app/views/compute_resources_vms/index.html.erb +3 -0
  485. data/test/foreman_app/app/views/compute_resources_vms/index/_ec2.html.erb +25 -0
  486. data/test/foreman_app/app/views/compute_resources_vms/index/_libvirt.html.erb +23 -0
  487. data/test/foreman_app/app/views/compute_resources_vms/index/_openstack.html.erb +23 -0
  488. data/test/foreman_app/app/views/compute_resources_vms/index/_ovirt.html.erb +24 -0
  489. data/test/foreman_app/app/views/compute_resources_vms/index/_rackspace.html.erb +22 -0
  490. data/test/foreman_app/app/views/compute_resources_vms/index/_vmware.html.erb +27 -0
  491. data/test/foreman_app/app/views/compute_resources_vms/new.html.erb +9 -0
  492. data/test/foreman_app/app/views/compute_resources_vms/show.html.erb +8 -0
  493. data/test/foreman_app/app/views/compute_resources_vms/show/_ec2.html.erb +19 -0
  494. data/test/foreman_app/app/views/compute_resources_vms/show/_libvirt.html.erb +53 -0
  495. data/test/foreman_app/app/views/compute_resources_vms/show/_openstack.html.erb +19 -0
  496. data/test/foreman_app/app/views/compute_resources_vms/show/_ovirt.html.erb +47 -0
  497. data/test/foreman_app/app/views/compute_resources_vms/show/_rackspace.html.erb +19 -0
  498. data/test/foreman_app/app/views/compute_resources_vms/show/_vmware.html.erb +16 -0
  499. data/test/foreman_app/app/views/config_templates/_combination.html.erb +5 -0
  500. data/test/foreman_app/app/views/config_templates/_combinations.html.erb +6 -0
  501. data/test/foreman_app/app/views/config_templates/_diff.erb +14 -0
  502. data/test/foreman_app/app/views/config_templates/_form.html.erb +94 -0
  503. data/test/foreman_app/app/views/config_templates/edit.html.erb +3 -0
  504. data/test/foreman_app/app/views/config_templates/index.html.erb +31 -0
  505. data/test/foreman_app/app/views/config_templates/new.html.erb +3 -0
  506. data/test/foreman_app/app/views/dashboard/_status_table.html.erb +32 -0
  507. data/test/foreman_app/app/views/dashboard/index.html.erb +24 -0
  508. data/test/foreman_app/app/views/dashboard/welcome.html.erb +118 -0
  509. data/test/foreman_app/app/views/domains/_form.html.erb +43 -0
  510. data/test/foreman_app/app/views/domains/edit.html.erb +3 -0
  511. data/test/foreman_app/app/views/domains/index.html.erb +20 -0
  512. data/test/foreman_app/app/views/domains/new.html.erb +3 -0
  513. data/test/foreman_app/app/views/domains/welcome.html.erb +13 -0
  514. data/test/foreman_app/app/views/environments/_form.html.erb +38 -0
  515. data/test/foreman_app/app/views/environments/edit.html.erb +3 -0
  516. data/test/foreman_app/app/views/environments/index.html.erb +27 -0
  517. data/test/foreman_app/app/views/environments/new.html.erb +3 -0
  518. data/test/foreman_app/app/views/environments/welcome.html.erb +15 -0
  519. data/test/foreman_app/app/views/fact_values/index.html.erb +40 -0
  520. data/test/foreman_app/app/views/fact_values/welcome.html.erb +9 -0
  521. data/test/foreman_app/app/views/facts/show.html.erb +3 -0
  522. data/test/foreman_app/app/views/home/_location_dropdown.html.erb +17 -0
  523. data/test/foreman_app/app/views/home/_org_switcher.html.erb +11 -0
  524. data/test/foreman_app/app/views/home/_organization_dropdown.html.erb +17 -0
  525. data/test/foreman_app/app/views/home/_settings.html.erb +22 -0
  526. data/test/foreman_app/app/views/home/_topbar.html.erb +33 -0
  527. data/test/foreman_app/app/views/home/_user_dropdown.html.erb +10 -0
  528. data/test/foreman_app/app/views/host_mailer/_active_hosts.html.erb +30 -0
  529. data/test/foreman_app/app/views/host_mailer/_link_to_host.html.erb +5 -0
  530. data/test/foreman_app/app/views/host_mailer/_list.html.erb +13 -0
  531. data/test/foreman_app/app/views/host_mailer/_nonactive_hosts.html.erb +30 -0
  532. data/test/foreman_app/app/views/host_mailer/error_state.html.erb +10 -0
  533. data/test/foreman_app/app/views/host_mailer/summary.html.erb +17 -0
  534. data/test/foreman_app/app/views/hostgroups/_form.html.erb +69 -0
  535. data/test/foreman_app/app/views/hostgroups/edit.html.erb +3 -0
  536. data/test/foreman_app/app/views/hostgroups/index.html.erb +23 -0
  537. data/test/foreman_app/app/views/hostgroups/new.html.erb +3 -0
  538. data/test/foreman_app/app/views/hostgroups/welcome.html.erb +20 -0
  539. data/test/foreman_app/app/views/hosts/_assign_hosts.html.erb +42 -0
  540. data/test/foreman_app/app/views/hosts/_compute.html.erb +12 -0
  541. data/test/foreman_app/app/views/hosts/_conflicts.html.erb +28 -0
  542. data/test/foreman_app/app/views/hosts/_form.html.erb +109 -0
  543. data/test/foreman_app/app/views/hosts/_interfaces.html.erb +29 -0
  544. data/test/foreman_app/app/views/hosts/_list.html.erb +47 -0
  545. data/test/foreman_app/app/views/hosts/_metrics.html.erb +13 -0
  546. data/test/foreman_app/app/views/hosts/_operating_system.erb +41 -0
  547. data/test/foreman_app/app/views/hosts/_overview.html.erb +25 -0
  548. data/test/foreman_app/app/views/hosts/_progress.erb +8 -0
  549. data/test/foreman_app/app/views/hosts/_provisioning.html.erb +9 -0
  550. data/test/foreman_app/app/views/hosts/_selected_hosts.html.erb +31 -0
  551. data/test/foreman_app/app/views/hosts/_taxonomy_import_option.html.erb +2 -0
  552. data/test/foreman_app/app/views/hosts/_unattended.html.erb +34 -0
  553. data/test/foreman_app/app/views/hosts/assign_hosts.html.erb +5 -0
  554. data/test/foreman_app/app/views/hosts/console/log.html.erb +17 -0
  555. data/test/foreman_app/app/views/hosts/console/spice.html.erb +18 -0
  556. data/test/foreman_app/app/views/hosts/console/vnc.html.erb +21 -0
  557. data/test/foreman_app/app/views/hosts/edit.html.erb +7 -0
  558. data/test/foreman_app/app/views/hosts/index.html.erb +4 -0
  559. data/test/foreman_app/app/views/hosts/multiple_build.html.erb +6 -0
  560. data/test/foreman_app/app/views/hosts/multiple_destroy.html.erb +6 -0
  561. data/test/foreman_app/app/views/hosts/multiple_disable.html.erb +6 -0
  562. data/test/foreman_app/app/views/hosts/multiple_enable.html.erb +6 -0
  563. data/test/foreman_app/app/views/hosts/multiple_parameters.html.erb +12 -0
  564. data/test/foreman_app/app/views/hosts/multiple_puppetrun.html.erb +5 -0
  565. data/test/foreman_app/app/views/hosts/new.html.erb +3 -0
  566. data/test/foreman_app/app/views/hosts/query.html.erb +3 -0
  567. data/test/foreman_app/app/views/hosts/select_multiple_environment.html.erb +8 -0
  568. data/test/foreman_app/app/views/hosts/select_multiple_hostgroup.html.erb +6 -0
  569. data/test/foreman_app/app/views/hosts/select_multiple_location.html.erb +6 -0
  570. data/test/foreman_app/app/views/hosts/select_multiple_organization.html.erb +6 -0
  571. data/test/foreman_app/app/views/hosts/show.html.erb +55 -0
  572. data/test/foreman_app/app/views/hosts/storeconfig_klasses.html.erb +12 -0
  573. data/test/foreman_app/app/views/hosts/update_multiple_parameters.html.erb +18 -0
  574. data/test/foreman_app/app/views/hosts/welcome.html.erb +10 -0
  575. data/test/foreman_app/app/views/images/_form.html.erb +16 -0
  576. data/test/foreman_app/app/views/images/edit.html.erb +3 -0
  577. data/test/foreman_app/app/views/images/index.html.erb +26 -0
  578. data/test/foreman_app/app/views/images/new.html.erb +4 -0
  579. data/test/foreman_app/app/views/layouts/application.html.erb +69 -0
  580. data/test/foreman_app/app/views/locations/welcome.html.erb +9 -0
  581. data/test/foreman_app/app/views/lookup_keys/_fields.html.erb +42 -0
  582. data/test/foreman_app/app/views/lookup_keys/_value.html.erb +6 -0
  583. data/test/foreman_app/app/views/lookup_keys/edit.html.erb +7 -0
  584. data/test/foreman_app/app/views/lookup_keys/index.html.erb +22 -0
  585. data/test/foreman_app/app/views/media/_form.html.erb +53 -0
  586. data/test/foreman_app/app/views/media/edit.html.erb +3 -0
  587. data/test/foreman_app/app/views/media/index.html.erb +26 -0
  588. data/test/foreman_app/app/views/media/new.html.erb +3 -0
  589. data/test/foreman_app/app/views/media/welcome.html.erb +19 -0
  590. data/test/foreman_app/app/views/models/_form.html.erb +8 -0
  591. data/test/foreman_app/app/views/models/edit.html.erb +3 -0
  592. data/test/foreman_app/app/views/models/index.html.erb +26 -0
  593. data/test/foreman_app/app/views/models/new.html.erb +3 -0
  594. data/test/foreman_app/app/views/operatingsystems/_form.html.erb +38 -0
  595. data/test/foreman_app/app/views/operatingsystems/_template_defaults.html.erb +19 -0
  596. data/test/foreman_app/app/views/operatingsystems/_templates.html.erb +2 -0
  597. data/test/foreman_app/app/views/operatingsystems/edit.html.erb +3 -0
  598. data/test/foreman_app/app/views/operatingsystems/index.html.erb +22 -0
  599. data/test/foreman_app/app/views/operatingsystems/new.html.erb +3 -0
  600. data/test/foreman_app/app/views/organizations/welcome.html.erb +14 -0
  601. data/test/foreman_app/app/views/ptables/_form.html.erb +8 -0
  602. data/test/foreman_app/app/views/ptables/edit.html.erb +3 -0
  603. data/test/foreman_app/app/views/ptables/index.html.erb +23 -0
  604. data/test/foreman_app/app/views/ptables/new.html.erb +3 -0
  605. data/test/foreman_app/app/views/ptables/welcome.html.erb +52 -0
  606. data/test/foreman_app/app/views/puppetclasses/_class_parameters.html.erb +16 -0
  607. data/test/foreman_app/app/views/puppetclasses/_class_selection.html.erb +44 -0
  608. data/test/foreman_app/app/views/puppetclasses/_classes.html.erb +23 -0
  609. data/test/foreman_app/app/views/puppetclasses/_classes_parameters.html.erb +14 -0
  610. data/test/foreman_app/app/views/puppetclasses/_form.html.erb +90 -0
  611. data/test/foreman_app/app/views/puppetclasses/_selectedClasses.html.erb +4 -0
  612. data/test/foreman_app/app/views/puppetclasses/edit.html.erb +3 -0
  613. data/test/foreman_app/app/views/puppetclasses/index.html.erb +33 -0
  614. data/test/foreman_app/app/views/puppetclasses/new.html.erb +3 -0
  615. data/test/foreman_app/app/views/puppetclasses/no_route.html.erb +11 -0
  616. data/test/foreman_app/app/views/reports/_list.html.erb +34 -0
  617. data/test/foreman_app/app/views/reports/_metrics.html.erb +25 -0
  618. data/test/foreman_app/app/views/reports/_output.html.erb +13 -0
  619. data/test/foreman_app/app/views/reports/index.html.erb +3 -0
  620. data/test/foreman_app/app/views/reports/show.html.erb +37 -0
  621. data/test/foreman_app/app/views/reports/welcome.html.erb +11 -0
  622. data/test/foreman_app/app/views/roles/_form.html.erb +28 -0
  623. data/test/foreman_app/app/views/roles/edit.html.erb +3 -0
  624. data/test/foreman_app/app/views/roles/index.html.erb +28 -0
  625. data/test/foreman_app/app/views/roles/new.html.erb +3 -0
  626. data/test/foreman_app/app/views/roles/report.html.erb +52 -0
  627. data/test/foreman_app/app/views/settings/index.html.erb +29 -0
  628. data/test/foreman_app/app/views/smart_proxies/_form.html.erb +38 -0
  629. data/test/foreman_app/app/views/smart_proxies/autosign/_form.html.erb +9 -0
  630. data/test/foreman_app/app/views/smart_proxies/autosign/index.html.erb +21 -0
  631. data/test/foreman_app/app/views/smart_proxies/autosign/new.html.erb +3 -0
  632. data/test/foreman_app/app/views/smart_proxies/edit.html.erb +3 -0
  633. data/test/foreman_app/app/views/smart_proxies/index.html.erb +37 -0
  634. data/test/foreman_app/app/views/smart_proxies/new.html.erb +3 -0
  635. data/test/foreman_app/app/views/smart_proxies/puppetca/index.html.erb +36 -0
  636. data/test/foreman_app/app/views/statistics/index.html.erb +5 -0
  637. data/test/foreman_app/app/views/subnets/_fields.html.erb +17 -0
  638. data/test/foreman_app/app/views/subnets/_form.html.erb +34 -0
  639. data/test/foreman_app/app/views/subnets/edit.html.erb +3 -0
  640. data/test/foreman_app/app/views/subnets/import.html.erb +26 -0
  641. data/test/foreman_app/app/views/subnets/index.html.erb +28 -0
  642. data/test/foreman_app/app/views/subnets/new.html.erb +3 -0
  643. data/test/foreman_app/app/views/tasks/_list.html.erb +5 -0
  644. data/test/foreman_app/app/views/tasks/show.html.erb +1 -0
  645. data/test/foreman_app/app/views/taxonomies/_form.html.erb +111 -0
  646. data/test/foreman_app/app/views/taxonomies/_step1.html.erb +14 -0
  647. data/test/foreman_app/app/views/taxonomies/_step2.html.erb +18 -0
  648. data/test/foreman_app/app/views/taxonomies/clone.html.erb +3 -0
  649. data/test/foreman_app/app/views/taxonomies/edit.html.erb +4 -0
  650. data/test/foreman_app/app/views/taxonomies/index.html.erb +39 -0
  651. data/test/foreman_app/app/views/taxonomies/mismatches.html.erb +37 -0
  652. data/test/foreman_app/app/views/taxonomies/new.html.erb +3 -0
  653. data/test/foreman_app/app/views/taxonomies/step2.html.erb +3 -0
  654. data/test/foreman_app/app/views/trends/_fields.html.erb +7 -0
  655. data/test/foreman_app/app/views/trends/_form.html.erb +9 -0
  656. data/test/foreman_app/app/views/trends/_hosts.html.erb +13 -0
  657. data/test/foreman_app/app/views/trends/edit.html.erb +33 -0
  658. data/test/foreman_app/app/views/trends/index.html.erb +47 -0
  659. data/test/foreman_app/app/views/trends/new.html.erb +3 -0
  660. data/test/foreman_app/app/views/trends/show.html.erb +19 -0
  661. data/test/foreman_app/app/views/unattended/autowaik.xml.erb +2 -0
  662. data/test/foreman_app/app/views/unattended/autoyast.xml.erb +80 -0
  663. data/test/foreman_app/app/views/unattended/gpxe_kickstart_config.erb +5 -0
  664. data/test/foreman_app/app/views/unattended/grubby.erb +9 -0
  665. data/test/foreman_app/app/views/unattended/jumpstart.html.erb +10 -0
  666. data/test/foreman_app/app/views/unattended/jumpstart_finish.html.erb +51 -0
  667. data/test/foreman_app/app/views/unattended/kickstart.html.erb +71 -0
  668. data/test/foreman_app/app/views/unattended/preseed.html.erb +66 -0
  669. data/test/foreman_app/app/views/unattended/preseed_finish.html.erb +7 -0
  670. data/test/foreman_app/app/views/unattended/pxe_autowaik.erb +3 -0
  671. data/test/foreman_app/app/views/unattended/pxe_autoyast.erb +4 -0
  672. data/test/foreman_app/app/views/unattended/pxe_debian_config.erb +4 -0
  673. data/test/foreman_app/app/views/unattended/pxe_default.erb +23 -0
  674. data/test/foreman_app/app/views/unattended/pxe_jumpstart_config.erb +10 -0
  675. data/test/foreman_app/app/views/unattended/pxe_kickstart_config.erb +4 -0
  676. data/test/foreman_app/app/views/unattended/pxe_local.erb +11 -0
  677. data/test/foreman_app/app/views/unattended/snippets/_epel.erb +15 -0
  678. data/test/foreman_app/app/views/unattended/snippets/_http_proxy.erb +8 -0
  679. data/test/foreman_app/app/views/unattended/snippets/_puppet.conf.erb +15 -0
  680. data/test/foreman_app/app/views/unattended/snippets/_puppet.init.erb +8 -0
  681. data/test/foreman_app/app/views/unattended/snippets/_redhat_register.erb +67 -0
  682. data/test/foreman_app/app/views/unattended/snippets/_vmware.erb +62 -0
  683. data/test/foreman_app/app/views/usergroups/_form.html.erb +7 -0
  684. data/test/foreman_app/app/views/usergroups/edit.html.erb +3 -0
  685. data/test/foreman_app/app/views/usergroups/index.html.erb +24 -0
  686. data/test/foreman_app/app/views/usergroups/new.html.erb +3 -0
  687. data/test/foreman_app/app/views/users/_filters.html.erb +38 -0
  688. data/test/foreman_app/app/views/users/_form.html.erb +58 -0
  689. data/test/foreman_app/app/views/users/_user_fact.html.erb +14 -0
  690. data/test/foreman_app/app/views/users/edit.html.erb +3 -0
  691. data/test/foreman_app/app/views/users/index.html.erb +31 -0
  692. data/test/foreman_app/app/views/users/login.html.erb +22 -0
  693. data/test/foreman_app/app/views/users/new.html.erb +3 -0
  694. data/test/foreman_app/bundler.d/Gemfile.local.rb +2 -0
  695. data/test/foreman_app/bundler.d/assets.rb +12 -0
  696. data/test/foreman_app/bundler.d/console.rb +5 -0
  697. data/test/foreman_app/bundler.d/development.rb +17 -0
  698. data/test/foreman_app/bundler.d/fog.rb +3 -0
  699. data/test/foreman_app/bundler.d/i18n.rb +5 -0
  700. data/test/foreman_app/bundler.d/jsonp.rb +3 -0
  701. data/test/foreman_app/bundler.d/libvirt.rb +3 -0
  702. data/test/foreman_app/bundler.d/mysql.rb +3 -0
  703. data/test/foreman_app/bundler.d/mysql2.rb +3 -0
  704. data/test/foreman_app/bundler.d/openid.rb +3 -0
  705. data/test/foreman_app/bundler.d/ovirt.rb +3 -0
  706. data/test/foreman_app/bundler.d/postgresql.rb +3 -0
  707. data/test/foreman_app/bundler.d/sqlite.rb +3 -0
  708. data/test/foreman_app/bundler.d/test.rb +17 -0
  709. data/test/foreman_app/bundler.d/vmware.rb +3 -0
  710. data/test/foreman_app/config.ru +8 -0
  711. data/test/foreman_app/config/application.rb +114 -0
  712. data/test/foreman_app/config/boot.rb +6 -0
  713. data/test/foreman_app/config/database.yml +22 -0
  714. data/test/foreman_app/config/database.yml.example +22 -0
  715. data/test/foreman_app/config/email.yaml.example +9 -0
  716. data/test/foreman_app/config/environment.rb +5 -0
  717. data/test/foreman_app/config/environments/development.rb +38 -0
  718. data/test/foreman_app/config/environments/production.rb +112 -0
  719. data/test/foreman_app/config/environments/test.rb +42 -0
  720. data/test/foreman_app/config/ignored_environments.yml.sample +9 -0
  721. data/test/foreman_app/config/initializers/apipie.rb +71 -0
  722. data/test/foreman_app/config/initializers/backtrace_silencers.rb +7 -0
  723. data/test/foreman_app/config/initializers/email.rb +17 -0
  724. data/test/foreman_app/config/initializers/fast_gettext.rb +49 -0
  725. data/test/foreman_app/config/initializers/foreman.rb +24 -0
  726. data/test/foreman_app/config/initializers/hostable.rb +3 -0
  727. data/test/foreman_app/config/initializers/inflections.rb +10 -0
  728. data/test/foreman_app/config/initializers/local_secret_token.rb.example +10 -0
  729. data/test/foreman_app/config/initializers/mime_types.rb +6 -0
  730. data/test/foreman_app/config/initializers/puppet.rb +22 -0
  731. data/test/foreman_app/config/initializers/rack_openid.rb +8 -0
  732. data/test/foreman_app/config/initializers/secret_token.rb +15 -0
  733. data/test/foreman_app/config/initializers/session_store.rb +8 -0
  734. data/test/foreman_app/config/initializers/will_paginate.rb +27 -0
  735. data/test/foreman_app/config/initializers/wrap_parameters.rb +13 -0
  736. data/test/foreman_app/config/locales/README +24 -0
  737. data/test/foreman_app/config/locales/de.yml +203 -0
  738. data/test/foreman_app/config/locales/en.yml +205 -0
  739. data/test/foreman_app/config/locales/es.yml +199 -0
  740. data/test/foreman_app/config/locales/ja.yml +197 -0
  741. data/test/foreman_app/config/model.mappings.example +342 -0
  742. data/test/foreman_app/config/routes.rb +332 -0
  743. data/test/foreman_app/config/routes/api/apipiedoc.rb +4 -0
  744. data/test/foreman_app/config/routes/api/v1.rb +65 -0
  745. data/test/foreman_app/config/routes/api/v2.rb +208 -0
  746. data/test/foreman_app/config/settings.rb +13 -0
  747. data/test/foreman_app/config/settings.yaml +18 -0
  748. data/test/foreman_app/config/settings.yaml.example +17 -0
  749. data/test/foreman_app/db/migrate/20090714132448_create_hosts.rb +47 -0
  750. data/test/foreman_app/db/migrate/20090714132449_add_audits_table.rb +27 -0
  751. data/test/foreman_app/db/migrate/20090715143858_create_architectures.rb +19 -0
  752. data/test/foreman_app/db/migrate/20090717025820_create_media.rb +19 -0
  753. data/test/foreman_app/db/migrate/20090718060746_create_domains.rb +15 -0
  754. data/test/foreman_app/db/migrate/20090718064254_create_subnets.rb +18 -0
  755. data/test/foreman_app/db/migrate/20090720134126_create_operatingsystems.rb +16 -0
  756. data/test/foreman_app/db/migrate/20090722140138_create_models.rb +16 -0
  757. data/test/foreman_app/db/migrate/20090722141107_create_environments.rb +18 -0
  758. data/test/foreman_app/db/migrate/20090729132209_create_reports.rb +14 -0
  759. data/test/foreman_app/db/migrate/20090730152224_create_ptables.rb +24 -0
  760. data/test/foreman_app/db/migrate/20090802062223_create_puppetclasses.rb +26 -0
  761. data/test/foreman_app/db/migrate/20090804130144_create_parameters.rb +13 -0
  762. data/test/foreman_app/db/migrate/20090820130541_create_auth_sources.rb +25 -0
  763. data/test/foreman_app/db/migrate/20090905150131_create_hostgroups.rb +24 -0
  764. data/test/foreman_app/db/migrate/20090905155444_add_type_to_parameter.rb +9 -0
  765. data/test/foreman_app/db/migrate/20090907045751_add_domain_to_parameter.rb +10 -0
  766. data/test/foreman_app/db/migrate/20090915030726_change_report_field_type_to_text.rb +13 -0
  767. data/test/foreman_app/db/migrate/20090916053824_change_host_build_default_to_false.rb +11 -0
  768. data/test/foreman_app/db/migrate/20090920043521_add_index_to_host.rb +25 -0
  769. data/test/foreman_app/db/migrate/20090920064156_add_index_to_parameters.rb +15 -0
  770. data/test/foreman_app/db/migrate/20090920065522_add_index_to_reports.rb +9 -0
  771. data/test/foreman_app/db/migrate/20091012135004_create_users.rb +19 -0
  772. data/test/foreman_app/db/migrate/20091016031017_create_sessions.rb +16 -0
  773. data/test/foreman_app/db/migrate/20091022054108_add_status_to_report.rb +15 -0
  774. data/test/foreman_app/db/migrate/20091214045923_calc_existing_reports.rb +19 -0
  775. data/test/foreman_app/db/migrate/20091219132338_create_lookup_keys.rb +14 -0
  776. data/test/foreman_app/db/migrate/20091219132839_create_lookup_values.rb +17 -0
  777. data/test/foreman_app/db/migrate/20100115021803_change_mysql_reports_column.rb +14 -0
  778. data/test/foreman_app/db/migrate/20100310080727_add_family_to_os.rb +33 -0
  779. data/test/foreman_app/db/migrate/20100325142616_update_fact_names_and_values_to_bin.rb +15 -0
  780. data/test/foreman_app/db/migrate/20100414125652_add_releasename_to_os.rb +24 -0
  781. data/test/foreman_app/db/migrate/20100416124600_create_usergroups.rb +17 -0
  782. data/test/foreman_app/db/migrate/20100419151910_add_owner_to_hosts.rb +26 -0
  783. data/test/foreman_app/db/migrate/20100523114430_add_ubuntu_custom_lvm_ptable.rb +67 -0
  784. data/test/foreman_app/db/migrate/20100523141204_create_media_operatingsystems_and_migrate_data.rb +34 -0
  785. data/test/foreman_app/db/migrate/20100524080302_migrate_installation_medium_uri.rb +15 -0
  786. data/test/foreman_app/db/migrate/20100525094200_simplify_parameters.rb +62 -0
  787. data/test/foreman_app/db/migrate/20100601221000_update_os_minor.rb +13 -0
  788. data/test/foreman_app/db/migrate/20100616114400_change_family_in_os.rb +50 -0
  789. data/test/foreman_app/db/migrate/20100625155400_create_notices.rb +21 -0
  790. data/test/foreman_app/db/migrate/20100628123400_add_internal_auth.rb +33 -0
  791. data/test/foreman_app/db/migrate/20100629093200_create_roles.rb +23 -0
  792. data/test/foreman_app/db/migrate/20100701081235_add_user_domains_and_hostgroups.rb +20 -0
  793. data/test/foreman_app/db/migrate/20100822072954_create_user_facts.rb +18 -0
  794. data/test/foreman_app/db/migrate/20100823181036_add_enabled_to_hosts.rb +9 -0
  795. data/test/foreman_app/db/migrate/20100914092104_add_my_booleans_to_user.rb +13 -0
  796. data/test/foreman_app/db/migrate/20101018120548_create_messages.rb +18 -0
  797. data/test/foreman_app/db/migrate/20101018120603_create_sources.rb +18 -0
  798. data/test/foreman_app/db/migrate/20101018120621_create_logs.rb +22 -0
  799. data/test/foreman_app/db/migrate/20101019122857_add_metrics_to_report.rb +9 -0
  800. data/test/foreman_app/db/migrate/20101019183859_convert_reports.rb +38 -0
  801. data/test/foreman_app/db/migrate/20101103150254_add_owned_filter_to_user.rb +9 -0
  802. data/test/foreman_app/db/migrate/20101118130026_correct_media.rb +35 -0
  803. data/test/foreman_app/db/migrate/20101121080425_create_config_templates.rb +15 -0
  804. data/test/foreman_app/db/migrate/20101121135521_create_template_combinations.rb +15 -0
  805. data/test/foreman_app/db/migrate/20101122132041_create_operatingsystems_config_templates.rb +12 -0
  806. data/test/foreman_app/db/migrate/20101123152150_create_template_kinds.rb +18 -0
  807. data/test/foreman_app/db/migrate/20101123153303_create_os_default_templates.rb +15 -0
  808. data/test/foreman_app/db/migrate/20101125153351_add_default_templates.rb +59 -0
  809. data/test/foreman_app/db/migrate/20101130093613_add_sub_systems_to_subnet.rb +13 -0
  810. data/test/foreman_app/db/migrate/20101130100315_create_proxies.rb +13 -0
  811. data/test/foreman_app/db/migrate/20101202104444_add_proxy_to_domain.rb +11 -0
  812. data/test/foreman_app/db/migrate/20101213085232_add_grubby_template.rb +15 -0
  813. data/test/foreman_app/db/migrate/20110117162722_add_host_group_defaults.rb +21 -0
  814. data/test/foreman_app/db/migrate/20110128130239_add_default_pxe_menu_template.rb +15 -0
  815. data/test/foreman_app/db/migrate/20110213104226_create_proxy_features.rb +28 -0
  816. data/test/foreman_app/db/migrate/20110216101848_change_puppetmaster_column.rb +21 -0
  817. data/test/foreman_app/db/migrate/20110301154453_add_managed_to_hosts.rb +15 -0
  818. data/test/foreman_app/db/migrate/20110321070954_revert_face_names_and_values_to_text_records.rb +13 -0
  819. data/test/foreman_app/db/migrate/20110327123639_add_priority_to_parameter.rb +11 -0
  820. data/test/foreman_app/db/migrate/20110404150043_add_media_path_to_medium.rb +13 -0
  821. data/test/foreman_app/db/migrate/20110407091150_add_image_to_host.rb +15 -0
  822. data/test/foreman_app/db/migrate/20110412103238_remove_unused_fields_from_puppet_classes.rb +9 -0
  823. data/test/foreman_app/db/migrate/20110417102947_add_table_bookmarks.rb +31 -0
  824. data/test/foreman_app/db/migrate/20110420150600_add_solaris_templates.rb +42 -0
  825. data/test/foreman_app/db/migrate/20110613141800_add_solaris_disks.rb +16 -0
  826. data/test/foreman_app/db/migrate/20110616080444_add_look_up_key_id_to_puppet_class.rb +28 -0
  827. data/test/foreman_app/db/migrate/20110617190131_add_sparc_info_to_model.rb +11 -0
  828. data/test/foreman_app/db/migrate/20110619130336_add_ancestry_to_hostgroup.rb +11 -0
  829. data/test/foreman_app/db/migrate/20110628115422_create_settings.rb +18 -0
  830. data/test/foreman_app/db/migrate/20110712064120_update_audits_table.rb +16 -0
  831. data/test/foreman_app/db/migrate/20110712070522_create_host_class.rb +11 -0
  832. data/test/foreman_app/db/migrate/20110725142054_add_suse_templates.rb +46 -0
  833. data/test/foreman_app/db/migrate/20110801090318_add_vm_defaults_to_hostgroup.rb +9 -0
  834. data/test/foreman_app/db/migrate/20110803114134_add_subnet_and_domain_to_host_groups.rb +11 -0
  835. data/test/foreman_app/db/migrate/20111124095053_rename_changes_to_audited_changes.rb +9 -0
  836. data/test/foreman_app/db/migrate/20111124095054_add_remote_address_to_audits.rb +10 -0
  837. data/test/foreman_app/db/migrate/20111124095055_rename_parent_to_association.rb +11 -0
  838. data/test/foreman_app/db/migrate/20111205231500_add_gateway_and_dns_to_subnets.rb +13 -0
  839. data/test/foreman_app/db/migrate/20111227095806_ensure_all_hostnames_are_lowercase.rb +9 -0
  840. data/test/foreman_app/db/migrate/20120102071633_add_from_and_to_ranges_to_subnets.rb +13 -0
  841. data/test/foreman_app/db/migrate/20120110113051_create_subnet_domain.rb +21 -0
  842. data/test/foreman_app/db/migrate/20120122131037_create_compute_resources.rb +19 -0
  843. data/test/foreman_app/db/migrate/20120126113850_add_uuid_and_compute_id_to_host.rb +11 -0
  844. data/test/foreman_app/db/migrate/20120127141602_add_windows_templates.rb +47 -0
  845. data/test/foreman_app/db/migrate/20120311081257_create_nics.rb +52 -0
  846. data/test/foreman_app/db/migrate/20120313081913_add_puppet_master_proxy_to_host_and_host_group.rb +41 -0
  847. data/test/foreman_app/db/migrate/20120502105518_update_report_field_to_large_int.rb +9 -0
  848. data/test/foreman_app/db/migrate/20120506143325_create_images.rb +18 -0
  849. data/test/foreman_app/db/migrate/20120509131302_add_cert_name_to_host.rb +12 -0
  850. data/test/foreman_app/db/migrate/20120510113417_create_key_pairs.rb +15 -0
  851. data/test/foreman_app/db/migrate/20120521142924_add_dns_id_to_subnet.rb +9 -0
  852. data/test/foreman_app/db/migrate/20120523065531_add_image_id_to_host.rb +9 -0
  853. data/test/foreman_app/db/migrate/20120529113900_add_user_compute_resources.rb +14 -0
  854. data/test/foreman_app/db/migrate/20120529115814_add_compute_resources_boolean_to_user.rb +9 -0
  855. data/test/foreman_app/db/migrate/20120604114049_add_epel_snippets.rb +10 -0
  856. data/test/foreman_app/db/migrate/20120607074318_convert_params_to_text.rb +11 -0
  857. data/test/foreman_app/db/migrate/20120612070100_change_bookmark_column_to_text.rb +10 -0
  858. data/test/foreman_app/db/migrate/20120613082125_rename_association_to_associated.rb +25 -0
  859. data/test/foreman_app/db/migrate/20120620124658_fix_auditable_type.rb +9 -0
  860. data/test/foreman_app/db/migrate/20120620124659_fix_associated_type.rb +9 -0
  861. data/test/foreman_app/db/migrate/20120621135042_create_taxonomies.rb +14 -0
  862. data/test/foreman_app/db/migrate/20120623002052_add_ok_hosts_book_mark.rb +13 -0
  863. data/test/foreman_app/db/migrate/20120624081510_add_auditable_name_and_associated_name_to_audit.rb +29 -0
  864. data/test/foreman_app/db/migrate/20120624093958_add_os_family_to_media.rb +14 -0
  865. data/test/foreman_app/db/migrate/20120624094034_add_os_family_to_ptable.rb +17 -0
  866. data/test/foreman_app/db/migrate/20120705130038_add_attributes_to_compute_resources.rb +9 -0
  867. data/test/foreman_app/db/migrate/20120824142048_add_some_indexes.rb +23 -0
  868. data/test/foreman_app/db/migrate/20120905095532_create_environment_classes.rb +16 -0
  869. data/test/foreman_app/db/migrate/20120905131841_add_lookup_keys_override_and_required.rb +15 -0
  870. data/test/foreman_app/db/migrate/20120916080843_add_lookup_values_count_to_lookup_keys.rb +9 -0
  871. data/test/foreman_app/db/migrate/20120916080926_cache_lookup_values_count.rb +8 -0
  872. data/test/foreman_app/db/migrate/20120921000313_add_iam_role_to_images.rb +9 -0
  873. data/test/foreman_app/db/migrate/20120921105349_create_tokens.rb +15 -0
  874. data/test/foreman_app/db/migrate/20120927020752_add_bmc_feature_to_proxy.rb +8 -0
  875. data/test/foreman_app/db/migrate/20121003172526_add_taxonomy_ids_to_hosts.rb +11 -0
  876. data/test/foreman_app/db/migrate/20121011115320_change_domain_character_count.rb +9 -0
  877. data/test/foreman_app/db/migrate/20121012170851_create_trends.rb +25 -0
  878. data/test/foreman_app/db/migrate/20121012170936_create_trend_counters.rb +16 -0
  879. data/test/foreman_app/db/migrate/20121015113502_update_media_path_limit.rb +9 -0
  880. data/test/foreman_app/db/migrate/20121018152459_create_hostgroup_classes.rb +11 -0
  881. data/test/foreman_app/db/migrate/20121026160433_add_localboot_template.rb +15 -0
  882. data/test/foreman_app/db/migrate/20121029164911_rename_reply_adress_setting.rb +9 -0
  883. data/test/foreman_app/db/migrate/20121101141448_add_locations_organizations.rb +12 -0
  884. data/test/foreman_app/db/migrate/20121118120028_migrate_hypervisors_to_compute_resources.rb +20 -0
  885. data/test/foreman_app/db/migrate/20121118125341_create_taxable_taxonomies.rb +19 -0
  886. data/test/foreman_app/db/migrate/20121119102104_add_my_taxonomy_to_user.rb +11 -0
  887. data/test/foreman_app/db/migrate/20121218084123_change_smart_variable_length.rb +9 -0
  888. data/test/foreman_app/db/migrate/20121219040534_remove_replay_address_setting.rb +8 -0
  889. data/test/foreman_app/db/migrate/20130109155024_add_ignore_types_to_taxonomy.rb +9 -0
  890. data/test/foreman_app/db/migrate/20130121130826_add_digest_to_messages.rb +18 -0
  891. data/test/foreman_app/db/migrate/20130211160200_add_sti_to_hosts.rb +11 -0
  892. data/test/foreman_app/db/migrate/20130228145456_add_digest_to_sources.rb +22 -0
  893. data/test/foreman_app/db/migrate/20130329195742_remove_duplicate_snippets.rb +20 -0
  894. data/test/foreman_app/db/migrate/20130409081924_add_label_to_host_group.rb +18 -0
  895. data/test/foreman_app/db/migrate/20130417110127_add_sti_to_settings.rb +17 -0
  896. data/test/foreman_app/db/migrate/20130418134513_fix_sti_host_auditable_type.rb +9 -0
  897. data/test/foreman_app/db/migrate/20130419145808_add_id_to_user_hostgroup.rb +9 -0
  898. data/test/foreman_app/db/schema.rb +746 -0
  899. data/test/foreman_app/db/seeds.rb +9 -0
  900. data/test/foreman_app/db/test.sqlite3 +0 -0
  901. data/test/foreman_app/doc/README_FOR_APP +2 -0
  902. data/test/foreman_app/doc/apipie_examples.yml +4645 -0
  903. data/test/foreman_app/extras/changelog +39 -0
  904. data/test/foreman_app/extras/ci/migration.sh +64 -0
  905. data/test/foreman_app/extras/ci/setup.sh +19 -0
  906. data/test/foreman_app/extras/cli/foremancli +210 -0
  907. data/test/foreman_app/extras/dbmigrate +10 -0
  908. data/test/foreman_app/extras/foreman-release.spec +41 -0
  909. data/test/foreman_app/extras/foreman.repo +11 -0
  910. data/test/foreman_app/extras/git2nightly_snapshot +9 -0
  911. data/test/foreman_app/extras/git2release +22 -0
  912. data/test/foreman_app/extras/ignored_environments.yml.sample +10 -0
  913. data/test/foreman_app/extras/jumpstart/README +2 -0
  914. data/test/foreman_app/extras/jumpstart/admin +11 -0
  915. data/test/foreman_app/extras/jumpstart/curl +0 -0
  916. data/test/foreman_app/extras/jumpstart/curl-license +22 -0
  917. data/test/foreman_app/extras/jumpstart/curl.i386 +0 -0
  918. data/test/foreman_app/extras/jumpstart/curl.sparc +0 -0
  919. data/test/foreman_app/extras/jumpstart/dynamic_finish +18 -0
  920. data/test/foreman_app/extras/jumpstart/dynamic_profile +17 -0
  921. data/test/foreman_app/extras/jumpstart/nsswitch.conf +34 -0
  922. data/test/foreman_app/extras/jumpstart/rules +1 -0
  923. data/test/foreman_app/extras/jumpstart/rules.ok +2 -0
  924. data/test/foreman_app/extras/jumpstart/sysidcfg/sysidcfg_primary/sysidcfg +12 -0
  925. data/test/foreman_app/extras/noVNC/websockify.py +5 -0
  926. data/test/foreman_app/extras/noVNC/websockify/__init__.py +2 -0
  927. data/test/foreman_app/extras/noVNC/websockify/websocket.py +982 -0
  928. data/test/foreman_app/extras/noVNC/websockify/websocketproxy.py +393 -0
  929. data/test/foreman_app/extras/packaging/rpm/rel-eng/comps/comps-foreman-fedora18.xml +76 -0
  930. data/test/foreman_app/extras/packaging/rpm/rel-eng/comps/comps-foreman-rhel6.xml +115 -0
  931. data/test/foreman_app/extras/packaging/rpm/rel-eng/packages/foreman +1 -0
  932. data/test/foreman_app/extras/packaging/rpm/rel-eng/releasers.conf +59 -0
  933. data/test/foreman_app/extras/packaging/rpm/rel-eng/tito.props +3 -0
  934. data/test/foreman_app/extras/packaging/rpm/sources/0001-rubygem-actionmailer-fix-dep-versions.patch +19 -0
  935. data/test/foreman_app/extras/packaging/rpm/sources/foreman.cron.d +27 -0
  936. data/test/foreman_app/extras/packaging/rpm/sources/foreman.init +154 -0
  937. data/test/foreman_app/extras/packaging/rpm/sources/foreman.logrotate +10 -0
  938. data/test/foreman_app/extras/packaging/rpm/sources/foreman.repo +11 -0
  939. data/test/foreman_app/extras/packaging/rpm/sources/foreman.spec-devel.patch +55 -0
  940. data/test/foreman_app/extras/packaging/rpm/sources/foreman.sysconfig +21 -0
  941. data/test/foreman_app/extras/query/ssh_using_foreman +136 -0
  942. data/test/foreman_app/extras/rdoc/rdoc_prepare_script.rb +51 -0
  943. data/test/foreman_app/foreman.spec +621 -0
  944. data/test/foreman_app/lib/api/api_responder.rb +17 -0
  945. data/test/foreman_app/lib/api/authorization.rb +78 -0
  946. data/test/foreman_app/lib/api/version1.rb +7 -0
  947. data/test/foreman_app/lib/api/version2.rb +7 -0
  948. data/test/foreman_app/lib/api_constraints.rb +15 -0
  949. data/test/foreman_app/lib/audit_extensions.rb +63 -0
  950. data/test/foreman_app/lib/core_extensions.rb +100 -0
  951. data/test/foreman_app/lib/fog_extensions.rb +45 -0
  952. data/test/foreman_app/lib/fog_extensions/aws/flavor.rb +9 -0
  953. data/test/foreman_app/lib/fog_extensions/aws/server.rb +18 -0
  954. data/test/foreman_app/lib/fog_extensions/libvirt/server.rb +24 -0
  955. data/test/foreman_app/lib/fog_extensions/model.rb +27 -0
  956. data/test/foreman_app/lib/fog_extensions/openstack/flavor.rb +13 -0
  957. data/test/foreman_app/lib/fog_extensions/openstack/server.rb +40 -0
  958. data/test/foreman_app/lib/fog_extensions/ovirt/server.rb +15 -0
  959. data/test/foreman_app/lib/fog_extensions/ovirt/volume.rb +11 -0
  960. data/test/foreman_app/lib/fog_extensions/vsphere/folder.rb +14 -0
  961. data/test/foreman_app/lib/fog_extensions/vsphere/mini_server.rb +20 -0
  962. data/test/foreman_app/lib/fog_extensions/vsphere/mini_servers.rb +22 -0
  963. data/test/foreman_app/lib/fog_extensions/vsphere/server.rb +19 -0
  964. data/test/foreman_app/lib/foreman.rb +14 -0
  965. data/test/foreman_app/lib/foreman/access_control.rb +120 -0
  966. data/test/foreman_app/lib/foreman/access_permissions.rb +572 -0
  967. data/test/foreman_app/lib/foreman/controller.rb +2 -0
  968. data/test/foreman_app/lib/foreman/controller/auto_complete_search.rb +23 -0
  969. data/test/foreman_app/lib/foreman/controller/environments.rb +36 -0
  970. data/test/foreman_app/lib/foreman/controller/host_details.rb +69 -0
  971. data/test/foreman_app/lib/foreman/controller/smart_proxy_auth.rb +68 -0
  972. data/test/foreman_app/lib/foreman/controller/taxonomies_controller.rb +178 -0
  973. data/test/foreman_app/lib/foreman/controller/taxonomy_multiple.rb +56 -0
  974. data/test/foreman_app/lib/foreman/default_data/loader.rb +166 -0
  975. data/test/foreman_app/lib/foreman/exception.rb +37 -0
  976. data/test/foreman_app/lib/foreman/importer_puppetclass.rb +48 -0
  977. data/test/foreman_app/lib/foreman/model.rb +2 -0
  978. data/test/foreman_app/lib/foreman/model/ec2.rb +128 -0
  979. data/test/foreman_app/lib/foreman/model/libvirt.rb +150 -0
  980. data/test/foreman_app/lib/foreman/model/openstack.rb +130 -0
  981. data/test/foreman_app/lib/foreman/model/ovirt.rb +250 -0
  982. data/test/foreman_app/lib/foreman/model/rackspace.rb +108 -0
  983. data/test/foreman_app/lib/foreman/model/vmware.rb +181 -0
  984. data/test/foreman_app/lib/foreman/provision.rb +3 -0
  985. data/test/foreman_app/lib/foreman/provision/ssh.rb +102 -0
  986. data/test/foreman_app/lib/foreman/renderer.rb +68 -0
  987. data/test/foreman_app/lib/foreman/sti.rb +30 -0
  988. data/test/foreman_app/lib/foreman/thread_session.rb +163 -0
  989. data/test/foreman_app/lib/foreman/util.rb +25 -0
  990. data/test/foreman_app/lib/foreman/wrapped_exception.rb +23 -0
  991. data/test/foreman_app/lib/net.rb +50 -0
  992. data/test/foreman_app/lib/net/dhcp.rb +6 -0
  993. data/test/foreman_app/lib/net/dhcp/record.rb +56 -0
  994. data/test/foreman_app/lib/net/dhcp/sparc_record.rb +25 -0
  995. data/test/foreman_app/lib/net/dns.rb +78 -0
  996. data/test/foreman_app/lib/net/dns/a_record.rb +47 -0
  997. data/test/foreman_app/lib/net/dns/ptr_record.rb +52 -0
  998. data/test/foreman_app/lib/net/validations.rb +47 -0
  999. data/test/foreman_app/lib/orchestration/queue.rb +58 -0
  1000. data/test/foreman_app/lib/proxy_api.rb +6 -0
  1001. data/test/foreman_app/lib/proxy_api/bmc.rb +120 -0
  1002. data/test/foreman_app/lib/proxy_api/dhcp.rb +70 -0
  1003. data/test/foreman_app/lib/proxy_api/dns.rb +26 -0
  1004. data/test/foreman_app/lib/proxy_api/features.rb +12 -0
  1005. data/test/foreman_app/lib/proxy_api/puppet.rb +28 -0
  1006. data/test/foreman_app/lib/proxy_api/puppetca.rb +38 -0
  1007. data/test/foreman_app/lib/proxy_api/resource.rb +90 -0
  1008. data/test/foreman_app/lib/proxy_api/tftp.rb +54 -0
  1009. data/test/foreman_app/lib/puppet_setting.rb +69 -0
  1010. data/test/foreman_app/lib/regexp_extensions.rb +14 -0
  1011. data/test/foreman_app/lib/sso.rb +13 -0
  1012. data/test/foreman_app/lib/sso/apache.rb +16 -0
  1013. data/test/foreman_app/lib/sso/base.rb +27 -0
  1014. data/test/foreman_app/lib/sso/signo.rb +60 -0
  1015. data/test/foreman_app/lib/task.rb +39 -0
  1016. data/test/foreman_app/lib/tasks/convert.rake +127 -0
  1017. data/test/foreman_app/lib/tasks/exception.rake +32 -0
  1018. data/test/foreman_app/lib/tasks/gettext.rake +9 -0
  1019. data/test/foreman_app/lib/tasks/hosts.rake +67 -0
  1020. data/test/foreman_app/lib/tasks/jenkins.rake +19 -0
  1021. data/test/foreman_app/lib/tasks/load_default_data.rake +16 -0
  1022. data/test/foreman_app/lib/tasks/locale.rake +43 -0
  1023. data/test/foreman_app/lib/tasks/model.rake +83 -0
  1024. data/test/foreman_app/lib/tasks/patches.rake +19 -0
  1025. data/test/foreman_app/lib/tasks/pkg.rake +19 -0
  1026. data/test/foreman_app/lib/tasks/puppet.rake +178 -0
  1027. data/test/foreman_app/lib/tasks/reports.rake +82 -0
  1028. data/test/foreman_app/lib/tasks/reset_permissions.rake +20 -0
  1029. data/test/foreman_app/lib/tasks/security.rake +21 -0
  1030. data/test/foreman_app/lib/tasks/smartproxy.rake +58 -0
  1031. data/test/foreman_app/lib/tasks/test_api_dir.rake +10 -0
  1032. data/test/foreman_app/lib/tasks/test_lib_dir.rake +14 -0
  1033. data/test/foreman_app/lib/tasks/trends.rake +32 -0
  1034. data/test/foreman_app/lib/timed_cached_store.rb +55 -0
  1035. data/test/foreman_app/lib/ws_proxy.rb +78 -0
  1036. data/test/foreman_app/locale/Makefile +54 -0
  1037. data/test/foreman_app/locale/README +26 -0
  1038. data/test/foreman_app/locale/de/foreman.po +4477 -0
  1039. data/test/foreman_app/locale/en/foreman.po +4198 -0
  1040. data/test/foreman_app/locale/es/foreman.po +4494 -0
  1041. data/test/foreman_app/locale/foreman.pot +4198 -0
  1042. data/test/foreman_app/locale/ja/foreman.po +4215 -0
  1043. data/test/foreman_app/locale/model_attributes.rb +442 -0
  1044. data/test/foreman_app/log/test.log +36021 -0
  1045. data/test/foreman_app/public/404.html +26 -0
  1046. data/test/foreman_app/public/422.html +26 -0
  1047. data/test/foreman_app/public/500.html +26 -0
  1048. data/test/foreman_app/public/blank.html +33 -0
  1049. data/test/foreman_app/public/favicon.ico +0 -0
  1050. data/test/foreman_app/public/robots.txt +5 -0
  1051. data/test/foreman_app/script/foreman-config +147 -0
  1052. data/test/foreman_app/script/performance/benchmarker +3 -0
  1053. data/test/foreman_app/script/performance/profiler +3 -0
  1054. data/test/foreman_app/script/rails +6 -0
  1055. data/test/foreman_app/script/show-missing-rails-locales.sh +25 -0
  1056. data/test/foreman_app/script/update-rails-locales.sh +16 -0
  1057. data/test/foreman_app/test/fixtures/architectures.yml +10 -0
  1058. data/test/foreman_app/test/fixtures/audits.yml +18 -0
  1059. data/test/foreman_app/test/fixtures/auth_sources.yml +20 -0
  1060. data/test/foreman_app/test/fixtures/bookmarks.yml +13 -0
  1061. data/test/foreman_app/test/fixtures/brslc022.facts.yaml +68 -0
  1062. data/test/foreman_app/test/fixtures/compute_resources.yml +28 -0
  1063. data/test/foreman_app/test/fixtures/config_templates.yml +47 -0
  1064. data/test/foreman_app/test/fixtures/domains.yml +18 -0
  1065. data/test/foreman_app/test/fixtures/environment_classes.yml +15 -0
  1066. data/test/foreman_app/test/fixtures/environments.yml +10 -0
  1067. data/test/foreman_app/test/fixtures/fact_names.yml +5 -0
  1068. data/test/foreman_app/test/fixtures/fact_values.yml +11 -0
  1069. data/test/foreman_app/test/fixtures/features.yml +23 -0
  1070. data/test/foreman_app/test/fixtures/host_classes.yml +9 -0
  1071. data/test/foreman_app/test/fixtures/hostgroup_classes.yml +9 -0
  1072. data/test/foreman_app/test/fixtures/hostgroups.yml +24 -0
  1073. data/test/foreman_app/test/fixtures/hosts.yml +198 -0
  1074. data/test/foreman_app/test/fixtures/images.yml +16 -0
  1075. data/test/foreman_app/test/fixtures/key_pairs.yml +7 -0
  1076. data/test/foreman_app/test/fixtures/logs.yml +11 -0
  1077. data/test/foreman_app/test/fixtures/lookup_keys.yml +32 -0
  1078. data/test/foreman_app/test/fixtures/media.yml +25 -0
  1079. data/test/foreman_app/test/fixtures/messages.yml +7 -0
  1080. data/test/foreman_app/test/fixtures/models.yml +10 -0
  1081. data/test/foreman_app/test/fixtures/notices.yml +7 -0
  1082. data/test/foreman_app/test/fixtures/operatingsystems.yml +49 -0
  1083. data/test/foreman_app/test/fixtures/os_default_templates.yml +21 -0
  1084. data/test/foreman_app/test/fixtures/parameters.yml +30 -0
  1085. data/test/foreman_app/test/fixtures/ptables.yml +17 -0
  1086. data/test/foreman_app/test/fixtures/puppetclasses.yml +13 -0
  1087. data/test/foreman_app/test/fixtures/report-2.6.12-noops.yaml +627 -0
  1088. data/test/foreman_app/test/fixtures/report-2.6.5-errors.yaml +60 -0
  1089. data/test/foreman_app/test/fixtures/report-2.6.5.yaml +413 -0
  1090. data/test/foreman_app/test/fixtures/report-3.0.1.yaml +283 -0
  1091. data/test/foreman_app/test/fixtures/report-applied.yaml +86 -0
  1092. data/test/foreman_app/test/fixtures/report-empty.yaml +31 -0
  1093. data/test/foreman_app/test/fixtures/report-errors.yaml +66 -0
  1094. data/test/foreman_app/test/fixtures/report-skipped.yaml +86 -0
  1095. data/test/foreman_app/test/fixtures/reports.yml +13 -0
  1096. data/test/foreman_app/test/fixtures/roles.yml +198 -0
  1097. data/test/foreman_app/test/fixtures/sample_http_preseed_template +66 -0
  1098. data/test/foreman_app/test/fixtures/sample_tokenised_template +66 -0
  1099. data/test/foreman_app/test/fixtures/settings.yml +176 -0
  1100. data/test/foreman_app/test/fixtures/smart_proxies.yml +23 -0
  1101. data/test/foreman_app/test/fixtures/sources.yml +7 -0
  1102. data/test/foreman_app/test/fixtures/subnet_domains.yml +9 -0
  1103. data/test/foreman_app/test/fixtures/subnets.yml +26 -0
  1104. data/test/foreman_app/test/fixtures/taxable_taxonomies.yml +15 -0
  1105. data/test/foreman_app/test/fixtures/taxonomies.yml +15 -0
  1106. data/test/foreman_app/test/fixtures/template_combinations.yml +19 -0
  1107. data/test/foreman_app/test/fixtures/template_kinds.yml +14 -0
  1108. data/test/foreman_app/test/fixtures/trend_counters.yml +9 -0
  1109. data/test/foreman_app/test/fixtures/trends.yml +9 -0
  1110. data/test/foreman_app/test/fixtures/trends_controller_test.rb +8 -0
  1111. data/test/foreman_app/test/fixtures/user_facts.yml +7 -0
  1112. data/test/foreman_app/test/fixtures/usergroups.yml +7 -0
  1113. data/test/foreman_app/test/fixtures/users.yml +52 -0
  1114. data/test/foreman_app/test/functional/api/v1/architectures_controller_test.rb +79 -0
  1115. data/test/foreman_app/test/functional/api/v1/audits_controller_test.rb +20 -0
  1116. data/test/foreman_app/test/functional/api/v1/auth_source_ldaps_controller_test.rb +41 -0
  1117. data/test/foreman_app/test/functional/api/v1/bookmarks_controller_test.rb +60 -0
  1118. data/test/foreman_app/test/functional/api/v1/common_parameters_controller_test.rb +41 -0
  1119. data/test/foreman_app/test/functional/api/v1/compute_resources_controller_test.rb +50 -0
  1120. data/test/foreman_app/test/functional/api/v1/config_templates_controller_test.rb +82 -0
  1121. data/test/foreman_app/test/functional/api/v1/dashboard_controller_test.rb +12 -0
  1122. data/test/foreman_app/test/functional/api/v1/domains_controller_test.rb +50 -0
  1123. data/test/foreman_app/test/functional/api/v1/environments_controller_test.rb +40 -0
  1124. data/test/foreman_app/test/functional/api/v1/fact_values_controller_test.rb +19 -0
  1125. data/test/foreman_app/test/functional/api/v1/home_controller_test.rb +11 -0
  1126. data/test/foreman_app/test/functional/api/v1/hostgroups_controller_test.rb +41 -0
  1127. data/test/foreman_app/test/functional/api/v1/hosts_controller_test.rb +66 -0
  1128. data/test/foreman_app/test/functional/api/v1/images_controller_test.rb +47 -0
  1129. data/test/foreman_app/test/functional/api/v1/lookup_keys_controller_test.rb +41 -0
  1130. data/test/foreman_app/test/functional/api/v1/media_controller_test.rb +48 -0
  1131. data/test/foreman_app/test/functional/api/v1/models_controller_test.rb +43 -0
  1132. data/test/foreman_app/test/functional/api/v1/operatingsystems_controller_test.rb +55 -0
  1133. data/test/foreman_app/test/functional/api/v1/ptables_controller_test.rb +48 -0
  1134. data/test/foreman_app/test/functional/api/v1/puppetclasses_controller_test.rb +40 -0
  1135. data/test/foreman_app/test/functional/api/v1/reports_controller_test.rb +66 -0
  1136. data/test/foreman_app/test/functional/api/v1/roles_controller_test.rb +41 -0
  1137. data/test/foreman_app/test/functional/api/v1/settings_controller_test.rb +25 -0
  1138. data/test/foreman_app/test/functional/api/v1/smart_proxies_controller_test.rb +72 -0
  1139. data/test/foreman_app/test/functional/api/v1/subnets_controller_test.rb +58 -0
  1140. data/test/foreman_app/test/functional/api/v1/template_kinds_controller_test.rb +11 -0
  1141. data/test/foreman_app/test/functional/api/v1/usergroups_controller_test.rb +41 -0
  1142. data/test/foreman_app/test/functional/api/v1/users_controller_test.rb +137 -0
  1143. data/test/foreman_app/test/functional/api/v2/config_templates_controller_test.rb +80 -0
  1144. data/test/foreman_app/test/functional/api/v2/domains_controller_test.rb +32 -0
  1145. data/test/foreman_app/test/functional/api/v2/host_classes_controller_test.rb +29 -0
  1146. data/test/foreman_app/test/functional/api/v2/hostgroup_class_controller_test.rb +29 -0
  1147. data/test/foreman_app/test/functional/api/v2/locations_controller_test.rb +85 -0
  1148. data/test/foreman_app/test/functional/api/v2/parameters_controller_test.rb +180 -0
  1149. data/test/foreman_app/test/functional/api/v2/puppetclasses_controller_test.rb +103 -0
  1150. data/test/foreman_app/test/functional/api/v2/template_combinations_controller_test.rb +38 -0
  1151. data/test/foreman_app/test/functional/architectures_controller_test.rb +97 -0
  1152. data/test/foreman_app/test/functional/audits_controller_test.rb +29 -0
  1153. data/test/foreman_app/test/functional/auth_source_ldaps_controller_test.rb +66 -0
  1154. data/test/foreman_app/test/functional/bookmarks_controller_test.rb +51 -0
  1155. data/test/foreman_app/test/functional/common_parameters_controller_test.rb +69 -0
  1156. data/test/foreman_app/test/functional/compute_resources_controller_test.rb +157 -0
  1157. data/test/foreman_app/test/functional/compute_resources_vms_controller_test.rb +160 -0
  1158. data/test/foreman_app/test/functional/config_templates_controller_test.rb +132 -0
  1159. data/test/foreman_app/test/functional/dashboard_controller_test.rb +38 -0
  1160. data/test/foreman_app/test/functional/domains_controller_test.rb +101 -0
  1161. data/test/foreman_app/test/functional/environments_controller_test.rb +234 -0
  1162. data/test/foreman_app/test/functional/fact_values_controller_test.rb +138 -0
  1163. data/test/foreman_app/test/functional/facts_controller_test.rb +12 -0
  1164. data/test/foreman_app/test/functional/home_controller_test.rb +9 -0
  1165. data/test/foreman_app/test/functional/hostgroups_controller_test.rb +125 -0
  1166. data/test/foreman_app/test/functional/hosts_controller_test.rb +830 -0
  1167. data/test/foreman_app/test/functional/images_controller_test.rb +55 -0
  1168. data/test/foreman_app/test/functional/locations_controller_test.rb +149 -0
  1169. data/test/foreman_app/test/functional/lookup_keys_controller_test.rb +43 -0
  1170. data/test/foreman_app/test/functional/lookup_values_controller_test.rb +8 -0
  1171. data/test/foreman_app/test/functional/media_controller_test.rb +95 -0
  1172. data/test/foreman_app/test/functional/models_controller_test.rb +66 -0
  1173. data/test/foreman_app/test/functional/notices_controller_test.rb +36 -0
  1174. data/test/foreman_app/test/functional/operatingsystems_controller_test.rb +104 -0
  1175. data/test/foreman_app/test/functional/organizations_controller_test.rb +148 -0
  1176. data/test/foreman_app/test/functional/ptables_controller_test.rb +142 -0
  1177. data/test/foreman_app/test/functional/puppetclasses_controller_test.rb +66 -0
  1178. data/test/foreman_app/test/functional/reports_controller_test.rb +191 -0
  1179. data/test/foreman_app/test/functional/roles_controller_test.rb +124 -0
  1180. data/test/foreman_app/test/functional/settings_controller_test.rb +34 -0
  1181. data/test/foreman_app/test/functional/smart_proxies/autosign_controller_test.rb +8 -0
  1182. data/test/foreman_app/test/functional/smart_proxies/puppetca_controller_test.rb +8 -0
  1183. data/test/foreman_app/test/functional/smart_proxies_controller_test.rb +85 -0
  1184. data/test/foreman_app/test/functional/statistics_controller_test.rb +21 -0
  1185. data/test/foreman_app/test/functional/subnets_controller_test.rb +89 -0
  1186. data/test/foreman_app/test/functional/tasks_controller_test.rb +8 -0
  1187. data/test/foreman_app/test/functional/unattended_controller_test.rb +141 -0
  1188. data/test/foreman_app/test/functional/usergroups_controller_test.rb +66 -0
  1189. data/test/foreman_app/test/functional/users_controller_test.rb +147 -0
  1190. data/test/foreman_app/test/lib/foreman/access_permissions_test.rb +50 -0
  1191. data/test/foreman_app/test/lib/foreman/default_settings/loader_test.rb +39 -0
  1192. data/test/foreman_app/test/lib/foreman/model/ovirt_test.rb +72 -0
  1193. data/test/foreman_app/test/lib/foreman/renderer_test.rb +32 -0
  1194. data/test/foreman_app/test/lib/foreman/util_test.rb +40 -0
  1195. data/test/foreman_app/test/lib/net/dhcp_test.rb +39 -0
  1196. data/test/foreman_app/test/lib/net/net_test.rb +21 -0
  1197. data/test/foreman_app/test/lib/net/validations_test.rb +19 -0
  1198. data/test/foreman_app/test/lib/proxy_api/bmc_test.rb +256 -0
  1199. data/test/foreman_app/test/lib/proxy_api/dhcp_test.rb +60 -0
  1200. data/test/foreman_app/test/lib/puppet_setting_test.rb +92 -0
  1201. data/test/foreman_app/test/performance/browsing_test.rb +9 -0
  1202. data/test/foreman_app/test/test_helper.rb +164 -0
  1203. data/test/foreman_app/test/unit/architecture_test.rb +106 -0
  1204. data/test/foreman_app/test/unit/auth_source_ldap_test.rb +205 -0
  1205. data/test/foreman_app/test/unit/auth_source_test.rb +34 -0
  1206. data/test/foreman_app/test/unit/bookmark_test.rb +32 -0
  1207. data/test/foreman_app/test/unit/classification_test.rb +46 -0
  1208. data/test/foreman_app/test/unit/common_parameter_test.rb +100 -0
  1209. data/test/foreman_app/test/unit/compute_resource_test.rb +88 -0
  1210. data/test/foreman_app/test/unit/config_template_test.rb +67 -0
  1211. data/test/foreman_app/test/unit/domain_parameter_test.rb +106 -0
  1212. data/test/foreman_app/test/unit/domain_test.rb +161 -0
  1213. data/test/foreman_app/test/unit/environment_class_test.rb +9 -0
  1214. data/test/foreman_app/test/unit/environment_test.rb +35 -0
  1215. data/test/foreman_app/test/unit/fact_value_test.rb +25 -0
  1216. data/test/foreman_app/test/unit/facts.yml +91 -0
  1217. data/test/foreman_app/test/unit/facts_importer_test.rb +50 -0
  1218. data/test/foreman_app/test/unit/facts_with_caps.yml +91 -0
  1219. data/test/foreman_app/test/unit/feature_test.rb +8 -0
  1220. data/test/foreman_app/test/unit/group_parameter_test.rb +108 -0
  1221. data/test/foreman_app/test/unit/helpers/architecture_helper_test.rb +4 -0
  1222. data/test/foreman_app/test/unit/helpers/audit_helper_test.rb +4 -0
  1223. data/test/foreman_app/test/unit/helpers/auth_sources_helper_test.rb +4 -0
  1224. data/test/foreman_app/test/unit/helpers/bookmarks_helper_test.rb +4 -0
  1225. data/test/foreman_app/test/unit/helpers/compute_resources_helper_test.rb +4 -0
  1226. data/test/foreman_app/test/unit/helpers/dashboard_helper_test.rb +4 -0
  1227. data/test/foreman_app/test/unit/helpers/domain_helper_test.rb +4 -0
  1228. data/test/foreman_app/test/unit/helpers/environments_helper_test.rb +4 -0
  1229. data/test/foreman_app/test/unit/helpers/fact_values_helper_test.rb +4 -0
  1230. data/test/foreman_app/test/unit/helpers/home_helper_test.rb +4 -0
  1231. data/test/foreman_app/test/unit/helpers/host_groups_helper_test.rb +14 -0
  1232. data/test/foreman_app/test/unit/helpers/hosts_helper_test.rb +4 -0
  1233. data/test/foreman_app/test/unit/helpers/images_helper_test.rb +4 -0
  1234. data/test/foreman_app/test/unit/helpers/lookup_keys_helper_test.rb +4 -0
  1235. data/test/foreman_app/test/unit/helpers/medium_helper_test.rb +4 -0
  1236. data/test/foreman_app/test/unit/helpers/model_helper_test.rb +4 -0
  1237. data/test/foreman_app/test/unit/helpers/operatingsystem_helper_test.rb +4 -0
  1238. data/test/foreman_app/test/unit/helpers/parameters_helper_test.rb +4 -0
  1239. data/test/foreman_app/test/unit/helpers/ptables_helper_test.rb +4 -0
  1240. data/test/foreman_app/test/unit/helpers/puppetclasses_helper_test.rb +4 -0
  1241. data/test/foreman_app/test/unit/helpers/reports_helper_test.rb +4 -0
  1242. data/test/foreman_app/test/unit/helpers/smart_proxies/autosign_helper_test.rb +4 -0
  1243. data/test/foreman_app/test/unit/helpers/smart_proxies/puppetca_helper_test.rb +4 -0
  1244. data/test/foreman_app/test/unit/helpers/statistics_helper_test.rb +4 -0
  1245. data/test/foreman_app/test/unit/helpers/tasks_helper_test.rb +4 -0
  1246. data/test/foreman_app/test/unit/helpers/trends_helper_test.rb +4 -0
  1247. data/test/foreman_app/test/unit/helpers/unattended_helper_test.rb +4 -0
  1248. data/test/foreman_app/test/unit/helpers/usergroups_helper_test.rb +4 -0
  1249. data/test/foreman_app/test/unit/helpers/users_helper_test.rb +4 -0
  1250. data/test/foreman_app/test/unit/host_class_test.rb +8 -0
  1251. data/test/foreman_app/test/unit/host_mailer_test.rb +70 -0
  1252. data/test/foreman_app/test/unit/host_observer_test.rb +35 -0
  1253. data/test/foreman_app/test/unit/host_parameter_test.rb +119 -0
  1254. data/test/foreman_app/test/unit/host_test.rb +606 -0
  1255. data/test/foreman_app/test/unit/hostgroup_class_test.rb +11 -0
  1256. data/test/foreman_app/test/unit/hostgroup_test.rb +178 -0
  1257. data/test/foreman_app/test/unit/image_test.rb +5 -0
  1258. data/test/foreman_app/test/unit/key_pair_test.rb +4 -0
  1259. data/test/foreman_app/test/unit/location_test.rb +162 -0
  1260. data/test/foreman_app/test/unit/log_test.rb +8 -0
  1261. data/test/foreman_app/test/unit/lookup_key_test.rb +88 -0
  1262. data/test/foreman_app/test/unit/medium_test.rb +120 -0
  1263. data/test/foreman_app/test/unit/message_test.rb +8 -0
  1264. data/test/foreman_app/test/unit/model_test.rb +90 -0
  1265. data/test/foreman_app/test/unit/nic_test.rb +49 -0
  1266. data/test/foreman_app/test/unit/notice_test.rb +19 -0
  1267. data/test/foreman_app/test/unit/operatingsystem_test.rb +139 -0
  1268. data/test/foreman_app/test/unit/orchestration/dhcp_test.rb +161 -0
  1269. data/test/foreman_app/test/unit/orchestration/dns_test.rb +54 -0
  1270. data/test/foreman_app/test/unit/orchestration/pxe_local_template +11 -0
  1271. data/test/foreman_app/test/unit/orchestration/pxe_template +4 -0
  1272. data/test/foreman_app/test/unit/orchestration/tftp_test.rb +49 -0
  1273. data/test/foreman_app/test/unit/orchestration_test.rb +25 -0
  1274. data/test/foreman_app/test/unit/organization_test.rb +163 -0
  1275. data/test/foreman_app/test/unit/os_default_template_test.rb +8 -0
  1276. data/test/foreman_app/test/unit/parameter_test.rb +44 -0
  1277. data/test/foreman_app/test/unit/ptable_test.rb +119 -0
  1278. data/test/foreman_app/test/unit/puppet_class_importer_test.rb +67 -0
  1279. data/test/foreman_app/test/unit/puppetclass_test.rb +90 -0
  1280. data/test/foreman_app/test/unit/report_test.rb +196 -0
  1281. data/test/foreman_app/test/unit/role_test.rb +104 -0
  1282. data/test/foreman_app/test/unit/setting_test.rb +158 -0
  1283. data/test/foreman_app/test/unit/smart_proxy_test.rb +27 -0
  1284. data/test/foreman_app/test/unit/source_test.rb +8 -0
  1285. data/test/foreman_app/test/unit/sso.rb +26 -0
  1286. data/test/foreman_app/test/unit/sso/apache_test.rb +38 -0
  1287. data/test/foreman_app/test/unit/sso/base_test.rb +14 -0
  1288. data/test/foreman_app/test/unit/sso/signo_test.rb +81 -0
  1289. data/test/foreman_app/test/unit/subnet_domain_test.rb +8 -0
  1290. data/test/foreman_app/test/unit/subnet_test.rb +182 -0
  1291. data/test/foreman_app/test/unit/suse_test.rb +46 -0
  1292. data/test/foreman_app/test/unit/taxable_taxonomy_test.rb +8 -0
  1293. data/test/foreman_app/test/unit/template_combination_test.rb +8 -0
  1294. data/test/foreman_app/test/unit/template_kind_test.rb +8 -0
  1295. data/test/foreman_app/test/unit/token_test.rb +67 -0
  1296. data/test/foreman_app/test/unit/trend_counter_test.rb +8 -0
  1297. data/test/foreman_app/test/unit/trend_test.rb +8 -0
  1298. data/test/foreman_app/test/unit/user_fact_test.rb +8 -0
  1299. data/test/foreman_app/test/unit/user_test.rb +196 -0
  1300. data/test/foreman_app/test/unit/usergroup_test.rb +161 -0
  1301. data/test/foreman_app/tmp/cache/505/030/idle_timeout +1 -0
  1302. data/test/foreman_app/tmp/cache/505/C00/use_gravatar +1 -0
  1303. data/test/foreman_app/tmp/cache/7D9/CD0/email_reply_address +1 -0
  1304. data/test/foreman_app/tmp/cache/94D/A30/discovery_organization +1 -0
  1305. data/test/foreman_app/tmp/cache/ACF/DB0/authorize_login_delegation +1 -0
  1306. data/test/foreman_app/tmp/secret_token +1 -0
  1307. data/test/foreman_app/vendor/assets/fonts/overpass_bold-web.eot +0 -0
  1308. data/test/foreman_app/vendor/assets/fonts/overpass_bold-web.svg +470 -0
  1309. data/test/foreman_app/vendor/assets/fonts/overpass_bold-web.ttf +0 -0
  1310. data/test/foreman_app/vendor/assets/fonts/overpass_bold-web.woff +0 -0
  1311. data/test/foreman_app/vendor/assets/fonts/overpass_regular-web.eot +0 -0
  1312. data/test/foreman_app/vendor/assets/fonts/overpass_regular-web.svg +470 -0
  1313. data/test/foreman_app/vendor/assets/fonts/overpass_regular-web.ttf +0 -0
  1314. data/test/foreman_app/vendor/assets/fonts/overpass_regular-web.woff +0 -0
  1315. data/test/foreman_app/vendor/assets/javascripts/ace/ace.js +10 -0
  1316. data/test/foreman_app/vendor/assets/javascripts/ace/cockpit.js +1 -0
  1317. data/test/foreman_app/vendor/assets/javascripts/ace/ext-static_highlight.js +1 -0
  1318. data/test/foreman_app/vendor/assets/javascripts/ace/ext-textarea.js +1 -0
  1319. data/test/foreman_app/vendor/assets/javascripts/ace/keybinding-emacs.js +1 -0
  1320. data/test/foreman_app/vendor/assets/javascripts/ace/keybinding-vim.js +1 -0
  1321. data/test/foreman_app/vendor/assets/javascripts/ace/mode-diff.js +165 -0
  1322. data/test/foreman_app/vendor/assets/javascripts/ace/mode-ruby.js +1 -0
  1323. data/test/foreman_app/vendor/assets/javascripts/ace/mode-sh.js +1 -0
  1324. data/test/foreman_app/vendor/assets/javascripts/ace/theme-clouds.js +137 -0
  1325. data/test/foreman_app/vendor/assets/javascripts/ace/theme-dawn.js +1 -0
  1326. data/test/foreman_app/vendor/assets/javascripts/ace/theme-textmate.js +1 -0
  1327. data/test/foreman_app/vendor/assets/javascripts/ace/theme-twilight.js +1 -0
  1328. data/test/foreman_app/vendor/assets/javascripts/ace/worker-coffee.js +1 -0
  1329. data/test/foreman_app/vendor/assets/javascripts/ace/worker-css.js +1 -0
  1330. data/test/foreman_app/vendor/assets/javascripts/ace/worker-javascript.js +1 -0
  1331. data/test/foreman_app/vendor/assets/javascripts/ace/worker-json.js +1 -0
  1332. data/test/foreman_app/vendor/assets/javascripts/ace/worker-xquery.js +1 -0
  1333. data/test/foreman_app/vendor/assets/javascripts/background-size.htc +7 -0
  1334. data/test/foreman_app/vendor/assets/javascripts/diff.js +296 -0
  1335. data/test/foreman_app/vendor/assets/javascripts/flot.js +5 -0
  1336. data/test/foreman_app/vendor/assets/javascripts/jquery.cookie.js +91 -0
  1337. data/test/foreman_app/vendor/assets/javascripts/jquery.dataTables.bootstrap-paging.js +101 -0
  1338. data/test/foreman_app/vendor/assets/javascripts/jquery.dataTables.min.js +155 -0
  1339. data/test/foreman_app/vendor/assets/javascripts/jquery.jeditable.js +556 -0
  1340. data/test/foreman_app/vendor/assets/javascripts/jquery.jnotify.js +209 -0
  1341. data/test/foreman_app/vendor/assets/javascripts/jquery.multi-select.js +503 -0
  1342. data/test/foreman_app/vendor/assets/javascripts/noVNC/base64.js +147 -0
  1343. data/test/foreman_app/vendor/assets/javascripts/noVNC/des.js +273 -0
  1344. data/test/foreman_app/vendor/assets/javascripts/noVNC/display.js +700 -0
  1345. data/test/foreman_app/vendor/assets/javascripts/noVNC/input.js +1911 -0
  1346. data/test/foreman_app/vendor/assets/javascripts/noVNC/jsunzip.js +668 -0
  1347. data/test/foreman_app/vendor/assets/javascripts/noVNC/logo.js +1 -0
  1348. data/test/foreman_app/vendor/assets/javascripts/noVNC/playback.js +90 -0
  1349. data/test/foreman_app/vendor/assets/javascripts/noVNC/rfb.js +1846 -0
  1350. data/test/foreman_app/vendor/assets/javascripts/noVNC/ui.js +649 -0
  1351. data/test/foreman_app/vendor/assets/javascripts/noVNC/util.js +303 -0
  1352. data/test/foreman_app/vendor/assets/javascripts/noVNC/web-socket-js/README.txt +109 -0
  1353. data/test/foreman_app/vendor/assets/javascripts/noVNC/web-socket-js/swfobject.js +4 -0
  1354. data/test/foreman_app/vendor/assets/javascripts/noVNC/web-socket-js/web_socket.js +341 -0
  1355. data/test/foreman_app/vendor/assets/javascripts/noVNC/websock.js +356 -0
  1356. data/test/foreman_app/vendor/assets/javascripts/noVNC/webutil.js +148 -0
  1357. data/test/foreman_app/vendor/assets/javascripts/vendor.js +7 -0
  1358. data/test/foreman_app/vendor/assets/stylesheets/jquery.jnotify.css +97 -0
  1359. data/test/foreman_app/vendor/assets/stylesheets/multi-select.scss +126 -0
  1360. data/test/foreman_app/vendor/assets/stylesheets/vendor.css +3 -0
  1361. data/test/functional/discovers_controller_test.rb +40 -0
  1362. data/test/test_helper.rb +28 -0
  1363. data/test/unit/facts.yml +91 -0
  1364. data/test/unit/host_discovered_test.rb +23 -0
  1365. data/test/unit/setting_discovered_test.rb +9 -0
  1366. metadata +2816 -0
data/LICENSE ADDED
@@ -0,0 +1,619 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.