rearview 1.0.0-jruby

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1980) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -0
  3. data/Rakefile +30 -0
  4. data/app/assets/javascripts/rearview/application.js +13 -0
  5. data/app/assets/stylesheets/rearview/application.css +13 -0
  6. data/app/controllers/rearview/application_controller.rb +6 -0
  7. data/app/controllers/rearview/dashboard_children_controller.rb +25 -0
  8. data/app/controllers/rearview/dashboards_controller.rb +46 -0
  9. data/app/controllers/rearview/home_controller.rb +6 -0
  10. data/app/controllers/rearview/jobs_controller.rb +81 -0
  11. data/app/controllers/rearview/monitor_controller.rb +12 -0
  12. data/app/controllers/rearview/user_controller.rb +21 -0
  13. data/app/helpers/rearview/application_helper.rb +22 -0
  14. data/app/mailers/rearview/alert_mailer.rb +13 -0
  15. data/app/models/rearview/dashboard.rb +11 -0
  16. data/app/models/rearview/job.rb +174 -0
  17. data/app/models/rearview/job_data.rb +13 -0
  18. data/app/models/rearview/job_error.rb +120 -0
  19. data/app/models/rearview/user.rb +5 -0
  20. data/app/views/devise/sessions/new.html.erb +21 -0
  21. data/app/views/devise/shared/_links.erb +25 -0
  22. data/app/views/layouts/devise/sessions.html.erb +51 -0
  23. data/app/views/layouts/rearview/application.html.erb +14 -0
  24. data/app/views/rearview/alert_mailer/alert_email.text.erb +7 -0
  25. data/app/views/rearview/dashboards/_dashboard.json.jbuilder +11 -0
  26. data/app/views/rearview/dashboards/errors.json.jbuilder +5 -0
  27. data/app/views/rearview/dashboards/index.json.jbuilder +5 -0
  28. data/app/views/rearview/dashboards/show.json.jbuilder +1 -0
  29. data/app/views/rearview/home/show.html.erb +54 -0
  30. data/app/views/rearview/job_data/_job_data.json.jbuilder +6 -0
  31. data/app/views/rearview/job_errors/_job_error.json.jbuilder +4 -0
  32. data/app/views/rearview/jobs/_job.json.jbuilder +4 -0
  33. data/app/views/rearview/jobs/data.json.jbuilder +1 -0
  34. data/app/views/rearview/jobs/errors.json.jbuilder +3 -0
  35. data/app/views/rearview/jobs/index.json.jbuilder +4 -0
  36. data/app/views/rearview/jobs/show.json.jbuilder +1 -0
  37. data/app/views/rearview/layouts/application.html.erb +14 -0
  38. data/app/views/rearview/monitor/create.json.jbuilder +6 -0
  39. data/app/views/rearview/user/_user.json.jbuilder +4 -0
  40. data/app/views/rearview/user/show.json.jbuilder +1 -0
  41. data/bin/rails +8 -0
  42. data/config/initializers/unlimited_strength_cryptography.rb +5 -0
  43. data/config/locales/devise.en.yml +59 -0
  44. data/config/routes.rb +30 -0
  45. data/db/migrate/20131106162900_base_schema.rb +73 -0
  46. data/lib/generators/rearview/install_generator.rb +20 -0
  47. data/lib/generators/templates/README.md +12 -0
  48. data/lib/generators/templates/rearview.rb +48 -0
  49. data/lib/jar/commons-validator-1.4.0.jar +0 -0
  50. data/lib/jar/quartz-2.1.7.jar +0 -0
  51. data/lib/rearview/alerts/base.rb +20 -0
  52. data/lib/rearview/alerts/campfire_alert.rb +50 -0
  53. data/lib/rearview/alerts/email_alert.rb +44 -0
  54. data/lib/rearview/alerts/pagerduty_alert.rb +65 -0
  55. data/lib/rearview/alerts.rb +20 -0
  56. data/lib/rearview/alerts_handler.rb +34 -0
  57. data/lib/rearview/concerns/models/user.rb +15 -0
  58. data/lib/rearview/concerns/models.rb +5 -0
  59. data/lib/rearview/concerns.rb +5 -0
  60. data/lib/rearview/configuration.rb +59 -0
  61. data/lib/rearview/constants_module_maker.rb +59 -0
  62. data/lib/rearview/cron_helper.rb +24 -0
  63. data/lib/rearview/distribute.rb +36 -0
  64. data/lib/rearview/engine.rb +36 -0
  65. data/lib/rearview/ext/state_machine.rb +15 -0
  66. data/lib/rearview/graphite_parser.rb +20 -0
  67. data/lib/rearview/logger.rb +10 -0
  68. data/lib/rearview/monitor_runner.rb +277 -0
  69. data/lib/rearview/monitor_service.rb +70 -0
  70. data/lib/rearview/monitor_supervisor.rb +54 -0
  71. data/lib/rearview/monitor_task.rb +50 -0
  72. data/lib/rearview/results_handler.rb +38 -0
  73. data/lib/rearview/sandbox.rb +47 -0
  74. data/lib/rearview/templates/monitor.rb +164 -0
  75. data/lib/rearview/templates/utilities.rb +100 -0
  76. data/lib/rearview/uri_helper.rb +7 -0
  77. data/lib/rearview/version.rb +3 -0
  78. data/lib/rearview.rb +75 -0
  79. data/lib/tasks/rearview_tasks.rake +3 -0
  80. data/public/favicon.ico +0 -0
  81. data/public/help/alert.html +20 -0
  82. data/public/help/quick.html +34 -0
  83. data/public/monitors/index.json +3 -0
  84. data/public/monitors/outage.rb +2 -0
  85. data/public/rearview/build.txt +295 -0
  86. data/public/rearview/css/rearview.css +1 -0
  87. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  88. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  89. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  90. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  91. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  92. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  93. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  94. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  95. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  96. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  97. data/public/rearview/img/livingsocial-logo-white.svg +107 -0
  98. data/public/rearview/img/login/company-logo.svg +107 -0
  99. data/public/rearview/img/noise-light.png +0 -0
  100. data/public/rearview/img/noise.png +0 -0
  101. data/public/rearview/img/rearview.svg +19 -0
  102. data/public/rearview/img/rearviewlogo.png +0 -0
  103. data/public/rearview/img/rearviewlogo_small.png +0 -0
  104. data/public/rearview/img/sample-monitor.png +0 -0
  105. data/public/rearview/js/app.build.js +0 -0
  106. data/public/rearview/js/app.js +1 -0
  107. data/public/rearview/js/collection/dashboard.js +1 -0
  108. data/public/rearview/js/collection/monitor.js +1 -0
  109. data/public/rearview/js/main.js +402 -0
  110. data/public/rearview/js/model/base.js +1 -0
  111. data/public/rearview/js/model/dashboard.js +1 -0
  112. data/public/rearview/js/model/monitor.js +1 -0
  113. data/public/rearview/js/model/user.js +1 -0
  114. data/public/rearview/js/route/index.js +1 -0
  115. data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
  116. data/public/rearview/js/util/templar.js +1 -0
  117. data/public/rearview/js/view/addcategory.js +1 -0
  118. data/public/rearview/js/view/adddashboard.js +1 -0
  119. data/public/rearview/js/view/addmonitor.js +1 -0
  120. data/public/rearview/js/view/alert.js +1 -0
  121. data/public/rearview/js/view/alerttimeline.js +1 -0
  122. data/public/rearview/js/view/base.js +1 -0
  123. data/public/rearview/js/view/dashboard.js +1 -0
  124. data/public/rearview/js/view/dashboardtile.js +1 -0
  125. data/public/rearview/js/view/deletemonitor.js +1 -0
  126. data/public/rearview/js/view/ecosystem.js +1 -0
  127. data/public/rearview/js/view/expandedmonitor.js +1 -0
  128. data/public/rearview/js/view/header.js +1 -0
  129. data/public/rearview/js/view/primarynav.js +1 -0
  130. data/public/rearview/js/view/resetmonitor.js +1 -0
  131. data/public/rearview/js/view/secondarynav.js +1 -0
  132. data/public/rearview/js/view/smallmonitor.js +1 -0
  133. data/public/rearview/less/alert.less +45 -0
  134. data/public/rearview/less/dashboard.less +173 -0
  135. data/public/rearview/less/ecosystem.less +221 -0
  136. data/public/rearview/less/elements.less +168 -0
  137. data/public/rearview/less/expandedmonitor.less +283 -0
  138. data/public/rearview/less/header.less +76 -0
  139. data/public/rearview/less/login.less +1050 -0
  140. data/public/rearview/less/primarynav.less +151 -0
  141. data/public/rearview/less/rearview.less +1207 -0
  142. data/public/rearview/login/icons/rearview.svg +19 -0
  143. data/public/rearview/templates/addcategory.hbs +38 -0
  144. data/public/rearview/templates/adddashboard.hbs +26 -0
  145. data/public/rearview/templates/addmonitor.hbs +10 -0
  146. data/public/rearview/templates/alert.hbs +4 -0
  147. data/public/rearview/templates/alerttimeline.hbs +15 -0
  148. data/public/rearview/templates/dashboard.hbs +35 -0
  149. data/public/rearview/templates/dashboardtile.hbs +22 -0
  150. data/public/rearview/templates/deletemonitor.hbs +16 -0
  151. data/public/rearview/templates/expandedmonitor.hbs +191 -0
  152. data/public/rearview/templates/header.hbs +9 -0
  153. data/public/rearview/templates/primarynav.hbs +50 -0
  154. data/public/rearview/templates/resetmonitor.hbs +16 -0
  155. data/public/rearview/templates/schedulemonitor.hbs +78 -0
  156. data/public/rearview/templates/secondarynav.hbs +11 -0
  157. data/public/rearview/templates/setmetrics.hbs +53 -0
  158. data/public/rearview/templates/smallmonitor.hbs +52 -0
  159. data/public/rearview/templates/test.txt +1 -0
  160. data/public/rearview/test/spec/model/application.js +1 -0
  161. data/public/rearview/test/spec/model/job.js +1 -0
  162. data/public/rearview/test/spec/model/user.js +1 -0
  163. data/public/rearview/test/spec/view/base.js +1 -0
  164. data/public/rearview/vendor/backbone/js/backbone.js +6 -0
  165. data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
  166. data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
  167. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
  168. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  169. data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
  170. data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
  171. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  172. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  173. data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
  174. data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
  175. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  176. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  177. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  178. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  179. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
  180. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
  181. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
  182. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
  183. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
  184. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
  185. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
  186. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
  187. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
  188. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
  189. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
  190. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
  191. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
  192. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
  193. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
  194. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  195. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
  196. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
  197. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
  198. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
  199. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
  200. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
  201. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
  202. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
  203. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
  204. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
  205. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
  206. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  207. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  208. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  209. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
  210. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
  211. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
  212. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
  213. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
  214. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
  215. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
  216. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
  217. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
  218. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
  219. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
  220. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
  221. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
  222. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
  223. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
  224. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
  225. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
  226. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
  227. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  228. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  229. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  230. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
  231. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  232. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  233. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  234. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  235. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  236. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  237. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  238. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  239. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  240. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  241. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  242. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  243. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  244. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  245. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  246. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  247. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  248. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  249. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  250. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  251. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  252. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  253. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  254. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  255. data/public/rearview/vendor/codemirror/LICENSE +23 -0
  256. data/public/rearview/vendor/codemirror/README.md +8 -0
  257. data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
  258. data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
  259. data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
  260. data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
  261. data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
  262. data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
  263. data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
  264. data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
  265. data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
  266. data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
  267. data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
  268. data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
  269. data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
  270. data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
  271. data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
  272. data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
  273. data/public/rearview/vendor/codemirror/demo/search.html +85 -0
  274. data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
  275. data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
  276. data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
  277. data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
  278. data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
  279. data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
  280. data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
  281. data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
  282. data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
  283. data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
  284. data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
  285. data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
  286. data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  287. data/public/rearview/vendor/codemirror/index.html +472 -0
  288. data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
  289. data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
  290. data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
  291. data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
  292. data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
  293. data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
  294. data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
  295. data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
  296. data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
  297. data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
  298. data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
  299. data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
  300. data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
  301. data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
  302. data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
  303. data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
  304. data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
  305. data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
  306. data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
  307. data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
  308. data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
  309. data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
  310. data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
  311. data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
  312. data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
  313. data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
  314. data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
  315. data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  316. data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
  317. data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
  318. data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
  319. data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
  320. data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
  321. data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
  322. data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
  323. data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
  324. data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
  325. data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
  326. data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
  327. data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
  328. data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
  329. data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
  330. data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
  331. data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
  332. data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
  333. data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
  334. data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
  335. data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
  336. data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
  337. data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
  338. data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
  339. data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  340. data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  341. data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  342. data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  343. data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
  344. data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
  345. data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
  346. data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
  347. data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
  348. data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
  349. data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
  350. data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
  351. data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
  352. data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
  353. data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
  354. data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
  355. data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
  356. data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
  357. data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
  358. data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
  359. data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
  360. data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
  361. data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
  362. data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
  363. data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
  364. data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
  365. data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
  366. data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
  367. data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
  368. data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
  369. data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
  370. data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
  371. data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
  372. data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
  373. data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
  374. data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  375. data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
  376. data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
  377. data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
  378. data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
  379. data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
  380. data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
  381. data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  382. data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  383. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  384. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
  385. data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
  386. data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
  387. data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
  388. data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
  389. data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
  390. data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
  391. data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
  392. data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
  393. data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
  394. data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
  395. data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
  396. data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
  397. data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
  398. data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
  399. data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
  400. data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
  401. data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
  402. data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
  403. data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
  404. data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
  405. data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
  406. data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
  407. data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
  408. data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  409. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  410. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
  411. data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
  412. data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
  413. data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
  414. data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  415. data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
  416. data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
  417. data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
  418. data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
  419. data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
  420. data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
  421. data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
  422. data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
  423. data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
  424. data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
  425. data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
  426. data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
  427. data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
  428. data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
  429. data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
  430. data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
  431. data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
  432. data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
  433. data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
  434. data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
  435. data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
  436. data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
  437. data/public/rearview/vendor/codemirror/package.json +21 -0
  438. data/public/rearview/vendor/codemirror/test/driver.js +1 -0
  439. data/public/rearview/vendor/codemirror/test/index.html +168 -0
  440. data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
  441. data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
  442. data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
  443. data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
  444. data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
  445. data/public/rearview/vendor/codemirror/test/run.js +32 -0
  446. data/public/rearview/vendor/codemirror/test/test.js +1 -0
  447. data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
  448. data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
  449. data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
  450. data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
  451. data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
  452. data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
  453. data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
  454. data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
  455. data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
  456. data/public/rearview/vendor/codemirror/theme/night.css +19 -0
  457. data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
  458. data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
  459. data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
  460. data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
  461. data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
  462. data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  463. data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
  464. data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
  465. data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  466. data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  467. data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
  468. data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
  469. data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  470. data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  471. data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  472. data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
  473. data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  474. data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
  475. data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  476. data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  477. data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  478. data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  479. data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  480. data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
  481. data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
  482. data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  483. data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  484. data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  485. data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  486. data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  487. data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  488. data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  489. data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  490. data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  491. data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  492. data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  493. data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  494. data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
  495. data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
  496. data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  497. data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  498. data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  499. data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  500. data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  501. data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  502. data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
  503. data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  504. data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  505. data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
  506. data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  507. data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  508. data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  509. data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  510. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  511. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  512. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  513. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  514. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  515. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  516. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  517. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  518. data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
  519. data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  520. data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
  521. data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  522. data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
  523. data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
  524. data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
  525. data/public/rearview/vendor/highcharts/index.htm +79 -0
  526. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
  527. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
  528. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
  529. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
  530. data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
  531. data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
  532. data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
  533. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
  534. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
  535. data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
  536. data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
  537. data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
  538. data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
  539. data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
  540. data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
  541. data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
  542. data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
  543. data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
  544. data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
  545. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  546. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
  547. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
  548. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
  549. data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
  550. data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
  551. data/public/rearview/vendor/jasmine/src/Player.js +1 -0
  552. data/public/rearview/vendor/jasmine/src/Song.js +1 -0
  553. data/public/rearview/vendor/jquery/js/jquery.js +24 -0
  554. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  555. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  556. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  557. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  558. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  559. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  560. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  561. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  562. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  563. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  564. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  565. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  566. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  567. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  568. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  569. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
  570. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
  571. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  572. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
  573. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  574. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  575. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  576. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  577. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  578. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  579. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  580. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  581. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  582. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  583. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  584. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  585. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  586. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  587. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  588. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  589. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  590. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
  591. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
  592. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
  593. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
  594. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  595. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  596. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  597. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  598. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  599. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
  600. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  601. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  602. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  603. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  604. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  605. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  606. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  607. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  608. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  609. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  610. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  611. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  612. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  613. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  614. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  615. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  616. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  617. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  618. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  619. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  620. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  621. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  622. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  623. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  624. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  625. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  626. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  627. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  628. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  629. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  630. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  631. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  632. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  633. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  634. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  635. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  636. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  637. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  638. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  639. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  640. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  641. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  642. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  643. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  644. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  645. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  646. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  647. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  648. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  649. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  650. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  651. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  652. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  653. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  654. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  655. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  656. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  657. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  658. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  659. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  660. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  661. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  662. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  663. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  664. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  665. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  666. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  667. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  668. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  669. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  670. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  671. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  672. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  673. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
  674. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
  675. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
  676. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
  677. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
  678. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
  679. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
  680. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
  681. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  682. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  683. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  684. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  685. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  686. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  687. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  688. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  689. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  690. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  691. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  692. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  693. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  694. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  695. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  696. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
  697. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
  698. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
  699. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
  700. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
  701. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
  702. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  703. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  704. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  705. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  706. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  707. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  708. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  709. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  710. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  711. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  712. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  713. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  714. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  715. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  716. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
  717. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
  718. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
  719. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
  720. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  721. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  722. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  723. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  724. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  725. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  726. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  727. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  728. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  729. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  730. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  731. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  732. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  733. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  734. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  735. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
  736. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
  737. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
  738. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
  739. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
  740. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
  741. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  742. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  743. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  744. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  745. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  746. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  747. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  748. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  749. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  750. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  751. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  752. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  753. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  754. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  755. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  756. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
  757. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
  758. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
  759. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
  760. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
  761. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
  762. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
  763. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
  764. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
  765. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
  766. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
  767. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
  768. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
  769. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
  770. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
  771. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
  772. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
  773. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
  774. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
  775. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
  776. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
  777. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
  778. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
  779. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
  780. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
  781. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
  782. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
  783. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
  784. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
  785. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
  786. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
  787. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
  788. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
  789. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
  790. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
  791. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
  792. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
  793. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
  794. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
  795. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
  796. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
  797. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
  798. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
  799. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
  800. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
  801. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
  802. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
  803. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
  804. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
  805. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
  806. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
  807. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
  808. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
  809. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
  810. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
  811. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
  812. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
  813. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
  814. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
  815. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
  816. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
  817. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
  818. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
  819. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
  820. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
  821. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
  822. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
  823. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
  824. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
  825. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
  826. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
  827. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
  828. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
  829. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
  830. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
  831. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
  832. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
  833. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
  834. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
  835. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
  836. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
  837. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
  838. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
  839. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
  840. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
  841. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
  842. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
  843. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
  844. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
  845. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
  846. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
  847. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
  848. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
  849. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
  850. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
  851. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
  852. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
  853. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
  854. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
  855. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  856. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  857. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  858. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  859. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  860. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  861. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  862. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  863. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  864. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  865. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  866. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  867. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  868. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  869. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  870. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  871. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  872. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  873. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  874. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  875. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  876. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  877. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  878. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  879. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  880. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  881. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  882. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  883. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  884. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  885. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  886. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  887. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  888. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  889. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  890. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  891. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  892. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  893. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  894. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  895. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  896. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  897. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  898. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  899. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  900. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  901. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  902. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  903. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  904. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  905. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  906. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  907. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  908. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  909. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  910. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  911. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  912. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  913. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  914. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  915. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  916. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  917. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  918. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  919. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  920. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  921. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  922. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  923. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  924. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  925. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  926. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  927. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  928. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  929. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
  930. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  931. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  932. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  933. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  934. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  935. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  936. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  937. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  938. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  939. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  940. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  941. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  942. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  943. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  944. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  945. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  946. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  947. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  948. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  949. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  950. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  951. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  952. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  953. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  954. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  955. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  956. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  957. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  958. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  959. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  960. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  961. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  962. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  963. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  964. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  965. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  966. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  967. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  968. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  969. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  970. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
  971. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
  972. data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
  973. data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  974. data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
  975. data/public/rearview/vendor/less/js/less.js +13 -0
  976. data/public/rearview/vendor/parsley/js/parsley.js +1 -0
  977. data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
  978. data/public/rearview/vendor/require/js/require.js +31 -0
  979. data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
  980. data/public/rearview/vendor/timeline/examples/example.json +38 -0
  981. data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
  982. data/public/rearview/vendor/timeline/timeline.css +114 -0
  983. data/public/rearview/vendor/timeline/timeline.js +45 -0
  984. data/public/rearview/vendor/underscore/js/underscore.js +5 -0
  985. data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
  986. data/public/rearview/vendor/xdate/js/xdate.js +1 -0
  987. data/public/rearview-src/css/rearview.css +1 -0
  988. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  989. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  990. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  991. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  992. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  993. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  994. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  995. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  996. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  997. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  998. data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
  999. data/public/rearview-src/img/login/company-logo.svg +107 -0
  1000. data/public/rearview-src/img/noise-light.png +0 -0
  1001. data/public/rearview-src/img/noise.png +0 -0
  1002. data/public/rearview-src/img/rearview.svg +19 -0
  1003. data/public/rearview-src/img/rearviewlogo.png +0 -0
  1004. data/public/rearview-src/img/rearviewlogo_small.png +0 -0
  1005. data/public/rearview-src/img/sample-monitor.png +0 -0
  1006. data/public/rearview-src/js/app.build.js +15 -0
  1007. data/public/rearview-src/js/app.js +295 -0
  1008. data/public/rearview-src/js/collection/dashboard.js +41 -0
  1009. data/public/rearview-src/js/collection/monitor.js +53 -0
  1010. data/public/rearview-src/js/main.js +89 -0
  1011. data/public/rearview-src/js/model/base.js +34 -0
  1012. data/public/rearview-src/js/model/dashboard.js +47 -0
  1013. data/public/rearview-src/js/model/monitor.js +67 -0
  1014. data/public/rearview-src/js/model/user.js +81 -0
  1015. data/public/rearview-src/js/route/index.js +47 -0
  1016. data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
  1017. data/public/rearview-src/js/util/templar.js +178 -0
  1018. data/public/rearview-src/js/view/addcategory.js +250 -0
  1019. data/public/rearview-src/js/view/adddashboard.js +166 -0
  1020. data/public/rearview-src/js/view/addmonitor.js +679 -0
  1021. data/public/rearview-src/js/view/alert.js +47 -0
  1022. data/public/rearview-src/js/view/alerttimeline.js +340 -0
  1023. data/public/rearview-src/js/view/base.js +535 -0
  1024. data/public/rearview-src/js/view/dashboard.js +493 -0
  1025. data/public/rearview-src/js/view/dashboardtile.js +146 -0
  1026. data/public/rearview-src/js/view/deletemonitor.js +68 -0
  1027. data/public/rearview-src/js/view/ecosystem.js +90 -0
  1028. data/public/rearview-src/js/view/expandedmonitor.js +706 -0
  1029. data/public/rearview-src/js/view/header.js +43 -0
  1030. data/public/rearview-src/js/view/primarynav.js +63 -0
  1031. data/public/rearview-src/js/view/resetmonitor.js +101 -0
  1032. data/public/rearview-src/js/view/secondarynav.js +45 -0
  1033. data/public/rearview-src/js/view/smallmonitor.js +416 -0
  1034. data/public/rearview-src/less/alert.less +45 -0
  1035. data/public/rearview-src/less/dashboard.less +173 -0
  1036. data/public/rearview-src/less/ecosystem.less +221 -0
  1037. data/public/rearview-src/less/elements.less +168 -0
  1038. data/public/rearview-src/less/expandedmonitor.less +283 -0
  1039. data/public/rearview-src/less/header.less +76 -0
  1040. data/public/rearview-src/less/login.less +1050 -0
  1041. data/public/rearview-src/less/primarynav.less +151 -0
  1042. data/public/rearview-src/less/rearview.less +1207 -0
  1043. data/public/rearview-src/login/icons/rearview.svg +19 -0
  1044. data/public/rearview-src/templates/addcategory.hbs +38 -0
  1045. data/public/rearview-src/templates/adddashboard.hbs +26 -0
  1046. data/public/rearview-src/templates/addmonitor.hbs +10 -0
  1047. data/public/rearview-src/templates/alert.hbs +4 -0
  1048. data/public/rearview-src/templates/alerttimeline.hbs +15 -0
  1049. data/public/rearview-src/templates/dashboard.hbs +35 -0
  1050. data/public/rearview-src/templates/dashboardtile.hbs +22 -0
  1051. data/public/rearview-src/templates/deletemonitor.hbs +16 -0
  1052. data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
  1053. data/public/rearview-src/templates/header.hbs +9 -0
  1054. data/public/rearview-src/templates/primarynav.hbs +50 -0
  1055. data/public/rearview-src/templates/resetmonitor.hbs +16 -0
  1056. data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
  1057. data/public/rearview-src/templates/secondarynav.hbs +11 -0
  1058. data/public/rearview-src/templates/setmetrics.hbs +53 -0
  1059. data/public/rearview-src/templates/smallmonitor.hbs +52 -0
  1060. data/public/rearview-src/templates/test.txt +1 -0
  1061. data/public/rearview-src/test/spec/model/application.js +60 -0
  1062. data/public/rearview-src/test/spec/model/job.js +109 -0
  1063. data/public/rearview-src/test/spec/model/user.js +50 -0
  1064. data/public/rearview-src/test/spec/view/base.js +58 -0
  1065. data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
  1066. data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
  1067. data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
  1068. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
  1069. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  1070. data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
  1071. data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
  1072. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  1073. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  1074. data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
  1075. data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
  1076. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  1077. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  1078. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  1079. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  1080. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
  1081. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
  1082. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
  1083. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
  1084. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
  1085. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
  1086. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
  1087. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
  1088. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
  1089. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
  1090. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
  1091. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
  1092. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
  1093. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
  1094. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
  1095. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  1096. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
  1097. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
  1098. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
  1099. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
  1100. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
  1101. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
  1102. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
  1103. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
  1104. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
  1105. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
  1106. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
  1107. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  1108. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  1109. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  1110. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
  1111. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
  1112. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
  1113. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
  1114. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
  1115. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
  1116. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
  1117. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
  1118. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
  1119. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
  1120. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
  1121. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
  1122. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
  1123. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
  1124. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
  1125. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
  1126. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
  1127. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
  1128. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  1129. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  1130. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  1131. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
  1132. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  1133. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  1134. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  1135. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  1136. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  1137. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  1138. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  1139. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  1140. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  1141. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  1142. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  1143. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  1144. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  1145. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  1146. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  1147. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  1148. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  1149. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  1150. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  1151. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  1152. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  1153. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  1154. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  1155. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  1156. data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
  1157. data/public/rearview-src/vendor/codemirror/README.md +8 -0
  1158. data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
  1159. data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
  1160. data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
  1161. data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
  1162. data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
  1163. data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
  1164. data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
  1165. data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
  1166. data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
  1167. data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
  1168. data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
  1169. data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
  1170. data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
  1171. data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
  1172. data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
  1173. data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
  1174. data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
  1175. data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
  1176. data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
  1177. data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
  1178. data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
  1179. data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
  1180. data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
  1181. data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
  1182. data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
  1183. data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
  1184. data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
  1185. data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
  1186. data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
  1187. data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  1188. data/public/rearview-src/vendor/codemirror/index.html +472 -0
  1189. data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
  1190. data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
  1191. data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
  1192. data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
  1193. data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
  1194. data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
  1195. data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
  1196. data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
  1197. data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
  1198. data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
  1199. data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
  1200. data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
  1201. data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
  1202. data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
  1203. data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
  1204. data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
  1205. data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
  1206. data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
  1207. data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
  1208. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
  1209. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
  1210. data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
  1211. data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
  1212. data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
  1213. data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
  1214. data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
  1215. data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
  1216. data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  1217. data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
  1218. data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
  1219. data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
  1220. data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
  1221. data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
  1222. data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
  1223. data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
  1224. data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
  1225. data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
  1226. data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
  1227. data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
  1228. data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
  1229. data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
  1230. data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
  1231. data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
  1232. data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
  1233. data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
  1234. data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
  1235. data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
  1236. data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
  1237. data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
  1238. data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
  1239. data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
  1240. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
  1241. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  1242. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  1243. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  1244. data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
  1245. data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
  1246. data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
  1247. data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
  1248. data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
  1249. data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
  1250. data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
  1251. data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
  1252. data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
  1253. data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
  1254. data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
  1255. data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
  1256. data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
  1257. data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
  1258. data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
  1259. data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
  1260. data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
  1261. data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
  1262. data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
  1263. data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
  1264. data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
  1265. data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
  1266. data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
  1267. data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
  1268. data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
  1269. data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
  1270. data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
  1271. data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
  1272. data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
  1273. data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
  1274. data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
  1275. data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  1276. data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
  1277. data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
  1278. data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
  1279. data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
  1280. data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
  1281. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
  1282. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  1283. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  1284. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  1285. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
  1286. data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
  1287. data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
  1288. data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
  1289. data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
  1290. data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
  1291. data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
  1292. data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
  1293. data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
  1294. data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
  1295. data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
  1296. data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
  1297. data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
  1298. data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
  1299. data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
  1300. data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
  1301. data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
  1302. data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
  1303. data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
  1304. data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
  1305. data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
  1306. data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
  1307. data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
  1308. data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
  1309. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  1310. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1311. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
  1312. data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
  1313. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
  1314. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
  1315. data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  1316. data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
  1317. data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
  1318. data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
  1319. data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
  1320. data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
  1321. data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
  1322. data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
  1323. data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
  1324. data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
  1325. data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
  1326. data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
  1327. data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
  1328. data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
  1329. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
  1330. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  1331. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
  1332. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
  1333. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
  1334. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
  1335. data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
  1336. data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
  1337. data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
  1338. data/public/rearview-src/vendor/codemirror/package.json +21 -0
  1339. data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
  1340. data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
  1341. data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
  1342. data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
  1343. data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
  1344. data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
  1345. data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
  1346. data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
  1347. data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
  1348. data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
  1349. data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
  1350. data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
  1351. data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
  1352. data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
  1353. data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
  1354. data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
  1355. data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
  1356. data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
  1357. data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
  1358. data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
  1359. data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
  1360. data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
  1361. data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
  1362. data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
  1363. data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  1364. data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
  1365. data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
  1366. data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  1367. data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  1368. data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
  1369. data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
  1370. data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  1371. data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  1372. data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  1373. data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
  1374. data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  1375. data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
  1376. data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  1377. data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  1378. data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  1379. data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  1380. data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  1381. data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
  1382. data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
  1383. data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  1384. data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  1385. data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  1386. data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  1387. data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  1388. data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  1389. data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  1390. data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  1391. data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  1392. data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  1393. data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  1394. data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  1395. data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
  1396. data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
  1397. data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  1398. data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  1399. data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  1400. data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  1401. data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  1402. data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  1403. data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
  1404. data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  1405. data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  1406. data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
  1407. data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  1408. data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  1409. data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  1410. data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  1411. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  1412. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  1413. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  1414. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  1415. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  1416. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  1417. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  1418. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  1419. data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
  1420. data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  1421. data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
  1422. data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  1423. data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
  1424. data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
  1425. data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
  1426. data/public/rearview-src/vendor/highcharts/index.htm +79 -0
  1427. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
  1428. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
  1429. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
  1430. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
  1431. data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
  1432. data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
  1433. data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
  1434. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
  1435. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
  1436. data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
  1437. data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
  1438. data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
  1439. data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
  1440. data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
  1441. data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
  1442. data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
  1443. data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
  1444. data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
  1445. data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
  1446. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  1447. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
  1448. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
  1449. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
  1450. data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
  1451. data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
  1452. data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
  1453. data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
  1454. data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
  1455. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  1456. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1457. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1458. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1459. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1460. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1461. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1462. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1463. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1464. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1465. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1466. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1467. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1468. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1469. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1470. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
  1471. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
  1472. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  1473. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
  1474. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  1475. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  1476. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  1477. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  1478. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  1479. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  1480. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  1481. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  1482. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  1483. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  1484. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  1485. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  1486. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  1487. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  1488. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  1489. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  1490. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  1491. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
  1492. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
  1493. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
  1494. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
  1495. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  1496. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  1497. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  1498. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  1499. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  1500. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
  1501. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  1502. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  1503. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  1504. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  1505. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  1506. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  1507. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  1508. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  1509. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  1510. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  1511. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  1512. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  1513. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  1514. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  1515. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  1516. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  1517. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  1518. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  1519. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  1520. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  1521. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  1522. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  1523. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  1524. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  1525. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  1526. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  1527. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  1528. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  1529. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  1530. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  1531. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  1532. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  1533. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  1534. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  1535. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  1536. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  1537. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  1538. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  1539. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  1540. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  1541. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  1542. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  1543. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  1544. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  1545. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  1546. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  1547. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  1548. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  1549. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  1550. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  1551. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  1552. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  1553. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  1554. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  1555. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  1556. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  1557. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  1558. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  1559. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  1560. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  1561. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  1562. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  1563. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  1564. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  1565. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  1566. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  1567. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  1568. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  1569. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  1570. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  1571. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  1572. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  1573. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  1574. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
  1575. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
  1576. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
  1577. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
  1578. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
  1579. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
  1580. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
  1581. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
  1582. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  1583. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  1584. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1585. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1586. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1587. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1588. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1589. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1590. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1591. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1592. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  1593. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  1594. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  1595. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  1596. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  1597. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
  1598. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
  1599. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
  1600. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
  1601. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
  1602. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
  1603. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  1604. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1605. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1606. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1607. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1608. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1609. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1610. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1611. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1612. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  1613. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  1614. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  1615. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  1616. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  1617. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
  1618. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
  1619. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  1620. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
  1621. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  1622. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1623. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1624. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1625. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1626. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1627. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1628. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1629. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1630. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1631. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1632. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1633. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1634. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1635. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1636. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
  1637. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
  1638. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
  1639. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
  1640. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
  1641. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
  1642. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  1643. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1644. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1645. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1646. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1647. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1648. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1649. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1650. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1651. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1652. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  1653. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  1654. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  1655. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  1656. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  1657. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
  1658. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
  1659. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
  1660. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
  1661. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
  1662. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  1663. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  1664. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  1665. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  1666. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
  1667. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  1668. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  1669. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  1670. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  1671. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  1672. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  1673. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  1674. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  1675. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  1676. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  1677. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  1678. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  1679. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  1680. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  1681. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  1682. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  1683. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  1684. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  1685. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
  1686. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  1687. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  1688. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  1689. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  1690. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  1691. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  1692. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  1693. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  1694. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  1695. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  1696. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  1697. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  1698. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  1699. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  1700. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  1701. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  1702. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
  1703. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  1704. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  1705. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  1706. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  1707. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  1708. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  1709. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
  1710. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  1711. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  1712. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
  1713. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  1714. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  1715. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  1716. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  1717. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  1718. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  1719. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  1720. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  1721. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  1722. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  1723. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  1724. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  1725. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  1726. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  1727. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  1728. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  1729. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  1730. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  1731. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  1732. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  1733. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  1734. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  1735. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
  1736. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
  1737. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
  1738. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
  1739. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
  1740. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
  1741. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
  1742. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
  1743. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
  1744. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
  1745. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
  1746. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
  1747. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
  1748. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
  1749. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
  1750. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
  1751. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
  1752. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
  1753. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
  1754. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
  1755. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
  1756. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  1757. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  1758. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  1759. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  1760. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  1761. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  1762. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  1763. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  1764. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  1765. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  1766. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  1767. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  1768. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  1769. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  1770. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  1771. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  1772. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  1773. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  1774. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  1775. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  1776. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  1777. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  1778. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  1779. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  1780. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  1781. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  1782. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  1783. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  1784. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  1785. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  1786. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  1787. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  1788. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  1789. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  1790. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  1791. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  1792. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  1793. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  1794. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  1795. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  1796. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  1797. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  1798. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  1799. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  1800. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  1801. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  1802. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  1803. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  1804. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  1805. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  1806. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  1807. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  1808. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  1809. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  1810. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  1811. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  1812. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  1813. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  1814. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  1815. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  1816. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  1817. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  1818. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  1819. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  1820. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  1821. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  1822. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  1823. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  1824. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  1825. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  1826. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  1827. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  1828. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  1829. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  1830. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
  1831. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  1832. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  1833. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  1834. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  1835. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  1836. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  1837. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  1838. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  1839. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  1840. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  1841. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  1842. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  1843. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  1844. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  1845. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  1846. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  1847. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  1848. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  1849. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  1850. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  1851. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  1852. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  1853. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  1854. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  1855. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  1856. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  1857. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  1858. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  1859. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  1860. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  1861. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  1862. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  1863. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  1864. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  1865. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  1866. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  1867. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  1868. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  1869. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  1870. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  1871. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
  1872. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
  1873. data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
  1874. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  1875. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
  1876. data/public/rearview-src/vendor/less/js/less.js +11 -0
  1877. data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
  1878. data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
  1879. data/public/rearview-src/vendor/require/js/require.js +11408 -0
  1880. data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
  1881. data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
  1882. data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
  1883. data/public/rearview-src/vendor/timeline/timeline.css +130 -0
  1884. data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
  1885. data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
  1886. data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
  1887. data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
  1888. data/script/rails +8 -0
  1889. data/spec/controllers/dashboard_children_controller_spec.rb +35 -0
  1890. data/spec/controllers/dashboards_controller_spec.rb +62 -0
  1891. data/spec/controllers/jobs_controller_spec.rb +94 -0
  1892. data/spec/controllers/monitor_controller_spec.rb +19 -0
  1893. data/spec/controllers/user_controller_spec.rb +24 -0
  1894. data/spec/data/create_application.json +3 -0
  1895. data/spec/data/create_job.json +17 -0
  1896. data/spec/data/create_monitor.json +17 -0
  1897. data/spec/data/large_set.dat +1 -0
  1898. data/spec/data/metric_a.dat +60 -0
  1899. data/spec/data/metric_b.dat +59 -0
  1900. data/spec/data/monitor.dat +1 -0
  1901. data/spec/data/nan.dat +3 -0
  1902. data/spec/data/test.dat +3 -0
  1903. data/spec/dummy/README.rdoc +28 -0
  1904. data/spec/dummy/Rakefile +6 -0
  1905. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  1906. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  1907. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  1908. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  1909. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  1910. data/spec/dummy/bin/bundle +3 -0
  1911. data/spec/dummy/bin/rails +4 -0
  1912. data/spec/dummy/bin/rake +4 -0
  1913. data/spec/dummy/config/application.rb +23 -0
  1914. data/spec/dummy/config/boot.rb +5 -0
  1915. data/spec/dummy/config/database.yml +20 -0
  1916. data/spec/dummy/config/environment.rb +5 -0
  1917. data/spec/dummy/config/environments/development.rb +29 -0
  1918. data/spec/dummy/config/environments/production.rb +80 -0
  1919. data/spec/dummy/config/environments/test.rb +36 -0
  1920. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  1921. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  1922. data/spec/dummy/config/initializers/inflections.rb +16 -0
  1923. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  1924. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  1925. data/spec/dummy/config/initializers/session_store.rb +3 -0
  1926. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  1927. data/spec/dummy/config/locales/en.yml +23 -0
  1928. data/spec/dummy/config/routes.rb +4 -0
  1929. data/spec/dummy/config.ru +4 -0
  1930. data/spec/dummy/db/development.sqlite3 +0 -0
  1931. data/spec/dummy/db/schema.rb +85 -0
  1932. data/spec/dummy/db/test.sqlite3 +0 -0
  1933. data/spec/dummy/log/development.log +38 -0
  1934. data/spec/dummy/log/test.log +4886 -0
  1935. data/spec/dummy/public/404.html +58 -0
  1936. data/spec/dummy/public/422.html +58 -0
  1937. data/spec/dummy/public/500.html +57 -0
  1938. data/spec/dummy/public/favicon.ico +0 -0
  1939. data/spec/dummy/sandbox/Gemfile +7 -0
  1940. data/spec/dummy/sandbox/Gemfile.lock +18 -0
  1941. data/spec/dummy/sandbox/verify_sandbox.rb +23 -0
  1942. data/spec/dummy/script/rails +6 -0
  1943. data/spec/factories/dashboards.rb +11 -0
  1944. data/spec/factories/job_datas.rb +12 -0
  1945. data/spec/factories/job_errors.rb +11 -0
  1946. data/spec/factories/jobs.rb +20 -0
  1947. data/spec/factories/users.rb +12 -0
  1948. data/spec/lib/rearview/alerts/campfire_alert_spec.rb +103 -0
  1949. data/spec/lib/rearview/alerts/email_alert_spec.rb +89 -0
  1950. data/spec/lib/rearview/alerts/pagerduty_alert_spec.rb +75 -0
  1951. data/spec/lib/rearview/alerts_handler_spec.rb +43 -0
  1952. data/spec/lib/rearview/configuration_spec.rb +29 -0
  1953. data/spec/lib/rearview/cron_helper_spec.rb +42 -0
  1954. data/spec/lib/rearview/graphite_parser_spec.rb +24 -0
  1955. data/spec/lib/rearview/monitor_runner_spec.rb +182 -0
  1956. data/spec/lib/rearview/monitor_service_spec.rb +114 -0
  1957. data/spec/lib/rearview/monitor_supervisor_spec.rb +53 -0
  1958. data/spec/lib/rearview/monitor_task_spec.rb +29 -0
  1959. data/spec/lib/rearview/rearview_spec.rb +6 -0
  1960. data/spec/lib/rearview/results_handler_spec.rb +19 -0
  1961. data/spec/lib/rearview/templates/utilities_spec.rb +79 -0
  1962. data/spec/lib/rearview/uri_helper_spec.rb +12 -0
  1963. data/spec/mailers/alert_mailer_spec.rb +37 -0
  1964. data/spec/models/dashboard_spec.rb +14 -0
  1965. data/spec/models/job_data_spec.rb +14 -0
  1966. data/spec/models/job_error_spec.rb +214 -0
  1967. data/spec/models/job_spec.rb +188 -0
  1968. data/spec/models/user_spec.rb +18 -0
  1969. data/spec/spec_helper.rb +32 -0
  1970. data/spec/support/authentication_helper.rb +14 -0
  1971. data/spec/support/json_factory.rb +73 -0
  1972. data/spec/views/dashboards/index.json.jbuilder_spec.rb +31 -0
  1973. data/spec/views/dashboards/show.json.jbuilder_spec.rb +25 -0
  1974. data/spec/views/jobs/data.json.jbuilder_spec.rb +27 -0
  1975. data/spec/views/jobs/errors.json.jbuilder_spec.rb +41 -0
  1976. data/spec/views/jobs/index.json.jbuilder_spec.rb +31 -0
  1977. data/spec/views/jobs/show.json.jbuilder_spec.rb +34 -0
  1978. data/spec/views/user/show.json.jbuilder_spec.rb +26 -0
  1979. data/tasks/rearview.rake +9 -0
  1980. metadata +2350 -0
@@ -0,0 +1,45 @@
1
+ /**
2
+ * @file timeline.js
3
+ *
4
+ * @brief
5
+ * The Timeline is an interactive visualization chart to visualize events in
6
+ * time, having a start and end date.
7
+ * You can freely move and zoom in the timeline by dragging
8
+ * and scrolling in the Timeline. Items are optionally dragable. The time
9
+ * scale on the axis is adjusted automatically, and supports scales ranging
10
+ * from milliseconds to years.
11
+ *
12
+ *
13
+ * Timeline is tested on Firefox 3.6, Safari 5.0, Chrome 6.0, Opera 10.6, and
14
+ * Internet Explorer 6+.
15
+ *
16
+ * @license
17
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
18
+ * use this file except in compliance with the License. You may obtain a copy
19
+ * of the License at
20
+ *
21
+ * http://www.apache.org/licenses/LICENSE-2.0
22
+ *
23
+ * Unless required by applicable law or agreed to in writing, software
24
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
25
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
26
+ * License for the specific language governing permissions and limitations under
27
+ * the License.
28
+ *
29
+ * Copyright (c) 2011-2012 Almende B.V.
30
+ *
31
+ * @author Jos de Jong, <jos@almende.org>
32
+ * @date 2012-05-01
33
+ *
34
+ *
35
+ * Modified - I had taken this code and made it specifically for timeline visualization from a
36
+ * set data structure. I've added new functionality to deal with timezones and
37
+ * formating the visual timline groups differently. Also I'm making this a stand alone
38
+ * amd compatible plugin
39
+ *
40
+ * @modifier Ian Quattlebaum
41
+ * @date 2013-03-01
42
+ */
43
+
44
+ !function(e){"function"==typeof define&&define.amd?define(e):e()}(function(){var e=function(t){this.dom={},this.conversion={},this.eventParams={},this.groups=[],this.groupIndexes={},this.items=[],this.selection=void 0,this.listeners={},this.size={actualHeight:0,axis:{characterMajorHeight:0,characterMajorWidth:0,characterMinorHeight:0,characterMinorWidth:0,height:0,labelMajorTop:0,labelMinorTop:0,line:0,lineMajorWidth:0,lineMinorHeight:0,lineMinorTop:0,lineMinorWidth:0,top:0},contentHeight:0,contentLeft:0,contentWidth:0,dataChanged:!1,frameHeight:0,frameWidth:0,groupsLeft:0,groupsWidth:0,items:{top:0}},this.dom.container=t,this.options={utc:!1,width:"100%",height:"auto",minHeight:0,autoHeight:!0,eventMargin:10,eventMarginAxis:20,dragAreaWidth:10,min:void 0,max:void 0,intervalMin:10,intervalMax:31536e10,moveable:!0,zoomable:!0,selectable:!0,editable:!1,snapEvents:!0,groupChangeable:!0,showCurrentTime:!0,showCustomTime:!1,showMajorLabels:!0,showNavigation:!0,showButtonAdd:!0,groupsOnRight:!1,axisOnTop:!1,stackEvents:!0,animate:!0,animateZoom:!0,style:"box"},this.clientTimeOffset=3600;for(var i=this.dom;i.container.hasChildNodes();)i.container.removeChild(i.container.firstChild);this.step=new e.StepDate(this.options),this.data=[],this.firstDraw=!0,this.setVisibleChartRange(void 0,void 0,!1),this.redrawFrame(),Array.prototype.indexOf||(Array.prototype.indexOf=function(e){for(var t=0;t<this.length;t++)if(this[t]==e)return t;return-1}),this.trigger("ready")};return e.prototype.draw=function(e,t){this.setOptions(t),this.setData(e),t&&t.start&&t.end?this.setVisibleChartRange(t.start,t.end):this.firstDraw&&this.setVisibleChartRangeAuto(),this.firstDraw=!1},e.prototype.setOptions=function(e){if(e)for(var t in e)e.hasOwnProperty(t)&&(this.options[t]=e[t]);this.options.autoHeight="auto"===this.options.height},e.getOptions=function(){return this.options},e.prototype.setData=function(t){this.unselectItem(),t||(t=[]),this.items=[],this.data=t;var i=this.items;if(this.options,this.setGroups(t),!e.isArray(t))throw"Unknown data type. DataTable or Array expected.";for(var s=0,n=t.length;n>s;s++){var o=t[s],a=this.createItem(o);i.push(a)}this.size.dataChanged=!0,this.redrawFrame(),this.recalcSize(),this.stackEvents(!1),this.redrawFrame(),this.size.dataChanged=!1},e.prototype.setGroups=function(t){if(this.deleteGroups(),this.groups,this.groupIndexes,!e.isArray(t))throw"Unknown data type. DataTable or Array expected.";for(var i=0,s=t.length;s>i;i++){var n=t[i],o=n.group;o&&this.addGroup(o)}},e.prototype.getData=function(){return this.data},e.prototype.updateData=function(t,i){var s=this.data;if(!e.isArray(s))throw"Cannot update data, unknown type of data";var n=s[t];void 0==n&&(n={},s[t]=n),i.start&&(n.start=i.start),i.end&&(n.end=i.end),i.content&&(n.content=i.content),i.group&&(n.group=i.group)},e.prototype.getItemIndex=function(e){for(var t=e,i=this.dom,s=this.items,n=void 0;t.parentNode&&t.parentNode!==i.items.frame;)t=t.parentNode;if(t.parentNode===i.items.frame)for(var o=0,a=s.length;a>o;o++)if(s[o].dom===t){n=o;break}return n},e.prototype.setSize=function(e,t){e&&(this.options.width=e,this.dom.frame.style.width=e),t&&(this.options.height=t,this.options.autoHeight="auto"===this.options.height,"auto"!==t&&(this.dom.frame.style.height=t)),this.recalcSize(),this.stackEvents(!1),this.redrawFrame()},e.prototype.setVisibleChartRange=function(e,t,i){void 0==e&&(e=new Date,e.setDate(e.getDate()-3)),void 0==t&&(t=new Date,t.setDate(e.getDate()+4)),t.valueOf()<=e.valueOf()&&(t=new Date(e),t.setDate(t.getDate()+7));var s=this.options.min?this.options.min.valueOf():void 0;s&&e.valueOf()<s&&(e=new Date(s));var n=this.options.max?this.options.max.valueOf():void 0;n&&t.valueOf()>n&&(t=new Date(n)),this.applyRange(e,t),void 0==i||1==i?(this.recalcSize(),this.stackEvents(!1),this.redrawFrame()):this.recalcConversion()},e.prototype.setVisibleChartRangeAuto=function(){var e=this.items;startMin=void 0,endMax=void 0;for(var t=0,i=e.length;i>t;t++){var s=e[t],n=s.start?s.start.valueOf():void 0,o=s.end?s.end.valueOf():n;startMin=void 0!==startMin&&void 0!==n?Math.min(startMin,n):n,endMax=void 0!==endMax&&void 0!==o?Math.max(endMax,o):o}if(void 0!==startMin&&void 0!==endMax){var a=endMax-startMin;a=0,startMin-=.05*a,endMax+=.05*a,this.setVisibleChartRange(new XDate(startMin),new XDate(endMax))}else this.setVisibleChartRange(void 0,void 0)},e.prototype.setVisibleChartRangeNow=function(){var e=new Date,t=this.end.getTime()-this.start.getTime(),i=new Date(e.getTime()-t/2),s=new Date(i.getTime()+t);this.setVisibleChartRange(i,s)},e.prototype.getVisibleChartRange=function(){var e={start:new Date(this.start),end:new Date(this.end)};return e},e.prototype.redrawFrame=function(){var e=this.dom,t=this.options,i=this.size;e.frame||(e.frame=document.createElement("DIV"),e.frame.className="timeline-frame",e.frame.style.position="relative",e.frame.style.overflow="hidden",e.container.appendChild(e.frame)),e.frame.style.height=t.autoHeight?i.frameHeight+"px":t.height||"100%",e.frame.style.width=t.width||"100%",this.redrawContent(),this.redrawGroups(),this.redrawCurrentTime(),this.redrawCustomTime(),this.redrawNavigation()},e.prototype.redrawContent=function(){var t=this.dom,i=this.size;if(!t.content){t.content=document.createElement("DIV"),t.content.style.position="relative",t.content.style.overflow="hidden",t.frame.appendChild(t.content);var s=document.createElement("DIV");s.style.position="absolute",s.style.left="0px",s.style.top="0px",s.style.height="100%",s.style.width="0px",t.content.appendChild(s),t.contentTimelines=s;var n=this.eventParams,o=this;n.onMouseDown||(n.onMouseDown=function(e){o.onMouseDown(e)},e.addEventListener(t.content,"mousedown",n.onMouseDown)),n.onTouchStart||(n.onTouchStart=function(e){o.onTouchStart(e)},e.addEventListener(t.content,"touchstart",n.onTouchStart)),n.onMouseWheel||(n.onMouseWheel=function(e){o.onMouseWheel(e)},e.addEventListener(t.content,"mousewheel",n.onMouseWheel)),n.onDblClick||(n.onDblClick=function(e){o.onDblClick(e)},e.addEventListener(t.content,"dblclick",n.onDblClick))}t.content.style.left=i.contentLeft+"px",t.content.style.top="0px",t.content.style.width=i.contentWidth+"px",t.content.style.height=i.frameHeight+"px",this.redrawAxis(),this.redrawItems(),this.redrawDeleteButton(),this.redrawDragAreas()},e.prototype.redrawAxis=function(){var e=this.dom,t=this.options,i=this.size,s=this.step,n=e.axis;n||(n={},e.axis=n),void 0===i.axis.properties&&(i.axis.properties={}),void 0===n.minorTexts&&(n.minorTexts=[]),void 0===n.minorLines&&(n.minorLines=[]),void 0===n.majorTexts&&(n.majorTexts=[]),void 0===n.majorLines&&(n.majorLines=[]),n.frame||(n.frame=document.createElement("DIV"),n.frame.style.position="absolute",n.frame.style.left="0px",n.frame.style.top="0px",e.content.appendChild(n.frame)),e.content.removeChild(n.frame),n.frame.style.width=i.contentWidth+"px",n.frame.style.height=i.axis.height+"px";var o=this.screenToTime(0),a=this.screenToTime(i.contentWidth),r=i.contentWidth;this.minimumStep=this.screenToTime(6*i.axis.characterMinorWidth).valueOf()-this.screenToTime(0).valueOf(),s.setRange(o,a,this.minimumStep),this.redrawAxisCharacters(),this.redrawAxisStartOverwriting(),s.start();for(var h=void 0;!s.end();){var l=s.getCurrent(),d=this.timeToScreen(l),p=s.isMajor();this.redrawAxisMinorText(d,s.getLabelMinor()),p&&t.showMajorLabels?(d>0&&(void 0===h&&(h=d),this.redrawAxisMajorText(d,s.getLabelMajor())),this.redrawAxisMajorLine(d)):this.redrawAxisMinorLine(d),s.next()}if(t.showMajorLabels){var c=this.screenToTime(0),u=this.step.getLabelMajor(c),r=u.length*i.axis.characterMajorWidth+10;(void 0===h||h>r)&&this.redrawAxisMajorText(0,u,c)}this.redrawAxisHorizontal(),this.redrawAxisEndOverwriting(),e.content.insertBefore(n.frame,e.content.firstChild)},e.prototype.redrawAxisCharacters=function(){var e=this.dom,t=e.axis;if(!t.characterMinor){var i=document.createTextNode("0"),s=document.createElement("DIV");s.className="timeline-axis-text timeline-axis-text-minor",s.appendChild(i),s.style.position="absolute",s.style.visibility="hidden",s.style.paddingLeft="0px",s.style.paddingRight="0px",t.frame.appendChild(s),t.characterMinor=s}if(!t.characterMajor){var i=document.createTextNode("0"),n=document.createElement("DIV");n.className="timeline-axis-text timeline-axis-text-major",n.appendChild(i),n.style.position="absolute",n.style.visibility="hidden",n.style.paddingLeft="0px",n.style.paddingRight="0px",t.frame.appendChild(n),t.characterMajor=n}},e.prototype.redrawAxisStartOverwriting=function(){var e=this.size.axis.properties;e.minorTextNum=0,e.minorLineNum=0,e.majorTextNum=0,e.majorLineNum=0},e.prototype.redrawAxisEndOverwriting=function(){for(var e=this.dom,t=this.size.axis.properties,i=this.dom.axis.frame,s=e.axis.minorTexts,n=t.minorTextNum;s.length>n;){var o=s[n];i.removeChild(o),s.splice(n,1)}for(var a=e.axis.minorLines,n=t.minorLineNum;a.length>n;){var r=a[n];i.removeChild(r),a.splice(n,1)}for(var h=e.axis.majorTexts,n=t.majorTextNum;h.length>n;){var l=h[n];i.removeChild(l),h.splice(n,1)}for(var d=e.axis.majorLines,n=t.majorLineNum;d.length>n;){var p=d[n];i.removeChild(p),d.splice(n,1)}},e.prototype.redrawAxisHorizontal=function(){var e=this.dom.axis,t=this.size;if(!e.backgroundLine){var i=document.createElement("DIV");i.className="timeline-axis",i.style.position="absolute",i.style.left="0px",i.style.width="100%",i.style.border="none",e.frame.insertBefore(i,e.frame.firstChild),e.backgroundLine=i}if(e.backgroundLine.style.top=t.axis.top+"px",e.backgroundLine.style.height=t.axis.height+"px",e.line){var s=e.frame.removeChild(e.line);e.frame.appendChild(s)}else{var s=document.createElement("DIV");s.className="timeline-axis",s.style.position="absolute",s.style.left="0px",s.style.width="100%",s.style.height="0px",e.frame.appendChild(s),e.line=s}e.line.style.top=t.axis.line+"px"},e.prototype.redrawAxisMinorText=function(e,t){var i,s=this.size,n=this.dom,o=s.axis.properties,a=n.axis.frame,r=n.axis.minorTexts,h=o.minorTextNum;if(h<r.length)i=r[h];else{var l=document.createTextNode(""),i=document.createElement("DIV");i.appendChild(l),i.className="timeline-axis-text timeline-axis-text-minor",i.style.position="absolute",a.appendChild(i),r.push(i)}i.childNodes[0].nodeValue=t,i.style.left=e+"px",i.style.top=s.axis.labelMinorTop+"px",o.minorTextNum++},e.prototype.redrawAxisMinorLine=function(e){var t,i=this.size.axis,s=this.dom,n=i.properties,o=s.axis.frame,a=s.axis.minorLines,r=n.minorLineNum;r<a.length?t=a[r]:(t=document.createElement("DIV"),t.className="timeline-axis-grid timeline-axis-grid-minor",t.style.position="absolute",t.style.width="0px",o.appendChild(t),a.push(t)),t.style.top=i.lineMinorTop+"px",t.style.height=i.lineMinorHeight+"px",t.style.left=e-i.lineMinorWidth/2+"px",n.minorLineNum++},e.prototype.redrawAxisMajorText=function(e,t){var i,s=this.size,n=s.axis.properties,o=this.dom.axis.frame,a=this.dom.axis.majorTexts,r=n.majorTextNum;if(r<a.length)i=a[r];else{var h=document.createTextNode(t);i=document.createElement("DIV"),i.className="timeline-axis-text timeline-axis-text-major",i.appendChild(h),i.style.position="absolute",i.style.top="0px",o.appendChild(i),a.push(i)}i.childNodes[0].nodeValue=t,i.style.top=s.axis.labelMajorTop+"px",i.style.left=e+"px",n.majorTextNum++},e.prototype.redrawAxisMajorLine=function(e){var t,i=this.size,s=i.axis.properties,n=this.size.axis,o=this.dom.axis.frame,a=this.dom.axis.majorLines,r=s.majorLineNum;if(r<a.length)var t=a[r];else t=document.createElement("DIV"),t.className="timeline-axis-grid timeline-axis-grid-major",t.style.position="absolute",t.style.top="0px",t.style.width="0px",o.appendChild(t),a.push(t);t.style.left=e-n.lineMajorWidth/2+"px",t.style.height=i.frameHeight+"px",s.majorLineNum++},e.prototype.redrawItems=function(){var e=this.dom,t=this.options,i=t.box&&t.box.align?t.box.align:void 0;size=this.size,contentWidth=size.contentWidth,items=this.items,e.items||(e.items={});var s=e.items.frame;s||(s=document.createElement("DIV"),s.style.position="relative",e.content.appendChild(s),e.items.frame=s),s.style.left="0px",s.style.top=size.items.top+"px",s.style.height=size.frameHeight-size.axis.height+"px";var n=e.items.ranges;n||(n=[],e.items.ranges=n);var o=e.items.boxes;o||(o=[],e.items.boxes=o);var a=e.items.dots;if(a||(a=[],e.items.dots=a),e.content.removeChild(s),size.dataChanged){for(var r=n.length,h=o.length,l=a.length,d=(items.length,0),p=0,c=0,u=0,m=items.length;m>u;u++){var g=items[u];switch(g.type){case"range":if(r>d){var v=n[d];v.firstChild.innerHTML=g.content,v.style.display="",g.dom=v,d++}else{var v=this.createEventRange(g.content,g.groupId,g.id);n[d]=v,s.appendChild(v),g.dom=v,d++,r++}break;case"box":if(h>p){var v=o[p];v.firstChild.innerHTML=g.content,v.style.display="",g.dom=v,p++}else{var v=this.createEventBox(g.content);o[p]=v,s.appendChild(v),s.insertBefore(v.line,s.firstChild),s.appendChild(v.dot),g.dom=v,p++,h++}break;case"dot":if(l>c){var v=a[c];v.firstChild.innerHTML=g.content,v.style.display="",g.dom=v,c++}else{var v=this.createEventDot(g.content);a[c]=v,s.appendChild(v),g.dom=v,c++,l++}}}for(var u=d;r>u;u++)s.removeChild(n[u]);n.splice(d,r-d);for(var u=p;h>u;u++){var f=o[u];s.removeChild(f.line),s.removeChild(f.dot),s.removeChild(f)}o.splice(p,h-p);for(var u=c;l>u;u++)s.removeChild(a[u]);a.splice(c,l-c)}for(var u=0,m=items.length;m>u;u++){var g=items[u],v=g.dom;switch(g.type){case"range":var y=this.timeToScreen(g.start),x=this.timeToScreen(g.end);-contentWidth>y&&(y=-contentWidth),x>2*contentWidth&&(x=2*contentWidth);var D=x>-contentWidth&&2*contentWidth>y;D||size.dataChanged?(g.hidden&&(g.hidden=!1,v.style.display=""),v.style.top=g.top+"px",v.style.left=y+"px",v.style.width=Math.max(x-y,1)+"px"):g.hidden||(v.style.display="none",g.hidden=!0);break;case"box":var y=this.timeToScreen(g.start),S=t.axisOnTop,M=(size.axis.height,size.axis.top),D=y+g.width/2>-contentWidth&&y-g.width/2<2*contentWidth;if(D||size.dataChanged){g.hidden&&(g.hidden=!1,v.style.display="",v.line.style.display="",v.dot.style.display=""),v.style.top=g.top+"px",v.style.left="right"==i?y-g.width+"px":"left"==i?y+"px":y-g.width/2+"px";var w=v.line;w.style.left=y-g.lineWidth/2+"px",S?(w.style.top="0px",w.style.height=Math.max(g.top,0)+"px"):(w.style.top=g.top+g.height+"px",w.style.height=Math.max(M-g.top-g.height,0)+"px");var T=v.dot;T.style.left=y-g.dotWidth/2+"px",T.style.top=M-g.dotHeight/2+"px"}else g.hidden||(v.style.display="none",v.line.style.display="none",v.dot.style.display="none",g.hidden=!0);break;case"dot":var y=this.timeToScreen(g.start),S=t.axisOnTop,M=(size.axis.height,size.axis.top),D=y+g.width>-contentWidth&&2*contentWidth>y;D||size.dataChanged?(g.hidden&&(g.hidden=!1,v.style.display=""),v.style.top=g.top+"px",v.style.left=y-g.dotWidth/2+"px",v.content.style.marginLeft=1.5*g.dotWidth+"px",v.dot.style.top=(g.height-g.dotHeight)/2+"px"):g.hidden||(v.style.display="none",g.hidden=!0)}}if(this.selection){var g=this.selection.item;s.removeChild(g),s.appendChild(g)}e.content.appendChild(s)},e.prototype.createEventBox=function(e){var t=document.createElement("DIV");t.style.position="absolute",t.style.left="0px",t.style.top="0px",t.className="timeline-event timeline-event-box";var i=document.createElement("DIV");i.className="timeline-event-content",i.innerHTML=e,t.appendChild(i);var s=document.createElement("DIV");s.style.position="absolute",s.style.width="0px",s.className="timeline-event timeline-event-line",t.line=s;var n=document.createElement("DIV");return n.style.position="absolute",n.style.width="0px",n.style.height="0px",n.className="timeline-event timeline-event-dot",t.dot=n,t},e.prototype.createEventDot=function(e){var t=document.createElement("DIV");t.style.position="absolute";var i=document.createElement("DIV");i.className="timeline-event-content",i.innerHTML=e,t.appendChild(i);var s=document.createElement("DIV");return s.style.position="absolute",s.className="timeline-event timeline-event-dot",s.style.width="0px",s.style.height="0px",t.appendChild(s),t.content=i,t.dot=s,t},e.prototype.createEventRange=function(e,t,i){var s=document.createElement("DIV"),n=t?" timeline-group-"+t:"",o=i?" timeline-event-"+i:"";s.style.position="absolute",s.className="timeline-event timeline-event-range"+n+o;var a=document.createElement("DIV");return a.className="timeline-event-content",a.innerHTML=e,s.appendChild(a),s},e.prototype.redrawGroups=function(){var e=this.dom,t=this.options,i=this.size,s=this.groups;void 0===e.groups&&(e.groups={});var n=e.groups.labels;n||(n=[],e.groups.labels=n);var o=e.groups.labelLines;o||(o=[],e.groups.labelLines=o);var a=e.groups.itemLines;a||(a=[],e.groups.itemLines=a);var r=e.groups.frame;if(!r){var r=document.createElement("DIV");r.className="timeline-groups-axis",r.style.position="absolute",r.style.overflow="hidden",r.style.top="0px",r.style.height="100%",e.frame.appendChild(r),e.groups.frame=r}if(r.style.left=i.groupsLeft+"px",r.style.width=void 0!==t.groupsWidth?t.groupsWidth:i.groupsWidth+"px",r.style.display=0==s.length?"none":"",i.dataChanged){for(var h=n.length,l=s.length,d=0,p=Math.min(h,l);p>d;d++){var c=s[d],u=n[d];u.innerHTML=c.content,u.style.display=""}for(var d=h;l>d;d++){var c=s[d],u=document.createElement("DIV");u.className="timeline-groups-text",u.style.position="absolute",void 0===t.groupsWidth&&(u.style.whiteSpace="nowrap"),u.innerHTML=c.content,r.appendChild(u),n[d]=u;var m=document.createElement("DIV");m.className="timeline-axis-grid timeline-axis-grid-minor",m.style.position="absolute",m.style.left="0px",m.style.width="100%",m.style.height="0px",m.style.borderTopStyle="solid",r.appendChild(m),o[d]=m;var g=document.createElement("DIV");g.className="timeline-axis-grid timeline-axis-grid-minor",g.style.position="absolute",g.style.left="0px",g.style.width="100%",g.style.height="0px",g.style.borderTopStyle="solid",e.content.insertBefore(g,e.content.firstChild),a[d]=g}for(var d=l;h>d;d++){var u=n[d],m=o[d],g=a[d];r.removeChild(u),r.removeChild(m),e.content.removeChild(g)}n.splice(l,h-l),o.splice(l,h-l),a.splice(l,h-l),r.style.borderStyle=t.groupsOnRight?"none none none solid":"none solid none none"}for(var d=0,p=s.length;p>d;d++){var c=s[d],u=n[d],m=o[d],g=a[d];u.style.top=c.labelTop+"px",m.style.top=c.lineTop+"px",g.style.top=c.lineTop+"px",g.style.width=i.contentWidth+"px"}if(!e.groups.background){var v=document.createElement("DIV");v.className="timeline-axis",v.style.position="absolute",v.style.left="0px",v.style.width="100%",v.style.border="none",r.appendChild(v),e.groups.background=v}if(e.groups.background.style.top=i.axis.top+"px",e.groups.background.style.height=i.axis.height+"px",!e.groups.line){var f=document.createElement("DIV");f.className="timeline-axis",f.style.position="absolute",f.style.left="0px",f.style.width="100%",f.style.height="0px",r.appendChild(f),e.groups.line=f}e.groups.line.style.top=i.axis.line+"px"},e.prototype.redrawCurrentTime=function(){var e=this.options,t=this.dom,i=this.size;if(!e.showCurrentTime)return t.currentTime&&(t.contentTimelines.removeChild(t.currentTime),delete t.currentTime),void 0;if(!t.currentTime){var s=document.createElement("DIV");s.className="timeline-currenttime",s.style.position="absolute",s.style.top="0px",s.style.height="100%",t.contentTimelines.appendChild(s),t.currentTime=s}var n=new Date,o=new Date(n.getTime()+this.clientTimeOffset),a=this.timeToScreen(o),r=a>-i.contentWidth&&a<2*i.contentWidth;t.currentTime.style.display=r?"":"none",t.currentTime.style.left=a+"px",t.currentTime.title="Current time: "+o,void 0!=this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer);var h=this,l=function(){h.redrawCurrentTime()},d=1/this.conversion.factor/2;30>d&&(d=30),this.currentTimeTimer=setTimeout(l,d)},e.prototype.redrawCustomTime=function(){var e=this.options,t=this.dom,i=this.size;if(!e.showCustomTime)return t.customTime&&(t.contentTimelines.removeChild(t.customTime),delete t.customTime),void 0;if(!t.customTime){var s=document.createElement("DIV");s.className="timeline-customtime",s.style.position="absolute",s.style.top="0px",s.style.height="100%";var n=document.createElement("DIV");n.style.position="relative",n.style.top="0px",n.style.left="-10px",n.style.height="100%",n.style.width="20px",s.appendChild(n),t.contentTimelines.appendChild(s),t.customTime=s,this.customTime=new Date}var o=this.timeToScreen(this.customTime),a=o>-i.contentWidth&&o<2*i.contentWidth;t.customTime.style.display=a?"":"none",t.customTime.style.left=o+"px",t.customTime.title="Time: "+this.customTime},e.prototype.redrawDeleteButton=function(){var e=this.options,t=this.dom,i=this.size,s=t.items.frame;if(e.editable){var n=t.items.deleteButton;if(n||(n=document.createElement("DIV"),n.className="timeline-navigation-delete",n.style.position="absolute",s.appendChild(n),t.items.deleteButton=n),this.selection){var o,a=this.selection.index,r=this.items[a],h=(this.selection.item,r.top);switch(r.type){case"range":o=this.timeToScreen(r.end);break;case"box":o=this.timeToScreen(r.start)+r.width/2;break;case"dot":o=this.timeToScreen(r.start)+r.width}o<-i.contentWidth&&(o=-i.contentWidth),o>2*i.contentWidth&&(o=2*i.contentWidth),n.style.left=o+"px",n.style.top=h+"px",n.style.display="",s.removeChild(n),s.appendChild(n)}else n.style.display="none"}},e.prototype.redrawDragAreas=function(){var e=this.options,t=this.dom,i=(this.size,this.dom.items.frame);if(e.editable){var s=t.items.dragLeft;s||(s=document.createElement("DIV"),s.style.width=e.dragAreaWidth+"px",s.style.position="absolute",s.style.cursor="w-resize",i.appendChild(s),t.items.dragLeft=s);var n=t.items.dragRight;if(n||(n=document.createElement("DIV"),n.style.width=e.dragAreaWidth+"px",n.style.position="absolute",n.style.cursor="e-resize",i.appendChild(n),t.items.dragRight=n),this.selection){var o=this.selection.index,a=this.items[o];if("range"==a.type){var r=(a.dom,this.timeToScreen(a.start)),h=this.timeToScreen(a.end),l=a.top,d=a.height;s.style.left=r+"px",s.style.top=l+"px",s.style.height=d+"px",s.style.display="",i.removeChild(s),i.appendChild(s),n.style.left=h-e.dragAreaWidth+"px",n.style.top=l+"px",n.style.height=d+"px",n.style.display="",i.removeChild(n),i.appendChild(n)}}else s.style.display="none",n.style.display="none"}},e.prototype.redrawNavigation=function(){var t=this,i=this.options,s=this.dom,n=s.frame,o=s.navBar;if(!o){if((i.editable||i.showNavigation)&&(o=document.createElement("DIV"),o.style.position="absolute",o.className="timeline-navigation btn-group",i.groupsOnRight?o.style.left="10px":o.style.right="10px",i.axisOnTop?o.style.bottom="10px":o.style.top="10px",s.navBar=o,n.appendChild(o)),i.editable&&i.showButtonAdd){o.addButton=document.createElement("DIV"),o.addButton.className="timeline-navigation-new",o.addButton.title="Create new event";var a=function(s){e.preventDefault(s),e.stopPropagation(s);var n=t.size.contentWidth,o=n/2,a=t.screenToTime(o-n/10),r=t.screenToTime(o+n/10);i.snapEvents&&(t.step.snap(a),t.step.snap(r));var h="New",l=t.groups.length?t.groups[0].content:void 0;t.addItem({start:a,end:r,content:h,group:l});var d=t.items.length-1;t.selectItem(d),t.applyAdd=!0,t.trigger("add"),t.applyAdd||t.deleteItem(d),t.redrawDeleteButton(),t.redrawDragAreas()};e.addEventListener(o.addButton,"mousedown",a),o.appendChild(o.addButton)}if(i.editable&&i.showButtonAdd&&i.showNavigation&&(o.addButton.style.borderRightWidth="1px",o.addButton.style.borderRightStyle="solid"),i.showNavigation){o.zoomInButton=document.createElement("BUTTON"),o.zoomInButtonIcon=document.createElement("I"),o.zoomInButton.className="timeline-navigation-zoom-in btn btn-inverse",o.zoomInButtonIcon.className="icon-zoom-in",o.zoomInButton.title="Zoom in";var r=function(i){e.preventDefault(i),e.stopPropagation(i),t.zoom(.4),t.trigger("rangechange"),t.trigger("rangechanged")};e.addEventListener(o.zoomInButton,"mousedown",r),o.zoomInButton.appendChild(o.zoomInButtonIcon),o.appendChild(o.zoomInButton),o.zoomOutButton=document.createElement("BUTTON"),o.zoomOutButtonIcon=document.createElement("I"),o.zoomOutButton.className="timeline-navigation-zoom-out btn btn-inverse",o.zoomOutButtonIcon.className="icon-zoom-out",o.zoomOutButton.title="Zoom out";var h=function(i){e.preventDefault(i),e.stopPropagation(i),t.zoom(-.4),t.trigger("rangechange"),t.trigger("rangechanged")};e.addEventListener(o.zoomOutButton,"mousedown",h),o.zoomOutButton.appendChild(o.zoomOutButtonIcon),o.appendChild(o.zoomOutButton),o.moveLeftButton=document.createElement("BUTTON"),o.moveLeftButtonIcon=document.createElement("I"),o.moveLeftButton.className="timeline-navigation-move-left btn btn-inverse",o.moveLeftButtonIcon.className="icon-chevron-left",o.moveLeftButton.title="Move left";var l=function(i){e.preventDefault(i),e.stopPropagation(i),t.move(-.2),t.trigger("rangechange"),t.trigger("rangechanged")};e.addEventListener(o.moveLeftButton,"mousedown",l),o.moveLeftButton.appendChild(o.moveLeftButtonIcon),o.appendChild(o.moveLeftButton),o.moveRightButton=document.createElement("BUTTON"),o.moveRightButtonIcon=document.createElement("I"),o.moveRightButton.className="timeline-navigation-move-right btn btn-inverse",o.moveRightButtonIcon.className="icon-chevron-right",o.moveRightButton.title="Move right";var d=function(i){e.preventDefault(i),e.stopPropagation(i),t.move(.2),t.trigger("rangechange"),t.trigger("rangechanged")};e.addEventListener(o.moveRightButton,"mousedown",d),o.moveRightButton.appendChild(o.moveRightButtonIcon),o.appendChild(o.moveRightButton)}}},e.prototype.setCurrentTime=function(e){var t=new Date;this.clientTimeOffset=e.getTime()-t.getTime(),this.redrawCurrentTime()},e.prototype.getCurrentTime=function(){var e=new Date;return new Date(e.getTime()+this.clientTimeOffset)},e.prototype.setCustomTime=function(e){this.customTime=new Date(e),this.redrawCustomTime()},e.prototype.getCustomTime=function(){return new Date(this.customTime)},e.prototype.setScale=function(e,t){this.step.setScale(e,t),this.redrawFrame()},e.prototype.setAutoScale=function(e){this.step.setAutoScale(e),this.redrawFrame()},e.prototype.redraw=function(){this.setData(this.data)},e.prototype.checkResize=function(){var e=this.recalcSize();e&&this.redrawFrame()},e.filterImageUrls=function(t,i){for(var s=t.firstChild;s;){if("IMG"==s.tagName){var n=s.src;-1==i.indexOf(n)&&i.push(n)}e.filterImageUrls(s,i),s=s.nextSibling}},e.prototype.recalcSize=function(){var t=!1,i=this;if(size=this.size,options=this.options,axisOnTop=options.axisOnTop,dom=this.dom,axis=dom.axis,groups=this.groups,labels=dom.groups.labels,items=this.items,groupsWidth=size.groupsWidth,characterMinorWidth=axis.characterMinor?axis.characterMinor.clientWidth:0,characterMinorHeight=axis.characterMinor?axis.characterMinor.clientHeight:0,characterMajorWidth=axis.characterMajor?axis.characterMajor.clientWidth:0,characterMajorHeight=axis.characterMajor?axis.characterMajor.clientHeight:0,axisHeight=characterMinorHeight+(options.showMajorLabels?characterMajorHeight:0),actualHeight=size.actualHeight||axisHeight,size.dataChanged){for(var s=[],n=0,o=items.length;o>n;n++){var a=items[n],r=a.dom;r&&e.filterImageUrls(r,s)}if(s.length)for(var n=0;n<s.length;n++){var h=s[n],l=function(){i.redraw()},d=!1;e.imageloader.load(h,l,d)}}if(size.dataChanged){groupsWidth=0;for(var n=0,o=labels.length;o>n;n++){var p=groups[n];p.width=labels[n].clientWidth,p.height=labels[n].clientHeight,p.labelHeight=p.height,groupsWidth=Math.max(groupsWidth,p.width)}for(var n=0,o=items.length;o>n;n++){var a=items[n],r=a.dom,p=a.group,c=r?r.clientWidth:0,u=r?r.clientHeight:0;switch(t=t||a.width!=c,t=t||a.height!=u,a.width=c,a.height=u,a.type){case"range":break;case"box":a.dotHeight=r.dot.offsetHeight,a.dotWidth=r.dot.offsetWidth,a.lineWidth=r.line.offsetWidth;break;case"dot":a.dotHeight=r.dot.offsetHeight,a.dotWidth=r.dot.offsetWidth,a.contentHeight=r.content.offsetHeight}p&&(p.height=p.height?Math.max(p.height,a.height):a.height)}actualHeight=axisHeight+2*options.eventMarginAxis;for(var n=0,o=groups.length;o>n;n++)actualHeight+=groups[n].height+options.eventMargin}if(0==groups.length&&options.autoHeight){var m=0,g=0;if(this.animation&&this.animation.finalItems){var v=this.animation.finalItems,f=v[0];f&&f.top&&(m=f.top,g=f.top+f.height);for(var n=1,o=v.length;o>n;n++)f=v[n],m=Math.min(m,f.top),g=Math.max(g,f.top+f.height)}else{var a=items[0];a&&a.top&&(m=a.top,g=a.top+a.height);for(var n=1,o=items.length;o>n;n++){var a=items[n];a.top&&(m=Math.min(m,a.top),g=Math.max(g,a.top+a.height))}}if(actualHeight=g-m+2*options.eventMarginAxis+axisHeight,size.actualHeight!=actualHeight&&options.autoHeight&&!options.axisOnTop){var y=actualHeight-size.actualHeight;if(this.animation&&this.animation.finalItems)for(var v=this.animation.finalItems,n=0,o=v.length;o>n;n++)v[n].top+=y,v[n].item.top+=y;else for(var n=0,o=items.length;o>n;n++)items[n].top+=y}}var x=dom.frame?dom.frame.offsetWidth:0,D=Math.max(options.autoHeight?actualHeight:dom.frame?dom.frame.clientHeight:0,options.minHeight),S=axisOnTop?0:D-axisHeight,M=axisOnTop?axisHeight:S,w=axisOnTop?axisHeight:0,T=Math.max(D-axisHeight,0);void 0!==options.groupsWidth&&(groupsWidth=dom.groups.frame?dom.groups.frame.clientWidth:0);var C=options.groupsOnRight?x-groupsWidth:0;if(size.dataChanged){for(var E=options.eventMargin,L=axisOnTop?options.eventMarginAxis+E/2:T-options.eventMarginAxis+E/2,n=0,o=groups.length;o>n;n++){var p=groups[n];axisOnTop?(p.top=L,p.labelTop=L+axisHeight+(p.height-p.labelHeight)/2,p.lineTop=L+axisHeight+p.height+E/2,L+=p.height+E):(L-=p.height+E,p.top=L,p.labelTop=L+(p.height-p.labelHeight)/2,p.lineTop=L-E/2)}for(var n=0,o=items.length;o>n;n++){var a=items[n],p=a.group;p&&(a.top=p.top)}t=!0}return t=t||size.groupsWidth!==groupsWidth,t=t||size.groupsLeft!==C,t=t||size.actualHeight!==actualHeight,size.groupsWidth=groupsWidth,size.groupsLeft=C,size.actualHeight=actualHeight,t=t||size.frameWidth!==x,t=t||size.frameHeight!==D,size.frameWidth=x,size.frameHeight=D,t=t||size.groupsWidth!==groupsWidth,size.groupsWidth=groupsWidth,size.contentLeft=options.groupsOnRight?0:groupsWidth,size.contentWidth=Math.max(x-groupsWidth,0),size.contentHeight=T,t=t||size.axis.top!==S,t=t||size.axis.line!==M,t=t||size.axis.height!==axisHeight,t=t||size.items.top!==w,size.axis.top=S,size.axis.line=M,size.axis.height=axisHeight,size.axis.labelMajorTop=options.axisOnTop?0:M+characterMinorHeight,size.axis.labelMinorTop=options.axisOnTop?options.showMajorLabels?characterMajorHeight:0:M,size.axis.lineMinorTop=options.axisOnTop?size.axis.labelMinorTop:0,size.axis.lineMinorHeight=options.showMajorLabels?D-characterMajorHeight:D,size.axis.lineMinorWidth=dom.axis.minorLines.length?dom.axis.minorLines[0].offsetWidth:1,size.axis.lineMajorWidth=dom.axis.majorLines.length?dom.axis.majorLines[0].offsetWidth:1,size.items.top=w,t=t||size.axis.characterMinorWidth!==characterMinorWidth,t=t||size.axis.characterMinorHeight!==characterMinorHeight,t=t||size.axis.characterMajorWidth!==characterMajorWidth,t=t||size.axis.characterMajorHeight!==characterMajorHeight,size.axis.characterMinorWidth=characterMinorWidth,size.axis.characterMinorHeight=characterMinorHeight,size.axis.characterMajorWidth=characterMajorWidth,size.axis.characterMajorHeight=characterMajorHeight,this.recalcConversion(),t},e.prototype.recalcConversion=function(){this.conversion.offset=parseFloat(this.start.valueOf()),this.conversion.factor=parseFloat(this.size.contentWidth)/parseFloat(this.end.valueOf()-this.start.valueOf())},e.prototype.screenToTime=function(e){var t=this.conversion,i=new Date(parseFloat(e)/t.factor+t.offset);return i},e.prototype.timeToScreen=function(e){var t=this.conversion,i=(e.valueOf()-t.offset)*t.factor;return i},e.prototype.onTouchStart=function(t){var i=this.eventParams,s=(this.dom,this);i.touchDown||(i.touchDown=!0,i.zoomed=!1,this.onMouseDown(t),i.onTouchMove||(i.onTouchMove=function(e){s.onTouchMove(e)},e.addEventListener(document,"touchmove",i.onTouchMove)),i.onTouchEnd||(i.onTouchEnd=function(e){s.onTouchEnd(e)},e.addEventListener(document,"touchend",i.onTouchEnd)))},e.prototype.onTouchMove=function(t){var i=this.eventParams;
45
+ if(t.scale&&1!==t.scale&&(i.zoomed=!0),i.zoomed){if(this.options.zoomable){i.zoomed=!0;var s=t.scale,n=i.end.valueOf()-i.start.valueOf(),o=n/s,a=o-n,r=new Date(parseInt(i.start.valueOf()-a/2)),h=new Date(parseInt(i.end.valueOf()+a/2));this.setVisibleChartRange(r,h),timeline.trigger("rangechange"),e.preventDefault(t)}}else this.onMouseMove(t)},e.prototype.onTouchEnd=function(t){var i=this.eventParams;i.touchDown=!1,i.zoomed&&timeline.trigger("rangechanged"),i.onTouchMove&&(e.removeEventListener(document,"touchmove",i.onTouchMove),delete i.onTouchMove),i.onTouchEnd&&(e.removeEventListener(document,"touchend",i.onTouchEnd),delete i.onTouchEnd),this.onMouseUp(t)},e.prototype.onMouseDown=function(t){t=t||window.event;var i=this.eventParams,s=this.options,n=this.dom,o=t.which?1==t.which:1==t.button;if(o||i.touchDown){if(this.recalcSize(),i.touchDown?(i.mouseX=t.targetTouches[0].clientX,i.mouseY=t.targetTouches[0].clientY):(i.mouseX=t.clientX,i.mouseY=t.clientY),void 0===i.mouseX&&(i.mouseX=0),void 0===i.mouseY&&(i.mouseY=0),i.frameLeft=e.getAbsoluteLeft(this.dom.content),i.frameTop=e.getAbsoluteTop(this.dom.content),i.previousLeft=0,i.previousOffset=0,i.moved=!1,i.start=new Date(this.start),i.end=new Date(this.end),i.target=e.getTarget(t),i.itemDragLeft=i.target===this.dom.items.dragLeft,i.itemDragRight=i.target===this.dom.items.dragRight,i.itemIndex=i.itemDragLeft||i.itemDragRight?this.selection?this.selection.index:void 0:this.getItemIndex(i.target),i.customTime=i.target===n.customTime||i.target.parentNode===n.customTime?this.customTime:void 0,i.addItem=s.editable&&t.ctrlKey,i.addItem){var a=i.mouseX-i.frameLeft,r=i.mouseY-i.frameTop,h=this.screenToTime(a);s.snapEvents&&this.step.snap(h);var l=new Date(h),d="New",p=this.getGroupFromHeight(r);this.addItem({start:h,end:l,content:d,group:p.content}),i.itemIndex=this.items.length-1,this.selectItem(i.itemIndex),i.itemDragRight=!0}if(i.editItem=s.editable?this.isSelected(i.itemIndex):void 0,i.editItem){var c=this.items[i.itemIndex];i.itemStart=c.start,i.itemEnd=c.end,i.itemType=c.type,"range"==i.itemType?(i.itemLeft=this.timeToScreen(c.start),i.itemRight=this.timeToScreen(c.end)):i.itemLeft=this.timeToScreen(c.start)}else this.dom.frame.style.cursor="move";if(!i.touchDown){var u=this;i.onMouseMove||(i.onMouseMove=function(e){u.onMouseMove(e)},e.addEventListener(document,"mousemove",i.onMouseMove)),i.onMouseUp||(i.onMouseUp=function(e){u.onMouseUp(e)},e.addEventListener(document,"mouseup",i.onMouseUp)),e.preventDefault(t)}}},e.prototype.onMouseMove=function(t){t=t||window.event;var i=this.eventParams,s=this.size,n=this.dom,o=this.options;if(i.touchDown)var a=t.targetTouches[0].clientX,r=t.targetTouches[0].clientY;else var a=t.clientX,r=t.clientY;void 0===a&&(a=0),void 0===r&&(r=0),void 0===i.mouseX&&(i.mouseX=a),void 0===i.mouseY&&(i.mouseY=r);var h=parseFloat(a)-i.mouseX;if(parseFloat(r)-i.mouseY,i.moved=!0,i.customTime){var l=this.timeToScreen(i.customTime),d=l+h;this.customTime=this.screenToTime(d),this.redrawCustomTime(),this.trigger("timechange")}else if(i.editItem){var p,c,u=this.items[i.itemIndex];if(u.dom,i.itemDragLeft?(p=i.itemLeft+h,c=i.itemRight,u.start=this.screenToTime(p),o.snapEvents&&(this.step.snap(u.start),p=this.timeToScreen(u.start)),p>c&&(p=c,u.start=this.screenToTime(p))):i.itemDragRight?(p=i.itemLeft,c=i.itemRight+h,u.end=this.screenToTime(c),o.snapEvents&&(this.step.snap(u.end),c=this.timeToScreen(u.end)),p>c&&(c=p,u.end=this.screenToTime(c))):(p=i.itemLeft+h,u.start=this.screenToTime(p),o.snapEvents&&(this.step.snap(u.start),p=this.timeToScreen(u.start)),u.end&&(c=p+(i.itemRight-i.itemLeft),u.end=this.screenToTime(c))),this.repositionItem(u,p,c),0==this.groups.length)this.stackEvents(o.animate),o.animate||this.redrawFrame();else if(o.groupsChangeable){var m=r-i.frameTop,g=this.getGroupFromHeight(m);if(u.group!==g){var v=this.items.indexOf(u);this.changeItem(v,{group:g.content}),u.top=g.top,this.repositionItem(u)}}this.redrawDeleteButton(),this.redrawDragAreas()}else if(o.moveable){var f=i.end.valueOf()-i.start.valueOf(),y=Math.round(parseFloat(-h)/s.contentWidth*f),x=new Date(i.start.valueOf()+y),D=new Date(i.end.valueOf()+y);this.applyRange(x,D);var S=this.start.valueOf()-x.valueOf();S&&(y+=S),this.recalcConversion();var M=i.previousLeft||0,w=parseFloat(n.items.frame.style.left)||0,T=i.previousOffset||0,C=T+(w-M),E=-y/f*s.contentWidth+C;i.previousOffset=C,i.previousLeft=E,n.items.frame.style.left=E+"px",this.redrawCurrentTime(),this.redrawCustomTime(),this.redrawAxis(),this.trigger("rangechange")}e.preventDefault(t)},e.prototype.onMouseUp=function(t){var i=this.eventParams,s=this.options;if(t=t||window.event,this.dom.frame.style.cursor="auto",i.onMouseMove&&(e.removeEventListener(document,"mousemove",i.onMouseMove),delete i.onMouseMove),i.onMouseUp&&(e.removeEventListener(document,"mouseup",i.onMouseUp),delete i.onMouseUp),i.customTime)this.trigger("timechanged");else if(i.editItem){var n=this.items[i.itemIndex];if(i.moved||i.addItem){if(this.applyChange=!0,this.applyAdd=!0,this.updateData(i.itemIndex,{start:n.start,end:n.end}),this.trigger(i.addItem?"add":"change"),i.addItem)this.applyAdd?this.updateData(i.itemIndex,{start:n.start,end:n.end,content:n.content,group:n.group?n.group.content:void 0}):this.deleteItem(i.itemIndex);else if(this.applyChange)this.updateData(i.itemIndex,{start:n.start,end:n.end});else{delete this.applyChange,delete this.applyAdd;var n=this.items[i.itemIndex];n.dom,n.start=i.itemStart,n.end=i.itemEnd,this.repositionItem(n,i.itemLeft,i.itemRight)}this.recalcSize(),this.stackEvents(s.animate),s.animate||this.redrawFrame(),this.redrawDeleteButton(),this.redrawDragAreas()}}else i.moved||i.zoomed?(this.redrawFrame(),(i.moved&&s.moveable||i.zoomed&&s.zoomable)&&this.trigger("rangechanged")):s.editable&&i.target===this.dom.items.deleteButton?(this.selection&&this.confirmDeleteItem(this.selection.index),this.redrawFrame()):s.selectable&&(void 0!==i.itemIndex?this.isSelected(i.itemIndex)||(this.selectItem(i.itemIndex),this.redrawDeleteButton(),this.redrawDragAreas(),this.trigger("select")):(this.unselectItem(),this.redrawDeleteButton(),this.redrawDragAreas()))},e.prototype.onDblClick=function(t){var i=this.eventParams,s=this.options,n=this.dom,o=this.size;if(t=t||window.event,s.editable){if(void 0!==i.itemIndex)this.trigger("edit");else{var a=t.clientX-e.getAbsoluteLeft(n.content),r=t.clientY-e.getAbsoluteTop(n.content),h=this.screenToTime(a),l=this.screenToTime(a+o.frameWidth/10);s.snapEvents&&(this.step.snap(h),this.step.snap(l));var d="New",p=this.getGroupFromHeight(r);this.addItem({start:h,end:l,content:d,group:p.content}),i.itemIndex=this.items.length-1,this.selectItem(i.itemIndex),this.applyAdd=!0,this.trigger("add"),this.applyAdd||this.deleteItem(i.itemIndex),this.redrawDeleteButton(),this.redrawDragAreas()}e.preventDefault(t)}},e.prototype.onMouseWheel=function(t){if(this.options.zoomable){t||(t=window.event);var i=0;if(t.wheelDelta?i=t.wheelDelta/120:t.detail&&(i=-t.detail/3),i){var s=this,n=function(){s.recalcSize();var n=i/5,o=e.getAbsoluteLeft(s.dom.content),a=void 0!=t.clientX&&void 0!=o?s.screenToTime(t.clientX-o):void 0;s.zoom(n,a),s.trigger("rangechange"),s.trigger("rangechanged")};n()}e.preventDefault(t)}},e.prototype.zoom=function(e,t){void 0==t&&(t=new Date((this.start.valueOf()+this.end.valueOf())/2)),e>=1&&(e=.9),-1>=e&&(e=-.9),0>e&&(e/=1+e);var i=parseFloat(this.start.valueOf()-t.valueOf()),s=parseFloat(this.end.valueOf()-t.valueOf()),n=new Date(this.start.valueOf()-i*e),o=new Date(this.end.valueOf()-s*e);this.applyRange(n,o,t),this.recalcSize();var a=this.options.animate?this.options.animateZoom:!1;this.stackEvents(a),(!a||this.groups.length>0)&&this.redrawFrame()},e.prototype.move=function(e){var t=parseFloat(this.end.valueOf()-this.start.valueOf()),i=new Date(this.start.valueOf()+t*e),s=new Date(this.end.valueOf()+t*e);this.applyRange(i,s),this.recalcConversion(),this.redrawFrame()},e.prototype.repositionItem=function(e,t,i){var s=e.dom;switch(e.type){case"range":s.style.left=t+"px",s.style.width=Math.max(i-t,1)+"px";break;case"box":s.style.left=t-e.width/2+"px",s.line.style.left=t-e.lineWidth/2+"px",s.dot.style.left=t-e.dotWidth/2+"px";break;case"dot":s.style.left=t-e.dotWidth/2+"px"}this.groups.length>0&&(s.style.top=e.top+"px")},e.prototype.applyRange=function(e,t,i){var s=e.valueOf(),n=t.valueOf(),o=n-s,a=this.options,r=31536e6,h=Number(a.intervalMin)||10;10>h&&(h=10);var l=Number(a.intervalMax)||1e4*r;l>1e4*r&&(l=1e4*r),h>l&&(l=h);var d=a.min?a.min.valueOf():void 0,p=a.max?a.max.valueOf():void 0;if(d&&p){if(d>=p){var c=864e5;p=d+c}l>p-d&&(l=p-d),h>p-d&&(h=p-d)}if(s>=n&&(n+=864e5),h>o){var u=h-o,m=i?(i.valueOf()-s)/o:.5;s-=Math.round(u*m),n+=Math.round(u*(1-m))}if(o>l){var u=o-l,m=i?(i.valueOf()-s)/o:.5;s+=Math.round(u*m),n-=Math.round(u*(1-m))}if(d){var u=s-d;0>u&&(s-=u,n-=u)}if(p){var u=p-n;0>u&&(s+=u,n+=u)}this.start=new Date(s),this.end=new Date(n)},e.prototype.confirmDeleteItem=function(e){this.applyDelete=!0,this.isSelected(e)||this.selectItem(e),this.trigger("delete"),this.applyDelete&&this.deleteItem(e),delete this.applyDelete},e.prototype.deleteItem=function(t){if(t>=this.items.length)throw"Cannot delete row, index out of range";if(this.unselectItem(),this.items.splice(t,1),this.data){if(!e.isArray(this.data))throw"Cannot delete row from data, unknown data type";this.data.splice(t,1)}this.size.dataChanged=!0,this.redrawFrame(),this.recalcSize(),this.stackEvents(this.options.animate),this.options.animate||this.redrawFrame(),this.size.dataChanged=!1},e.prototype.deleteAllItems=function(){if(this.unselectItem(),this.items=[],this.deleteGroups(),this.data){if(!e.isArray(this.data))throw"Cannot delete row from data, unknown data type";this.data.splice(0,this.data.length)}this.size.dataChanged=!0,this.redrawFrame(),this.recalcSize(),this.stackEvents(this.options.animate),this.options.animate||this.redrawFrame(),this.size.dataChanged=!1},e.prototype.getGroupFromHeight=function(e){var t=this.groups,i=this.options,s=this.size,n=e-(i.axisOnTop?s.axis.height:0);if(t){for(var o,a=t.length-1;a>=0;a--)if(o=t[a],n>o.top)return o;return o}return void 0},e.prototype.getItem=function(e){if(e>=this.items.length)throw"Cannot get item, index out of range";var t=this.items[e],i={};return i.start=new Date(t.start),t.end&&(i.end=new Date(t.end)),i.content=t.content,t.group&&(i.group=t.group.content),i},e.prototype.addItem=function(e){var t=[e];this.addItems(t)},e.prototype.addItems=function(e){var t=e,i=this.items;this.groups,this.groupIndexes;for(var s=0,n=t.length;n>s;s++){var o=e[s];this.addGroup(o.group),i.push(this.createItem(o));var a=i.length-1;this.updateData(a,o)}this.size.dataChanged=!0,this.redrawFrame(),this.recalcSize(),this.stackEvents(!1),this.redrawFrame(),this.size.dataChanged=!1},e.prototype.createItem=function(e){var t={id:e.id,groupId:e.jobId,status:e.status,start:e.start,end:e.end,content:e.content,type:e.end?"range":this.options.style,group:this.findGroup(e.group),top:0,left:0,width:0,height:0,lineWidth:0,dotWidth:0,dotHeight:0};return t},e.prototype.changeItem=function(e,t){if(e>=this.items.length)throw"Cannot change item, index out of range";this.options.style;var i=this.items[e];t.start&&(i.start=t.start),t.end&&(i.end=t.end),t.content&&(i.content=t.content),t.group&&(i.group=this.addGroup(t.group)),this.updateData(e,t),this.size.dataChanged=!0,this.redrawFrame(),this.recalcSize(),this.stackEvents(!1),this.redrawFrame(),this.size.dataChanged=!1},e.prototype.findGroup=function(e){var t=this.groupIndexes[e];return void 0!=t?this.groups[t]:void 0},e.prototype.deleteGroups=function(){this.groups=[],this.groupIndexes={}},e.prototype.addGroup=function(e){var t=this.groups,i=this.groupIndexes,s=void 0,n=i[e];if(void 0===n&&void 0!==e){s={content:e,labelTop:0,lineTop:0},t.push(s),this.options.axisOnTop?t.sort(function(e,t){return e.content>t.content}):t.sort(function(e,t){return e.content<t.content});for(var o=0,a=t.length;a>o;o++)i[t[o].content]=o}else s=t[n];return s},e.prototype.cancelChange=function(){this.applyChange=!1},e.prototype.cancelDelete=function(){this.applyDelete=!1},e.prototype.cancelAdd=function(){this.applyAdd=!1},e.prototype.setSelection=function(e){if(void 0!=e&&e.length>0){if(void 0!=e[0].row){var t=e[0].row;if(this.items[t]){var i=this.items[t];this.selectItem(t);var s=i.start,n=i.end;if(void 0!=n)var o=new Date((n.valueOf()+s.valueOf())/2);else var o=new Date(s);var a=this.end.valueOf()-this.start.valueOf(),r=new Date(o.valueOf()-a/2),h=new Date(o.valueOf()+a/2);return this.setVisibleChartRange(r,h),!0}}}else this.unselectItem();return!1},e.prototype.getSelection=function(){var e=[];return this.selection&&e.push({row:this.selection.index}),e},e.prototype.selectItem=function(e){if(this.unselectItem(),this.selection=void 0,void 0!==this.items[e]){var t=this.items[e],i=t.dom;switch(this.selection={index:e,item:i},this.options.editable&&(i.style.cursor="move"),t.type){case"range":i.className=i.className+" timeline-event-selected";break;case"box":i.className="timeline-event timeline-event-selected timeline-event-box",i.line.className="timeline-event timeline-event-selected timeline-event-line",i.dot.className="timeline-event timeline-event-selected timeline-event-dot";break;case"dot":i.className="timeline-event timeline-event-selected",i.dot.className="timeline-event timeline-event-selected timeline-event-dot"}}},e.prototype.isSelected=function(e){return this.selection&&this.selection.index===e},e.prototype.unselectItem=function(){if(this.selection){var e=this.items[this.selection.index];if(e&&e.dom){var t=e.dom;switch(t.style.cursor="",e.type){case"range":t.className=t.className.replace(" timeline-event-selected","");break;case"box":t.className="timeline-event timeline-event-box",t.line.className="timeline-event timeline-event-line",t.dot.className="timeline-event timeline-event-dot";break;case"dot":t.className="",t.dot.className="timeline-event timeline-event-dot"}}}this.selection=void 0},e.prototype.stackEvents=function(e){if(!(0==this.options.stackEvents||this.groups.length>0)){void 0==e&&(e=!0);var t=this.stackOrder(this.items),i=this.stackCalculateFinal(t,e),s=this.groupOrder(this.items),n=this.groupStackCalculateFinal(s,e);t=s,i=n;var o=this.animation;o||(o={},this.animation=o),o.finalItems=i;var a=this,r=function(){var e=a.stackMoveOneStep(t,o.finalItems);a.recalcSize(),a.redrawFrame(),e?(delete o.finalItems,delete o.timer):o.timer=setTimeout(r,30)};o.timer||(o.timer=setTimeout(r,30))}},e.prototype.stackOrder=function(e){var t=e.concat([]),i=function(e,t){return"range"==e.type&&"range"!=t.type?-1:"range"!=e.type&&"range"==t.type?1:e.left-t.left};return t.sort(i),t},e.prototype.groupOrder=function(e){for(var t=[],i=[],s=e.concat([]),n=[],o=s.length-1;o>=0;o--)"undefined"==typeof t[s[o].groupId]&&(t[s[o].groupId]=[],i.push({groupId:s[o].groupId,content:s[o].content})),t[s[o].groupId].push(s[o]);i.sort(function(e,t){return e.content<t.content?-1:e.content>t.content?1:0});for(var o=0;o<i.length;o++)n.push(t[i[o].groupId]);return n.reverse()},e.prototype.stackCalculateFinal=function(e){for(var t=this.size,i=t.axis.top,s=this.options,n=s.axisOnTop,o=s.eventMargin,a=s.eventMarginAxis,r=[],h=0,l=e.length;l>h;h++){var d,p,c,u,m=e[h],g=m.height,v=m.width;switch(d=n?i+a+o/2:i-g-a-o/2,u=d+g,m.type){case"range":case"dot":p=this.timeToScreen(m.start),c=m.end?this.timeToScreen(m.end):p+v;break;case"box":p=this.timeToScreen(m.start)-v/2,c=p+v}r[h]={left:p,top:d,right:c,bottom:u,height:g,item:m}}for(var h=0,l=r.length;l>h;h++){var f=r[h],y=null;do y=this.stackEventsCheckOverlap(r,h,0,h-1),null!=y&&(f.top=n?y.top+y.height+o:y.top-f.height-o,f.bottom=f.top+f.height);while(y)}return r},e.prototype.groupStackCalculateFinal=function(e){for(var t=this.size,i=t.axis.top,s=this.options,n=s.axisOnTop,o=s.eventMargin,a=s.eventMarginAxis,r=[],h=0;h<e.length;h++)for(var l=e[h],d=0;d<l.length;d++){var p,c,u,m,g=l[d],v=g.height,f=g.width;switch(p=n?i+a+(v+o)*(h+1):i-a-(v+o)*(h+1),m=p+v,g.type){case"range":case"dot":c=this.timeToScreen(g.start),u=g.end?this.timeToScreen(g.end):c+f;break;case"box":c=this.timeToScreen(g.start)-f/2,u=c+f}r.push({left:c,top:p,right:u,bottom:m,height:v,item:g})}return r},e.prototype.stackMoveOneStep=function(e,t){var s=!0;for(i=0,iMax=t.length;iMax>i;i++){var n=t[i],o=n.item,a=parseInt(o.top),r=parseInt(n.top),h=r-a;if(h){var l=r==a?0:r>a?1:-1;Math.abs(h)>4&&(l=h/4);var d=parseInt(a+l);d!=r&&(s=!1),o.top=d,o.bottom=o.top+o.height}else o.top=n.top,o.bottom=n.bottom;o.left=n.left,o.right=n.right}return s},e.prototype.stackMoveToFinal=function(e,t){for(i=0,iMax=e.length;iMax>i;i++){var s=e[i],n=t[i];s.left=n.left,s.top=n.top,s.right=n.right,s.bottom=n.bottom}},e.prototype.stackEventsCheckOverlap=function(e,t,i,s){eventMargin=this.options.eventMargin,collision=this.collision;for(var n=e[t],o=s;o>=i;o--){var a=e[o];if(collision(n,a,eventMargin)&&o!=t)return a}},e.prototype.collision=function(e,t,i){return void 0==i&&(i=0),e.left-i<t.right&&e.right+i>t.left&&e.top-i<t.bottom&&e.bottom+i>t.top},e.prototype.trigger=function(t){var i=null;switch(t){case"rangechange":case"rangechanged":i={start:new Date(this.start),end:new Date(this.end)};break;case"timechange":case"timechanged":i={time:new Date(this.customTime)}}e.events.trigger(this,t,i)},e.events=e.events||{listeners:[],indexOf:function(e){for(var t=this.listeners,i=0,s=this.listeners.length;s>i;i++){var n=t[i];if(n&&n.object==e)return i}return-1},addListener:function(e,t,i){var s=this.indexOf(e),n=this.listeners[s];n||(n={object:e,events:{}},this.listeners.push(n));var o=n.events[t];o||(o=[],n.events[t]=o),-1==o.indexOf(i)&&o.push(i)},removeListener:function(e,t,i){var s=this.indexOf(e),n=this.listeners[s];if(n){var o=n.events[t];if(o){var s=o.indexOf(i);-1!=s&&o.splice(s,1),0==o.length&&delete n.events[t]}var a=0,r=n.events;for(var t in r)r.hasOwnProperty(t)&&a++;0==a&&delete this.listeners[s]}},removeAllListeners:function(){this.listeners=[]},trigger:function(e,t,i){var s=this.indexOf(e),n=this.listeners[s];if(n){var o=n.events[t];if(o)for(var a=0,r=o.length;r>a;a++)o[a](i)}}},e.StepDate=function(t){this.options=t,this.current=this.getDate(),this._start=this.getDate(),this._end=this.getDate(),this.autoScale=!0,this.scale=e.StepDate.SCALE.DAY,this.step=1,this.setRange(t.start,t.end,t.minimumStep)},e.StepDate.SCALE={MILLISECOND:1,SECOND:2,MINUTE:3,HOUR:4,DAY:5,MONTH:6,YEAR:7},e.StepDate.prototype.getDate=function(e){return this.options.utc?e?new XDate(e,!0):new XDate(!0):e?new XDate(e):new XDate},e.StepDate.prototype.setRange=function(e,t,i){isNaN(e)||isNaN(t)||(this._start=void 0!=e?this.getDate(e):this.getDate(),this._end=void 0!=t?this.getDate(t):this.getDate(),this.autoScale&&this.setMinimumStep(i))},e.StepDate.prototype.start=function(){this.current=this.getDate(this._start),this.roundToMinor()},e.StepDate.prototype.roundToMinor=function(){switch(this.scale){case e.StepDate.SCALE.YEAR:this.current.setFullYear(this.step*Math.floor(this.current.getFullYear()/this.step)),this.current.setMonth(0);case e.StepDate.SCALE.MONTH:this.current.setDate(1);case e.StepDate.SCALE.DAY:this.current.setHours(0);case e.StepDate.SCALE.HOUR:this.current.setMinutes(0);case e.StepDate.SCALE.MINUTE:this.current.setSeconds(0);case e.StepDate.SCALE.SECOND:this.current.setMilliseconds(0)}if(1!=this.step)switch(this.scale){case e.StepDate.SCALE.MILLISECOND:this.current.setMilliseconds(this.current.getMilliseconds()-this.current.getMilliseconds()%this.step);break;case e.StepDate.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()-this.current.getSeconds()%this.step);break;case e.StepDate.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()-this.current.getMinutes()%this.step);break;case e.StepDate.SCALE.HOUR:this.current.setHours(this.current.getHours()-this.current.getHours()%this.step);break;case e.StepDate.SCALE.DAY:this.current.setDate(this.current.getDate()-1-(this.current.getDate()-1)%this.step+1);break;case e.StepDate.SCALE.MONTH:this.current.setMonth(this.current.getMonth()-this.current.getMonth()%this.step);break;case e.StepDate.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()-this.current.getFullYear()%this.step)}},e.StepDate.prototype.end=function(){return this.current.getTime()>this._end.getTime()},e.StepDate.prototype.next=function(){var t=this.current.getTime();if(this.current.getMonth()<6)switch(this.scale){case e.StepDate.SCALE.MILLISECOND:this.current=this.getDate(this.current.getTime()+this.step,!0);break;case e.StepDate.SCALE.SECOND:this.current=this.getDate(this.current.getTime()+1e3*this.step);break;case e.StepDate.SCALE.MINUTE:this.current=this.getDate(this.current.getTime()+60*1e3*this.step);break;case e.StepDate.SCALE.HOUR:this.current=this.getDate(this.current.getTime()+60*60*1e3*this.step);var i=this.current.getHours();this.current.setHours(i-i%this.step);break;case e.StepDate.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case e.StepDate.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case e.StepDate.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}else switch(this.scale){case e.StepDate.SCALE.MILLISECOND:this.current=this.getDate(this.current.getTime()+this.step);break;case e.StepDate.SCALE.SECOND:this.current.setSeconds(this.current.getSeconds()+this.step);break;case e.StepDate.SCALE.MINUTE:this.current.setMinutes(this.current.getMinutes()+this.step);break;case e.StepDate.SCALE.HOUR:this.current.setHours(this.current.getHours()+this.step);break;case e.StepDate.SCALE.DAY:this.current.setDate(this.current.getDate()+this.step);break;case e.StepDate.SCALE.MONTH:this.current.setMonth(this.current.getMonth()+this.step);break;case e.StepDate.SCALE.YEAR:this.current.setFullYear(this.current.getFullYear()+this.step)}if(1!=this.step)switch(this.scale){case e.StepDate.SCALE.MILLISECOND:this.current.getMilliseconds()<this.step&&this.current.setMilliseconds(0);break;case e.StepDate.SCALE.SECOND:this.current.getSeconds()<this.step&&this.current.setSeconds(0);break;case e.StepDate.SCALE.MINUTE:this.current.getMinutes()<this.step&&this.current.setMinutes(0);break;case e.StepDate.SCALE.HOUR:this.current.getHours()<this.step&&this.current.setHours(0);break;case e.StepDate.SCALE.DAY:this.current.getDate()<this.step+1&&this.current.setDate(1);break;case e.StepDate.SCALE.MONTH:this.current.getMonth()<this.step&&this.current.setMonth(0);break;case e.StepDate.SCALE.YEAR:}this.current.getTime()==t&&(this.current=this.getDate(this._end))},e.StepDate.prototype.getCurrent=function(){return this.current},e.StepDate.prototype.setScale=function(e,t){this.scale=e,t>0&&(this.step=t),this.autoScale=!1},e.StepDate.prototype.setAutoScale=function(e){this.autoScale=e},e.StepDate.prototype.setMinimumStep=function(t){if(void 0!=t){var i=31104e6,s=2592e6,n=864e5,o=36e5,a=6e4,r=1e3,h=1;1e3*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=1e3),500*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=500),100*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=100),50*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=50),10*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=10),5*i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=5),i>t&&(this.scale=e.StepDate.SCALE.YEAR,this.step=1),3*s>t&&(this.scale=e.StepDate.SCALE.MONTH,this.step=3),s>t&&(this.scale=e.StepDate.SCALE.MONTH,this.step=1),5*n>t&&(this.scale=e.StepDate.SCALE.DAY,this.step=5),2*n>t&&(this.scale=e.StepDate.SCALE.DAY,this.step=2),n>t&&(this.scale=e.StepDate.SCALE.DAY,this.step=1),4*o>t&&(this.scale=e.StepDate.SCALE.HOUR,this.step=4),o>t&&(this.scale=e.StepDate.SCALE.HOUR,this.step=1),15*a>t&&(this.scale=e.StepDate.SCALE.MINUTE,this.step=15),10*a>t&&(this.scale=e.StepDate.SCALE.MINUTE,this.step=10),5*a>t&&(this.scale=e.StepDate.SCALE.MINUTE,this.step=5),a>t&&(this.scale=e.StepDate.SCALE.MINUTE,this.step=1),15*r>t&&(this.scale=e.StepDate.SCALE.SECOND,this.step=15),10*r>t&&(this.scale=e.StepDate.SCALE.SECOND,this.step=10),5*r>t&&(this.scale=e.StepDate.SCALE.SECOND,this.step=5),r>t&&(this.scale=e.StepDate.SCALE.SECOND,this.step=1),200*h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=200),100*h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=100),50*h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=50),10*h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=10),5*h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=5),h>t&&(this.scale=e.StepDate.SCALE.MILLISECOND,this.step=1)}},e.StepDate.prototype.snap=function(t){if(this.scale==e.StepDate.SCALE.YEAR){var i=t.getFullYear()+Math.round(t.getMonth()/12);t.setFullYear(Math.round(i/this.step)*this.step),t.setMonth(0),t.setDate(0),t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)}else if(this.scale==e.StepDate.SCALE.MONTH)t.getDate()>15?(t.setDate(1),t.setMonth(t.getMonth()+1)):t.setDate(1),t.setHours(0),t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0);else if(this.scale==e.StepDate.SCALE.DAY){switch(this.step){case 5:case 2:t.setHours(24*Math.round(t.getHours()/24));break;default:t.setHours(12*Math.round(t.getHours()/12))}t.setMinutes(0),t.setSeconds(0),t.setMilliseconds(0)}else if(this.scale==e.StepDate.SCALE.HOUR){switch(this.step){case 4:t.setMinutes(60*Math.round(t.getMinutes()/60));break;default:t.setMinutes(30*Math.round(t.getMinutes()/30))}t.setSeconds(0),t.setMilliseconds(0)}else if(this.scale==e.StepDate.SCALE.MINUTE){switch(this.step){case 15:case 10:t.setMinutes(5*Math.round(t.getMinutes()/5)),t.setSeconds(0);break;case 5:t.setSeconds(60*Math.round(t.getSeconds()/60));break;default:t.setSeconds(30*Math.round(t.getSeconds()/30))}t.setMilliseconds(0)}else if(this.scale==e.StepDate.SCALE.SECOND)switch(this.step){case 15:case 10:t.setSeconds(5*Math.round(t.getSeconds()/5)),t.setMilliseconds(0);break;case 5:t.setMilliseconds(1e3*Math.round(t.getMilliseconds()/1e3));break;default:t.setMilliseconds(500*Math.round(t.getMilliseconds()/500))}else if(this.scale==e.StepDate.SCALE.MILLISECOND){var s=this.step>5?this.step/2:1;t.setMilliseconds(Math.round(t.getMilliseconds()/s)*s)}},e.StepDate.prototype.isMajor=function(){switch(this.scale){case e.StepDate.SCALE.MILLISECOND:return 0==this.current.getMilliseconds();case e.StepDate.SCALE.SECOND:return 0==this.current.getSeconds();case e.StepDate.SCALE.MINUTE:return 0==this.current.getHours()&&0==this.current.getMinutes();case e.StepDate.SCALE.HOUR:return 0==this.current.getHours();case e.StepDate.SCALE.DAY:return 1==this.current.getDate();case e.StepDate.SCALE.MONTH:return 0==this.current.getMonth();case e.StepDate.SCALE.YEAR:return!1;default:return!1}},e.StepDate.prototype.getLabelMinor=function(t){var i=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");switch(void 0==t&&(t=this.current),this.scale){case e.StepDate.SCALE.MILLISECOND:return String(t.getMilliseconds());case e.StepDate.SCALE.SECOND:return String(t.getSeconds());case e.StepDate.SCALE.MINUTE:return this.addZeros(t.getHours(),2)+":"+this.addZeros(t.getMinutes(),2);case e.StepDate.SCALE.HOUR:return this.addZeros(t.getHours(),2)+":"+this.addZeros(t.getMinutes(),2);case e.StepDate.SCALE.DAY:return String(t.getDate());case e.StepDate.SCALE.MONTH:return i[t.getMonth()];case e.StepDate.SCALE.YEAR:return String(t.getFullYear());default:return""}},e.StepDate.prototype.getLabelMajor=function(t){var i=new Array("January","February","March","April","May","June","July","August","September","October","November","December"),s=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");switch(void 0==t&&(t=this.current),this.scale){case e.StepDate.SCALE.MILLISECOND:return this.addZeros(t.getHours(),2)+":"+this.addZeros(t.getMinutes(),2)+":"+this.addZeros(t.getSeconds(),2);case e.StepDate.SCALE.SECOND:return t.getDate()+" "+i[t.getMonth()]+" "+this.addZeros(t.getHours(),2)+":"+this.addZeros(t.getMinutes(),2);case e.StepDate.SCALE.MINUTE:return s[t.getDay()]+" "+t.getDate()+" "+i[t.getMonth()]+" "+t.getFullYear();case e.StepDate.SCALE.HOUR:return s[t.getDay()]+" "+t.getDate()+" "+i[t.getMonth()]+" "+t.getFullYear();case e.StepDate.SCALE.DAY:return i[t.getMonth()]+" "+t.getFullYear();case e.StepDate.SCALE.MONTH:return String(t.getFullYear());default:return""}},e.StepDate.prototype.addZeros=function(e,t){for(var i=""+e;i.length<t;)i="0"+i;return i},e.imageloader=function(){function e(e){if(1==s[e])return!0;var t=new Image;return t.src=e,t.complete?!0:!1}function t(e){return void 0!=n[e]}function i(i,o,a){if(void 0==a&&(a=!0),e(i))return a&&o(i),void 0;if(!t(i)||a){var r=n[i];if(!r){var h=new Image;h.src=i,r=[],n[i]=r,h.onload=function(){s[i]=!0,delete n[i];for(var e=0;e<r.length;e++)r[e](i)}}-1==r.indexOf(o)&&r.push(o)}}var s={},n={};return{isLoaded:e,isLoading:t,load:i}}(),e.addEventListener=function(e,t,i,s){e.addEventListener?(void 0===s&&(s=!1),"mousewheel"===t&&navigator.userAgent.indexOf("Firefox")>=0&&(t="DOMMouseScroll"),e.addEventListener(t,i,s)):e.attachEvent("on"+t,i)},e.removeEventListener=function(e,t,i,s){e.removeEventListener?(void 0===s&&(s=!1),"mousewheel"===t&&navigator.userAgent.indexOf("Firefox")>=0&&(t="DOMMouseScroll"),e.removeEventListener(t,i,s)):e.detachEvent("on"+t,i)},e.getTarget=function(e){if(!e)var e=window.event;var t;return e.target?t=e.target:e.srcElement&&(t=e.srcElement),void 0!==t.nodeType&&3==t.nodeType&&(t=t.parentNode),t},e.stopPropagation=function(e){if(!e)var e=window.event;e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},e.preventDefault=function(e){if(!e)var e=window.event;e.preventDefault?e.preventDefault():e.returnValue=!1},e.getAbsoluteLeft=function(e){for(var t=0;null!=e;)t+=e.offsetLeft,t-=e.scrollLeft,e=e.offsetParent;return!document.body.scrollLeft&&window.pageXOffset&&(t-=window.pageXOffset),t},e.getAbsoluteTop=function(e){for(var t=0;null!=e;)t+=e.offsetTop,t-=e.scrollTop,e=e.offsetParent;return!document.body.scrollTop&&window.pageYOffset&&(t-=window.pageYOffset),t},e.isArray=function(e){return e instanceof Array?!0:"[object Array]"===Object.prototype.toString.call(e)},e});
@@ -0,0 +1,5 @@
1
+ // > http://underscorejs.org
2
+ // > (c) 2009-2013 Jeremy Ashkenas, DocumentCloud Inc.
3
+ // > Underscore may be freely distributed under the MIT license.
4
+
5
+ (function(){var n=this,t=n._,r={},e=Array.prototype,u=Object.prototype,i=Function.prototype,a=e.push,o=e.slice,c=e.concat,l=u.toString,f=u.hasOwnProperty,s=e.forEach,p=e.map,h=e.reduce,v=e.reduceRight,g=e.filter,d=e.every,m=e.some,y=e.indexOf,b=e.lastIndexOf,x=Array.isArray,_=Object.keys,j=i.bind,w=function(n){return n instanceof w?n:this instanceof w?(this._wrapped=n,void 0):new w(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=w),exports._=w):n._=w,w.VERSION="1.4.4";var A=w.each=w.forEach=function(n,t,e){if(null!=n)if(s&&n.forEach===s)n.forEach(t,e);else if(n.length===+n.length){for(var u=0,i=n.length;i>u;u++)if(t.call(e,n[u],u,n)===r)return}else for(var a in n)if(w.has(n,a)&&t.call(e,n[a],a,n)===r)return};w.map=w.collect=function(n,t,r){var e=[];return null==n?e:p&&n.map===p?n.map(t,r):(A(n,function(n,u,i){e[e.length]=t.call(r,n,u,i)}),e)};var O="Reduce of empty array with no initial value";w.reduce=w.foldl=w.inject=function(n,t,r,e){var u=arguments.length>2;if(null==n&&(n=[]),h&&n.reduce===h)return e&&(t=w.bind(t,e)),u?n.reduce(t,r):n.reduce(t);if(A(n,function(n,i,a){u?r=t.call(e,r,n,i,a):(r=n,u=!0)}),!u)throw new TypeError(O);return r},w.reduceRight=w.foldr=function(n,t,r,e){var u=arguments.length>2;if(null==n&&(n=[]),v&&n.reduceRight===v)return e&&(t=w.bind(t,e)),u?n.reduceRight(t,r):n.reduceRight(t);var i=n.length;if(i!==+i){var a=w.keys(n);i=a.length}if(A(n,function(o,c,l){c=a?a[--i]:--i,u?r=t.call(e,r,n[c],c,l):(r=n[c],u=!0)}),!u)throw new TypeError(O);return r},w.find=w.detect=function(n,t,r){var e;return E(n,function(n,u,i){return t.call(r,n,u,i)?(e=n,!0):void 0}),e},w.filter=w.select=function(n,t,r){var e=[];return null==n?e:g&&n.filter===g?n.filter(t,r):(A(n,function(n,u,i){t.call(r,n,u,i)&&(e[e.length]=n)}),e)},w.reject=function(n,t,r){return w.filter(n,function(n,e,u){return!t.call(r,n,e,u)},r)},w.every=w.all=function(n,t,e){t||(t=w.identity);var u=!0;return null==n?u:d&&n.every===d?n.every(t,e):(A(n,function(n,i,a){return(u=u&&t.call(e,n,i,a))?void 0:r}),!!u)};var E=w.some=w.any=function(n,t,e){t||(t=w.identity);var u=!1;return null==n?u:m&&n.some===m?n.some(t,e):(A(n,function(n,i,a){return u||(u=t.call(e,n,i,a))?r:void 0}),!!u)};w.contains=w.include=function(n,t){return null==n?!1:y&&n.indexOf===y?-1!=n.indexOf(t):E(n,function(n){return n===t})},w.invoke=function(n,t){var r=o.call(arguments,2),e=w.isFunction(t);return w.map(n,function(n){return(e?t:n[t]).apply(n,r)})},w.pluck=function(n,t){return w.map(n,function(n){return n[t]})},w.where=function(n,t,r){return w.isEmpty(t)?r?null:[]:w[r?"find":"filter"](n,function(n){for(var r in t)if(t[r]!==n[r])return!1;return!0})},w.findWhere=function(n,t){return w.where(n,t,!0)},w.max=function(n,t,r){if(!t&&w.isArray(n)&&n[0]===+n[0]&&n.length<65535)return Math.max.apply(Math,n);if(!t&&w.isEmpty(n))return-1/0;var e={computed:-1/0,value:-1/0};return A(n,function(n,u,i){var a=t?t.call(r,n,u,i):n;a>=e.computed&&(e={value:n,computed:a})}),e.value},w.min=function(n,t,r){if(!t&&w.isArray(n)&&n[0]===+n[0]&&n.length<65535)return Math.min.apply(Math,n);if(!t&&w.isEmpty(n))return 1/0;var e={computed:1/0,value:1/0};return A(n,function(n,u,i){var a=t?t.call(r,n,u,i):n;a<e.computed&&(e={value:n,computed:a})}),e.value},w.shuffle=function(n){var t,r=0,e=[];return A(n,function(n){t=w.random(r++),e[r-1]=e[t],e[t]=n}),e};var k=function(n){return w.isFunction(n)?n:function(t){return t[n]}};w.sortBy=function(n,t,r){var e=k(t);return w.pluck(w.map(n,function(n,t,u){return{value:n,index:t,criteria:e.call(r,n,t,u)}}).sort(function(n,t){var r=n.criteria,e=t.criteria;if(r!==e){if(r>e||void 0===r)return 1;if(e>r||void 0===e)return-1}return n.index<t.index?-1:1}),"value")};var F=function(n,t,r,e){var u={},i=k(t||w.identity);return A(n,function(t,a){var o=i.call(r,t,a,n);e(u,o,t)}),u};w.groupBy=function(n,t,r){return F(n,t,r,function(n,t,r){(w.has(n,t)?n[t]:n[t]=[]).push(r)})},w.countBy=function(n,t,r){return F(n,t,r,function(n,t){w.has(n,t)||(n[t]=0),n[t]++})},w.sortedIndex=function(n,t,r,e){r=null==r?w.identity:k(r);for(var u=r.call(e,t),i=0,a=n.length;a>i;){var o=i+a>>>1;r.call(e,n[o])<u?i=o+1:a=o}return i},w.toArray=function(n){return n?w.isArray(n)?o.call(n):n.length===+n.length?w.map(n,w.identity):w.values(n):[]},w.size=function(n){return null==n?0:n.length===+n.length?n.length:w.keys(n).length},w.first=w.head=w.take=function(n,t,r){return null==n?void 0:null==t||r?n[0]:o.call(n,0,t)},w.initial=function(n,t,r){return o.call(n,0,n.length-(null==t||r?1:t))},w.last=function(n,t,r){return null==n?void 0:null==t||r?n[n.length-1]:o.call(n,Math.max(n.length-t,0))},w.rest=w.tail=w.drop=function(n,t,r){return o.call(n,null==t||r?1:t)},w.compact=function(n){return w.filter(n,w.identity)};var R=function(n,t,r){return A(n,function(n){w.isArray(n)?t?a.apply(r,n):R(n,t,r):r.push(n)}),r};w.flatten=function(n,t){return R(n,t,[])},w.without=function(n){return w.difference(n,o.call(arguments,1))},w.uniq=w.unique=function(n,t,r,e){w.isFunction(t)&&(e=r,r=t,t=!1);var u=r?w.map(n,r,e):n,i=[],a=[];return A(u,function(r,e){(t?e&&a[a.length-1]===r:w.contains(a,r))||(a.push(r),i.push(n[e]))}),i},w.union=function(){return w.uniq(c.apply(e,arguments))},w.intersection=function(n){var t=o.call(arguments,1);return w.filter(w.uniq(n),function(n){return w.every(t,function(t){return w.indexOf(t,n)>=0})})},w.difference=function(n){var t=c.apply(e,o.call(arguments,1));return w.filter(n,function(n){return!w.contains(t,n)})},w.zip=function(){for(var n=o.call(arguments),t=w.max(w.pluck(n,"length")),r=new Array(t),e=0;t>e;e++)r[e]=w.pluck(n,""+e);return r},w.object=function(n,t){if(null==n)return{};for(var r={},e=0,u=n.length;u>e;e++)t?r[n[e]]=t[e]:r[n[e][0]]=n[e][1];return r},w.indexOf=function(n,t,r){if(null==n)return-1;var e=0,u=n.length;if(r){if("number"!=typeof r)return e=w.sortedIndex(n,t),n[e]===t?e:-1;e=0>r?Math.max(0,u+r):r}if(y&&n.indexOf===y)return n.indexOf(t,r);for(;u>e;e++)if(n[e]===t)return e;return-1},w.lastIndexOf=function(n,t,r){if(null==n)return-1;var e=null!=r;if(b&&n.lastIndexOf===b)return e?n.lastIndexOf(t,r):n.lastIndexOf(t);for(var u=e?r:n.length;u--;)if(n[u]===t)return u;return-1},w.range=function(n,t,r){arguments.length<=1&&(t=n||0,n=0),r=arguments[2]||1;for(var e=Math.max(Math.ceil((t-n)/r),0),u=0,i=new Array(e);e>u;)i[u++]=n,n+=r;return i},w.bind=function(n,t){if(n.bind===j&&j)return j.apply(n,o.call(arguments,1));var r=o.call(arguments,2);return function(){return n.apply(t,r.concat(o.call(arguments)))}},w.partial=function(n){var t=o.call(arguments,1);return function(){return n.apply(this,t.concat(o.call(arguments)))}},w.bindAll=function(n){var t=o.call(arguments,1);return 0===t.length&&(t=w.functions(n)),A(t,function(t){n[t]=w.bind(n[t],n)}),n},w.memoize=function(n,t){var r={};return t||(t=w.identity),function(){var e=t.apply(this,arguments);return w.has(r,e)?r[e]:r[e]=n.apply(this,arguments)}},w.delay=function(n,t){var r=o.call(arguments,2);return setTimeout(function(){return n.apply(null,r)},t)},w.defer=function(n){return w.delay.apply(w,[n,1].concat(o.call(arguments,1)))},w.throttle=function(n,t){var r,e,u,i,a=0,o=function(){a=new Date,u=null,i=n.apply(r,e)};return function(){var c=new Date,l=t-(c-a);return r=this,e=arguments,0>=l?(clearTimeout(u),u=null,a=c,i=n.apply(r,e)):u||(u=setTimeout(o,l)),i}},w.debounce=function(n,t,r){var e,u;return function(){var i=this,a=arguments,o=function(){e=null,r||(u=n.apply(i,a))},c=r&&!e;return clearTimeout(e),e=setTimeout(o,t),c&&(u=n.apply(i,a)),u}},w.once=function(n){var t,r=!1;return function(){return r?t:(r=!0,t=n.apply(this,arguments),n=null,t)}},w.wrap=function(n,t){return function(){var r=[n];return a.apply(r,arguments),t.apply(this,r)}},w.compose=function(){var n=arguments;return function(){for(var t=arguments,r=n.length-1;r>=0;r--)t=[n[r].apply(this,t)];return t[0]}},w.after=function(n,t){return 0>=n?t():function(){return--n<1?t.apply(this,arguments):void 0}},w.keys=_||function(n){if(n!==Object(n))throw new TypeError("Invalid object");var t=[];for(var r in n)w.has(n,r)&&(t[t.length]=r);return t},w.values=function(n){var t=[];for(var r in n)w.has(n,r)&&t.push(n[r]);return t},w.pairs=function(n){var t=[];for(var r in n)w.has(n,r)&&t.push([r,n[r]]);return t},w.invert=function(n){var t={};for(var r in n)w.has(n,r)&&(t[n[r]]=r);return t},w.functions=w.methods=function(n){var t=[];for(var r in n)w.isFunction(n[r])&&t.push(r);return t.sort()},w.extend=function(n){return A(o.call(arguments,1),function(t){if(t)for(var r in t)n[r]=t[r]}),n},w.pick=function(n){var t={},r=c.apply(e,o.call(arguments,1));return A(r,function(r){r in n&&(t[r]=n[r])}),t},w.omit=function(n){var t={},r=c.apply(e,o.call(arguments,1));for(var u in n)w.contains(r,u)||(t[u]=n[u]);return t},w.defaults=function(n){return A(o.call(arguments,1),function(t){if(t)for(var r in t)null==n[r]&&(n[r]=t[r])}),n},w.clone=function(n){return w.isObject(n)?w.isArray(n)?n.slice():w.extend({},n):n},w.tap=function(n,t){return t(n),n};var S=function(n,t,r,e){if(n===t)return 0!==n||1/n==1/t;if(null==n||null==t)return n===t;n instanceof w&&(n=n._wrapped),t instanceof w&&(t=t._wrapped);var u=l.call(n);if(u!=l.call(t))return!1;switch(u){case"[object String]":return n==String(t);case"[object Number]":return n!=+n?t!=+t:0==n?1/n==1/t:n==+t;case"[object Date]":case"[object Boolean]":return+n==+t;case"[object RegExp]":return n.source==t.source&&n.global==t.global&&n.multiline==t.multiline&&n.ignoreCase==t.ignoreCase}if("object"!=typeof n||"object"!=typeof t)return!1;for(var i=r.length;i--;)if(r[i]==n)return e[i]==t;r.push(n),e.push(t);var a=0,o=!0;if("[object Array]"==u){if(a=n.length,o=a==t.length)for(;a--&&(o=S(n[a],t[a],r,e)););}else{var c=n.constructor,f=t.constructor;if(c!==f&&!(w.isFunction(c)&&c instanceof c&&w.isFunction(f)&&f instanceof f))return!1;for(var s in n)if(w.has(n,s)&&(a++,!(o=w.has(t,s)&&S(n[s],t[s],r,e))))break;if(o){for(s in t)if(w.has(t,s)&&!a--)break;o=!a}}return r.pop(),e.pop(),o};w.isEqual=function(n,t){return S(n,t,[],[])},w.isEmpty=function(n){if(null==n)return!0;if(w.isArray(n)||w.isString(n))return 0===n.length;for(var t in n)if(w.has(n,t))return!1;return!0},w.isElement=function(n){return!(!n||1!==n.nodeType)},w.isArray=x||function(n){return"[object Array]"==l.call(n)},w.isObject=function(n){return n===Object(n)},A(["Arguments","Function","String","Number","Date","RegExp"],function(n){w["is"+n]=function(t){return l.call(t)=="[object "+n+"]"}}),w.isArguments(arguments)||(w.isArguments=function(n){return!(!n||!w.has(n,"callee"))}),"function"!=typeof/./&&(w.isFunction=function(n){return"function"==typeof n}),w.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},w.isNaN=function(n){return w.isNumber(n)&&n!=+n},w.isBoolean=function(n){return n===!0||n===!1||"[object Boolean]"==l.call(n)},w.isNull=function(n){return null===n},w.isUndefined=function(n){return void 0===n},w.has=function(n,t){return f.call(n,t)},w.noConflict=function(){return n._=t,this},w.identity=function(n){return n},w.times=function(n,t,r){for(var e=Array(n),u=0;n>u;u++)e[u]=t.call(r,u);return e},w.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))};var I={escape:{"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;","/":"&#x2F;"}};I.unescape=w.invert(I.escape);var M={escape:new RegExp("["+w.keys(I.escape).join("")+"]","g"),unescape:new RegExp("("+w.keys(I.unescape).join("|")+")","g")};w.each(["escape","unescape"],function(n){w[n]=function(t){return null==t?"":(""+t).replace(M[n],function(t){return I[n][t]})}}),w.result=function(n,t){if(null==n)return null;var r=n[t];return w.isFunction(r)?r.call(n):r},w.mixin=function(n){A(w.functions(n),function(t){var r=w[t]=n[t];w.prototype[t]=function(){var n=[this._wrapped];return a.apply(n,arguments),D.call(this,r.apply(w,n))}})};var N=0;w.uniqueId=function(n){var t=++N+"";return n?n+t:t},w.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var T=/(.)^/,q={"'":"'","\\":"\\","\r":"r","\n":"n"," ":"t","\u2028":"u2028","\u2029":"u2029"},B=/\\|'|\r|\n|\t|\u2028|\u2029/g;w.template=function(n,t,r){var e;r=w.defaults({},r,w.templateSettings);var u=new RegExp([(r.escape||T).source,(r.interpolate||T).source,(r.evaluate||T).source].join("|")+"|$","g"),i=0,a="__p+='";n.replace(u,function(t,r,e,u,o){return a+=n.slice(i,o).replace(B,function(n){return"\\"+q[n]}),r&&(a+="'+\n((__t=("+r+"))==null?'':_.escape(__t))+\n'"),e&&(a+="'+\n((__t=("+e+"))==null?'':__t)+\n'"),u&&(a+="';\n"+u+"\n__p+='"),i=o+t.length,t}),a+="';\n",r.variable||(a="with(obj||{}){\n"+a+"}\n"),a="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+a+"return __p;\n";try{e=new Function(r.variable||"obj","_",a)}catch(o){throw o.source=a,o}if(t)return e(t,w);var c=function(n){return e.call(this,n,w)};return c.source="function("+(r.variable||"obj")+"){\n"+a+"}",c},w.chain=function(n){return w(n).chain()};var D=function(n){return this._chain?w(n).chain():n};w.mixin(w),A(["pop","push","reverse","shift","sort","splice","unshift"],function(n){var t=e[n];w.prototype[n]=function(){var r=this._wrapped;return t.apply(r,arguments),"shift"!=n&&"splice"!=n||0!==r.length||delete r[0],D.call(this,r)}}),A(["concat","join","slice"],function(n){var t=e[n];w.prototype[n]=function(){return D.call(this,t.apply(this._wrapped,arguments))}}),w.extend(w.prototype,{chain:function(){return this._chain=!0,this},value:function(){return this._wrapped}})}).call(this);
@@ -0,0 +1,10 @@
1
+ // Underscore.string
2
+ // (c) 2010 Esa-Matti Suuronen <esa-matti aet suuronen dot org>
3
+ // Underscore.string is freely distributable under the terms of the MIT license.
4
+ // Documentation: https://github.com/epeli/underscore.string
5
+ // Some code is borrowed from MooTools and Alexandru Marasteanu.
6
+ // Version '2.3.0'
7
+
8
+ // Copyright (c) Alexandru Marasteanu <alexaholic [at) gmail (dot] com>
9
+
10
+ !function(e,n){var r=n.prototype.trim,t=n.prototype.trimRight,u=n.prototype.trimLeft,i=function(e){return 1*e||0},l=function(e,n){if(1>n)return"";for(var r="";n>0;)1&n&&(r+=e),n>>=1,e+=e;return r},a=[].slice,o=function(e){return null==e?"\\s":e.source?e.source:"["+h.escapeRegExp(e)+"]"},c={lt:"<",gt:">",quot:'"',amp:"&",apos:"'"},s={};for(var f in c)s[c[f]]=f;s["'"]="#39";var p=function(){function e(e){return Object.prototype.toString.call(e).slice(8,-1).toLowerCase()}var r=l,t=function(){return t.cache.hasOwnProperty(arguments[0])||(t.cache[arguments[0]]=t.parse(arguments[0])),t.format.call(null,t.cache[arguments[0]],arguments)};return t.format=function(t,u){var i,l,a,o,c,s,f,h=1,g=t.length,d="",m=[];for(l=0;g>l;l++)if(d=e(t[l]),"string"===d)m.push(t[l]);else if("array"===d){if(o=t[l],o[2])for(i=u[h],a=0;a<o[2].length;a++){if(!i.hasOwnProperty(o[2][a]))throw new Error(p('[_.sprintf] property "%s" does not exist',o[2][a]));i=i[o[2][a]]}else i=o[1]?u[o[1]]:u[h++];if(/[^s]/.test(o[8])&&"number"!=e(i))throw new Error(p("[_.sprintf] expecting number but found %s",e(i)));switch(o[8]){case"b":i=i.toString(2);break;case"c":i=n.fromCharCode(i);break;case"d":i=parseInt(i,10);break;case"e":i=o[7]?i.toExponential(o[7]):i.toExponential();break;case"f":i=o[7]?parseFloat(i).toFixed(o[7]):parseFloat(i);break;case"o":i=i.toString(8);break;case"s":i=(i=n(i))&&o[7]?i.substring(0,o[7]):i;break;case"u":i=Math.abs(i);break;case"x":i=i.toString(16);break;case"X":i=i.toString(16).toUpperCase()}i=/[def]/.test(o[8])&&o[3]&&i>=0?"+"+i:i,s=o[4]?"0"==o[4]?"0":o[4].charAt(1):" ",f=o[6]-n(i).length,c=o[6]?r(s,f):"",m.push(o[5]?i+c:c+i)}return m.join("")},t.cache={},t.parse=function(e){for(var n=e,r=[],t=[],u=0;n;){if(null!==(r=/^[^\x25]+/.exec(n)))t.push(r[0]);else if(null!==(r=/^\x25{2}/.exec(n)))t.push("%");else{if(null===(r=/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(n)))throw new Error("[_.sprintf] huh?");if(r[2]){u|=1;var i=[],l=r[2],a=[];if(null===(a=/^([a-z_][a-z_\d]*)/i.exec(l)))throw new Error("[_.sprintf] huh?");for(i.push(a[1]);""!==(l=l.substring(a[0].length));)if(null!==(a=/^\.([a-z_][a-z_\d]*)/i.exec(l)))i.push(a[1]);else{if(null===(a=/^\[(\d+)\]/.exec(l)))throw new Error("[_.sprintf] huh?");i.push(a[1])}r[2]=i}else u|=2;if(3===u)throw new Error("[_.sprintf] mixing positional and named placeholders is not (yet) supported");t.push(r)}n=n.substring(r[0].length)}return t},t}(),h={VERSION:"2.3.0",isBlank:function(e){return null==e&&(e=""),/^\s*$/.test(e)},stripTags:function(e){return null==e?"":n(e).replace(/<\/?[^>]+>/g,"")},capitalize:function(e){return e=null==e?"":n(e),e.charAt(0).toUpperCase()+e.slice(1)},chop:function(e,r){return null==e?[]:(e=n(e),r=~~r,r>0?e.match(new RegExp(".{1,"+r+"}","g")):[e])},clean:function(e){return h.strip(e).replace(/\s+/g," ")},count:function(e,r){if(null==e||null==r)return 0;e=n(e),r=n(r);for(var t=0,u=0,i=r.length;;){if(u=e.indexOf(r,u),-1===u)break;t++,u+=i}return t},chars:function(e){return null==e?[]:n(e).split("")},swapCase:function(e){return null==e?"":n(e).replace(/\S/g,function(e){return e===e.toUpperCase()?e.toLowerCase():e.toUpperCase()})},escapeHTML:function(e){return null==e?"":n(e).replace(/[&<>"']/g,function(e){return"&"+s[e]+";"})},unescapeHTML:function(e){return null==e?"":n(e).replace(/\&([^;]+);/g,function(e,r){var t;return r in c?c[r]:(t=r.match(/^#x([\da-fA-F]+)$/))?n.fromCharCode(parseInt(t[1],16)):(t=r.match(/^#(\d+)$/))?n.fromCharCode(~~t[1]):e})},escapeRegExp:function(e){return null==e?"":n(e).replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")},splice:function(e,n,r,t){var u=h.chars(e);return u.splice(~~n,~~r,t),u.join("")},insert:function(e,n,r){return h.splice(e,n,0,r)},include:function(e,r){return""===r?!0:null==e?!1:-1!==n(e).indexOf(r)},join:function(){var e=a.call(arguments),n=e.shift();return null==n&&(n=""),e.join(n)},lines:function(e){return null==e?[]:n(e).split("\n")},reverse:function(e){return h.chars(e).reverse().join("")},startsWith:function(e,r){return""===r?!0:null==e||null==r?!1:(e=n(e),r=n(r),e.length>=r.length&&e.slice(0,r.length)===r)},endsWith:function(e,r){return""===r?!0:null==e||null==r?!1:(e=n(e),r=n(r),e.length>=r.length&&e.slice(e.length-r.length)===r)},succ:function(e){return null==e?"":(e=n(e),e.slice(0,-1)+n.fromCharCode(e.charCodeAt(e.length-1)+1))},titleize:function(e){return null==e?"":n(e).replace(/(?:^|\s)\S/g,function(e){return e.toUpperCase()})},camelize:function(e){return h.trim(e).replace(/[-_\s]+(.)?/g,function(e,n){return n.toUpperCase()})},underscored:function(e){return h.trim(e).replace(/([a-z\d])([A-Z]+)/g,"$1_$2").replace(/[-\s]+/g,"_").toLowerCase()},dasherize:function(e){return h.trim(e).replace(/([A-Z])/g,"-$1").replace(/[-_\s]+/g,"-").toLowerCase()},classify:function(e){return h.titleize(n(e).replace(/[\W_]/g," ")).replace(/\s/g,"")},humanize:function(e){return h.capitalize(h.underscored(e).replace(/_id$/,"").replace(/_/g," "))},trim:function(e,t){return null==e?"":!t&&r?r.call(e):(t=o(t),n(e).replace(new RegExp("^"+t+"+|"+t+"+$","g"),""))},ltrim:function(e,r){return null==e?"":!r&&u?u.call(e):(r=o(r),n(e).replace(new RegExp("^"+r+"+"),""))},rtrim:function(e,r){return null==e?"":!r&&t?t.call(e):(r=o(r),n(e).replace(new RegExp(r+"+$"),""))},truncate:function(e,r,t){return null==e?"":(e=n(e),t=t||"...",r=~~r,e.length>r?e.slice(0,r)+t:e)},prune:function(e,r,t){if(null==e)return"";if(e=n(e),r=~~r,t=null!=t?n(t):"...",e.length<=r)return e;var u=function(e){return e.toUpperCase()!==e.toLowerCase()?"A":" "},i=e.slice(0,r+1).replace(/.(?=\W*\w*$)/g,u);return i=i.slice(i.length-2).match(/\w\w/)?i.replace(/\s*\S+$/,""):h.rtrim(i.slice(0,i.length-1)),(i+t).length>e.length?e:e.slice(0,i.length)+t},words:function(e,n){return h.isBlank(e)?[]:h.trim(e,n).split(n||/\s+/)},pad:function(e,r,t,u){e=null==e?"":n(e),r=~~r;var i=0;switch(t?t.length>1&&(t=t.charAt(0)):t=" ",u){case"right":return i=r-e.length,e+l(t,i);case"both":return i=r-e.length,l(t,Math.ceil(i/2))+e+l(t,Math.floor(i/2));default:return i=r-e.length,l(t,i)+e}},lpad:function(e,n,r){return h.pad(e,n,r)},rpad:function(e,n,r){return h.pad(e,n,r,"right")},lrpad:function(e,n,r){return h.pad(e,n,r,"both")},sprintf:p,vsprintf:function(e,n){return n.unshift(e),p.apply(null,n)},toNumber:function(e,n){return e?(e=h.trim(e),e.match(/^-?\d+(?:\.\d+)?$/)?i(i(e).toFixed(~~n)):0/0):0},numberFormat:function(e,n,r,t){if(isNaN(e)||null==e)return"";e=e.toFixed(~~n),t="string"==typeof t?t:",";var u=e.split("."),i=u[0],l=u[1]?(r||".")+u[1]:"";return i.replace(/(\d)(?=(?:\d{3})+$)/g,"$1"+t)+l},strRight:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.indexOf(r):-1;return~t?e.slice(t+r.length,e.length):e},strRightBack:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.lastIndexOf(r):-1;return~t?e.slice(t+r.length,e.length):e},strLeft:function(e,r){if(null==e)return"";e=n(e),r=null!=r?n(r):r;var t=r?e.indexOf(r):-1;return~t?e.slice(0,t):e},strLeftBack:function(e,n){if(null==e)return"";e+="",n=null!=n?""+n:n;var r=e.lastIndexOf(n);return~r?e.slice(0,r):e},toSentence:function(e,n,r,t){n=n||", ",r=r||" and ";var u=e.slice(),i=u.pop();return e.length>2&&t&&(r=h.rtrim(n)+r),u.length?u.join(n)+r+i:i},toSentenceSerial:function(){var e=a.call(arguments);return e[3]=!0,h.toSentence.apply(h,e)},slugify:function(e){if(null==e)return"";var r="ąàáäâãåæćęèéëêìíïîłńòóöôõøśùúüûñçżź",t="aaaaaaaaceeeeeiiiilnoooooosuuuunczz",u=new RegExp(o(r),"g");return e=n(e).toLowerCase().replace(u,function(e){var n=r.indexOf(e);return t.charAt(n)||"-"}),h.dasherize(e.replace(/[^\w\s-]/g,""))},surround:function(e,n){return[n,e,n].join("")},quote:function(e){return h.surround(e,'"')},exports:function(){var e={};for(var n in this)this.hasOwnProperty(n)&&!n.match(/^(?:include|contains|reverse)$/)&&(e[n]=this[n]);return e},repeat:function(e,r,t){if(null==e)return"";if(r=~~r,null==t)return l(n(e),r);for(var u=[];r>0;u[--r]=e);return u.join(t)},naturalCmp:function(e,r){if(e==r)return 0;if(!e)return-1;if(!r)return 1;for(var t=/(\.\d+)|(\d+)|(\D+)/g,u=n(e).toLowerCase().match(t),i=n(r).toLowerCase().match(t),l=Math.min(u.length,i.length),a=0;l>a;a++){var o=u[a],c=i[a];if(o!==c){var s=parseInt(o,10);if(!isNaN(s)){var f=parseInt(c,10);if(!isNaN(f)&&s-f)return s-f}return c>o?-1:1}}return u.length===i.length?u.length-i.length:r>e?-1:1},levenshtein:function(e,r){if(null==e&&null==r)return 0;if(null==e)return n(r).length;if(null==r)return n(e).length;e=n(e),r=n(r);for(var t,u,i=[],l=0;l<=r.length;l++)for(var a=0;a<=e.length;a++)u=l&&a?e.charAt(a-1)===r.charAt(l-1)?t:Math.min(i[a],i[a-1],t)+1:l+a,t=i[a],i[a]=u;return i.pop()}};h.strip=h.trim,h.lstrip=h.ltrim,h.rstrip=h.rtrim,h.center=h.lrpad,h.rjust=h.lpad,h.ljust=h.rpad,h.contains=h.include,h.q=h.quote,"undefined"!=typeof exports&&("undefined"!=typeof module&&module.exports&&(module.exports=h),exports._s=h),"function"==typeof define&&define.amd&&define("underscore.string",[],function(){return h}),e._=e._||{},e._.string=e._.str=h}(this,String);
@@ -0,0 +1 @@
1
+ var XDate=function(t,e,n,r){function u(){return s(this instanceof u?this:new u,arguments)}function s(e,n){var r,s=n.length;if(Y(n[s-1])&&(r=n[--s],n=W(n,0,s)),s)if(1==s){var o=n[0];o instanceof t||L(o)?e[0]=new t(+o):o instanceof u?e[0]=w(o):J(o)&&(e[0]=new t(0),e=m(o,r||!1,e))}else e[0]=new t(ee.apply(t,n)),r||(e[0]=N(e[0]));else e[0]=new t;return Y(r)&&i(e,r),e}function o(t){return t[0].toString===ne}function i(e,n,r){return n?o(e)||(r&&(e[0]=z(e[0])),e[0].toString=ne):o(e)&&(e[0]=r?N(e[0]):new t(+e[0])),e}function a(t,e,n,r,u){var s=O(D,t[0],u),o=O(b,t[0],u),i=e==Z?n%12:s(Z),a=!1;2==r.length&&Y(r[1])&&(a=r[1],r=[n]),o(e,r),a&&s(Z)!=i&&(o(Z,[s(Z)-1]),o(E,[H(s(I),s(Z))]))}function c(t,n,r,u){r=Number(r);var s=e.floor(r);t["set"+Q[n]](t["get"+Q[n]]()+s,u||!1),s!=r&&X>n&&c(t,n+1,(r-s)*_[n],u)}function f(t,n,r){t=t.clone().setUTCMode(!0,!0),n=u(n).setUTCMode(!0,!0);var s=0;if(r==I||r==Z){for(var o=X;o>=r;o--)s/=_[o],s+=D(n,!1,o)-D(t,!1,o);r==Z&&(s+=12*(n.getFullYear()-t.getFullYear()))}else if(r==E){var i=t.toDate().setUTCHours(0,0,0,0),a=n.toDate().setUTCHours(0,0,0,0);s=e.round((a-i)/q)+(n-a-(t-i))/q}else s=(n-t)/[36e5,6e4,1e3,1][r-3];return s}function g(t){return h(t(I),t(Z),t(E))}function h(n,r,u){var s=new t(ee(n,r,u)),o=l(n),i=o;if(o>s)i=l(n-1);else{var a=l(n+1);s>=a&&(i=a)}return e.floor(e.round((s-i)/q)/7)+1}function l(e){var n=new t(ee(e,0,4));return n.setUTCDate(n.getUTCDate()-(n.getUTCDay()+6)%7),n}function d(t,e,n,u){var s=O(D,t,u),o=O(b,t,u),i=l(n===r?s(I):n);u||(i=N(i)),t.setTime(+i),o(E,[s(E)+7*(e-1)])}function m(e,n,r){for(var s,o=u.parsers,i=0;i<o.length;i++)if(s=o[i](e,n,r))return s;return r[0]=new t(e),r}function T(e,n,r){var u=e.match(/^(\d{4})(-(\d{2})(-(\d{2})([T ](\d{2}):(\d{2})(:(\d{2})(\.(\d+))?)?(Z|(([-+])(\d{2})(:?(\d{2}))?))?)?)?)?$/);if(u){var s=new t(ee(u[1],u[3]?u[3]-1:0,u[5]||1,u[7]||0,u[8]||0,u[10]||0,u[12]?1e3*Number("0."+u[12]):0));return u[13]?u[14]&&s.setUTCMinutes(s.getUTCMinutes()+("-"==u[15]?1:-1)*(60*Number(u[16])+(u[18]?Number(u[18]):0))):n||(s=N(s)),r.setTime(+s)}}function y(t,e,n,r,s){function o(t){return n[t]||c[t]}function i(t){if(r)for(var e=(t==$?E:t)-1;e>=0;e--)r.push(f(e));return f(t)}var a=u.locales,c=a[u.defaultLocale]||{},f=O(D,t,s);return n=(J(n)?a[n]:n)||{},M(t,e,i,o,s)}function M(t,e,n,r,u){for(var s,o,i="";s=e.match(te);)i+=e.substr(0,s.index),s[1]?i+=p(t,s[1],n,r,u):s[3]?(o=M(t,s[4],n,r,u),parseInt(o.replace(/\D/g,""),10)&&(i+=o)):i+=s[7]||"'",e=e.substr(s.index+s[0].length);return i+e}function p(t,e,n,u,s){for(var o,i=e.length,a="";i>0;)o=C(t,e.substr(0,i),n,u,s),o!==r?(a+=o,e=e.substr(i),i=e.length):i--;return a+e}function C(t,e,n,r,s){var o=u.formatters[e];if(J(o))return M(t,o,n,r,s);if(k(o))return o(t,s||!1,r);switch(e){case"fff":return x(n(X),3);case"s":return n(R);case"ss":return x(n(R));case"m":return n(P);case"mm":return x(n(P));case"h":return n(G)%12||12;case"hh":return x(n(G)%12||12);case"H":return n(G);case"HH":return x(n(G));case"d":return n(E);case"dd":return x(n(E));case"ddd":return r("dayNamesShort")[n($)]||"";case"dddd":return r("dayNames")[n($)]||"";case"M":return n(Z)+1;case"MM":return x(n(Z)+1);case"MMM":return r("monthNamesShort")[n(Z)]||"";case"MMMM":return r("monthNames")[n(Z)]||"";case"yy":return(n(I)+"").substring(2);case"yyyy":return n(I);case"t":return U(n,r).substr(0,1).toLowerCase();case"tt":return U(n,r).toLowerCase();case"T":return U(n,r).substr(0,1);case"TT":return U(n,r);case"z":case"zz":case"zzz":return s?"Z":S(t,e);case"w":return g(n);case"ww":return x(g(n));case"S":var i=n(E);return i>10&&20>i?"th":["st","nd","rd"][i%10-1]||"th"}}function S(t,n){var r=t.getTimezoneOffset(),u=0>r?"+":"-",s=e.floor(e.abs(r)/60),o=e.abs(r)%60,i=s;return"zz"==n?i=x(s):"zzz"==n&&(i=x(s)+":"+x(o)),u+i}function U(t,e){return t(G)<12?e("amDesignator"):e("pmDesignator")}function v(t){return!isNaN(+t[0])}function w(e){var n=new t(+e[0]);return o(e)&&(n.toString=ne),n}function D(t,e,n){return t["get"+(e?"UTC":"")+Q[n]]()}function b(t,e,n,r){t["set"+(e?"UTC":"")+Q[n]].apply(t,r)}function z(e){return new t(ee(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()))}function N(e){return new t(e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate(),e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds())}function H(e,n){return 32-new t(ee(e,n,32)).getUTCDate()}function F(t){return function(){return t.apply(r,[this].concat(W(arguments)))}}function O(t){var e=W(arguments,1);return function(){return t.apply(r,e.concat(W(arguments)))}}function W(t,e,u){return n.prototype.slice.call(t,e||0,u===r?t.length:u)}function A(t,e){for(var n=0;n<t.length;n++)e(t[n],n)}function J(t){return"string"==typeof t}function L(t){return"number"==typeof t}function Y(t){return"boolean"==typeof t}function k(t){return"function"==typeof t}function x(t,e){for(e=e||2,t+="";t.length<e;)t="0"+t;return t}var I=0,Z=1,E=2,G=3,P=4,R=5,X=6,$=7,j=8,q=864e5,B="yyyy-MM-dd'T'HH:mm:ss(.fff)",K=B+"zzz",Q=["FullYear","Month","Date","Hours","Minutes","Seconds","Milliseconds","Day","Year"],V=["Years","Months","Days"],_=[12,31,24,60,60,1e3,1],te=new RegExp("(([a-zA-Z])\\2*)|(\\((('.*?'|\\(.*?\\)|.)*?)\\))|('(.*?)')"),ee=t.UTC,ne=t.prototype.toUTCString,re=u.prototype;return re.length=1,re.splice=n.prototype.splice,re.getUTCMode=F(o),re.setUTCMode=F(i),re.getTimezoneOffset=function(){return o(this)?0:this[0].getTimezoneOffset()},A(Q,function(t,e){re["get"+t]=function(){return D(this[0],o(this),e)},e!=j&&(re["getUTC"+t]=function(){return D(this[0],!0,e)}),e!=$&&(re["set"+t]=function(t){return a(this,e,t,arguments,o(this)),this},e!=j&&(re["setUTC"+t]=function(t){return a(this,e,t,arguments,!0),this},re["add"+(V[e]||t)]=function(t,n){return c(this,e,t,n),this},re["diff"+(V[e]||t)]=function(t){return f(this,t,e)}))}),re.getWeek=function(){return g(O(D,this,!1))},re.getUTCWeek=function(){return g(O(D,this,!0))},re.setWeek=function(t,e){return d(this,t,e,!1),this},re.setUTCWeek=function(t,e){return d(this,t,e,!0),this},re.addWeeks=function(t){return this.addDays(7*Number(t))},re.diffWeeks=function(t){return f(this,t,E)/7},u.parsers=[T],u.parse=function(t){return+u(""+t)},re.toString=function(t,e,n){return t!==r&&v(this)?y(this,t,e,n,o(this)):this[0].toString()},re.toUTCString=re.toGMTString=function(t,e,n){return t!==r&&v(this)?y(this,t,e,n,!0):this[0].toUTCString()},re.toISOString=function(){return this.toUTCString(K)},u.defaultLocale="",u.locales={"":{monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],amDesignator:"AM",pmDesignator:"PM"}},u.formatters={i:B,u:K},A(["getTime","valueOf","toDateString","toTimeString","toLocaleString","toLocaleDateString","toLocaleTimeString","toJSON"],function(t){re[t]=function(){return this[0][t]()}}),re.setTime=function(t){return this[0].setTime(t),this},re.valid=F(v),re.clone=function(){return new u(this)},re.clearTime=function(){return this.setHours(0,0,0,0)},re.toDate=function(){return new t(+this[0])},u.now=function(){return+new t},u.today=function(){return(new u).clearTime()},u.UTC=ee,u.getDaysInMonth=H,"undefined"!=typeof module&&module.exports&&(module.exports=u),u}(Date,Math,Array);
@@ -0,0 +1 @@
1
+ html{height:100%}body{background:#373737;height:100%}hr{border-color:#b6b3a6}@font-face{font-family:'ProximaBold';src:url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf') format('truetype')}@font-face{font-family:'ProximaRegular';src:url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot?') format('eot'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff') format('woff'),url('../fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf') format('truetype')}.ls-rearview .nav-primary .navbar-inner{border-bottom:1px solid #000;background:#171717;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#171717),color-stop(1,#555));background:-ms-linear-gradient(bottom,#171717,#555);background:-moz-linear-gradient(center bottom,#171717 0,#555 100%)}.ls-rearview .nav-primary.navbar .nav>.active>a,.ls-rearview .nav-primary.navbar .nav>.active>a:hover,.ls-rearview .nav-primary.navbar .nav>.active>a:focus{background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%);font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:after{top:-8px}.ls-rearview .nav-primary.navbar .nav>li>.dropdown-menu:before{border:0;content:none;display:none}.ls-rearview .nav-primary.navbar .nav>li>a{color:#9d9a94;text-shadow:none;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .nav-primary.navbar .nav>li.active a{color:#fff}.ls-rearview .nav-primary.navbar .brand{margin-top:-5px;padding-bottom:0;color:#fff;text-shadow:none;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .nav-primary.navbar .brand img{vertical-align:-6px;margin-right:8px}.ls-rearview .nav-primary.navbar .dropdown-menu{padding:0;border:2px solid #fff;background:rgba(0,0,0,0.75);box-shadow:0 0 7px #333;-moz-box-shadow:0 0 7px #333;-webkit-box-shadow:0 0 7px #333}.ls-rearview .nav-primary.navbar .dropdown-menu a{color:#fff;line-height:30px;text-transform:uppercase}.ls-rearview .nav-primary.navbar .dropdown-menu li{background:0;border-bottom:1px solid black;border-top:1px solid #555}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child{border-top:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child{border-bottom:0}.ls-rearview .nav-primary.navbar .dropdown-menu li:first-child a:hover{border-radius:5px 5px 0 0}.ls-rearview .nav-primary.navbar .dropdown-menu li:last-child a:hover{border-radius:0 0 5px 5px}.ls-rearview .footer-action-bar .navbar-inner{background:#f5f4ee;border:0}.ls-rearview .footer-action-bar .navbar-inner a{text-transform:uppercase}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background:#2d4249;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#2d4249),color-stop(1,#52676e));background:-ms-linear-gradient(bottom,#2d4249,#52676e);background:-moz-linear-gradient(center bottom,#2d4249 0,#52676e 100%)}.ls-rearview .navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#a29f99;border-bottom-color:#a29f99}.ls-rearview .navbar .nav li.dropdown.open>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.active>.dropdown-toggle .caret,.ls-rearview .navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#b9ced5;border-bottom-color:#b9ced5}.ls-rearview .header{margin:2em 0 1em 0;padding:14px 20px 0 20px;background:#f5f4ee;box-shadow:0 18px 60px #000;-moz-box-shadow:0 18px 60px #000;-webkit-box-shadow:0 18px 60px #000}.ls-rearview .header hr{margin:0;border-top:1px solid #b7b3a6;border-bottom:1px solid #b7b3a6;border-radius:4px}.ls-rearview .header .current-application-title{float:left;width:80%;overflow:hidden;white-space:nowrap}.ls-rearview .header .current-application-title h2{text-transform:uppercase}.ls-rearview .header .current-application-title h2,.ls-rearview .header .current-application-title h3{display:inline;vertical-align:baseline;color:#444240;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:30px}.ls-rearview .header .current-application-title h3{color:#7f7c78;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:20px}.ls-rearview .header .go-back{line-height:38px;text-decoration:none;cursor:pointer;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .header .go-back strong{font-weight:normal;font-size:38px;vertical-align:sub}.ls-rearview .header .date{padding:16px 0 0 0;float:right;text-align:right;width:20%;color:#666;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .header .date strong{color:#444;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal{width:880px;margin-top:-284px;margin-left:-440px;overflow:visible;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .modal h1{margin:0;padding:12px;color:#666;background:#c9c7c3;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .modal h2{margin:0;color:#666;font-family:'ProximaBold','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:22px}.ls-rearview .modal .hero-unit{margin-bottom:10px;padding:16px;background:#faf9f6;border:1px solid #dedddc;border-radius:2px}.ls-rearview .modal .hero-unit fieldset.bottom{margin-bottom:0}.ls-rearview .modal .hero-unit.expressions-metrics,.ls-rearview .modal .hero-unit.test-graph{margin-right:16px;width:287px;float:left}.ls-rearview .modal .hero-unit.expressions-metrics .output,.ls-rearview .modal .hero-unit.test-graph .output{display:block;float:none}.ls-rearview .modal .hero-unit.expressions-metrics .output textarea,.ls-rearview .modal .hero-unit.test-graph .output textarea{width:100%}.ls-rearview .modal .hero-unit.expressions-metrics{width:480px}.ls-rearview .modal .hero-unit.test-graph{margin-right:0}.ls-rearview .modal .modal-header{padding:14px}.ls-rearview .modal .modal-header .close,.ls-rearview .modal .modal-header .back{margin:-17px;padding:0;position:absolute;top:0;left:0;background:url(../img/close-button.png) no-repeat 0 0;height:38px;width:38px;text-indent:-9000px;opacity:.9;z-index:10000}.ls-rearview .modal .modal-header .back{margin:-15px;display:none;border:0;background:url(../img/back-button.png) no-repeat 0 0}.ls-rearview .modal .modal-header .close:hover,.ls-rearview .modal .modal-header .back:hover{opacity:1}.ls-rearview .modal .modal-body{padding-top:0;max-height:480px}.ls-rearview .modal .modal-footer{background:#e4e3e1}.ls-rearview .modal form{margin:0}.ls-rearview .modal fieldset.set-schedule{margin-right:16px;margin-bottom:10px;float:none;display:block}.ls-rearview .modal fieldset.day-month-picker{margin-right:0;margin-bottom:10px;float:left;display:block}.ls-rearview .modal fieldset.pager-duty,.ls-rearview .modal fieldset.test-in-graph{margin-right:0}.ls-rearview .modal fieldset.pager-duty textarea,.ls-rearview .modal fieldset.description textarea,.ls-rearview .modal fieldset.monitor-name input{width:378px}.ls-rearview .modal fieldset.expressions textarea,.ls-rearview .modal fieldset.metrics textarea{width:458px}.ls-rearview .modal.modal-large .hero-unit.expressions-metrics{float:left}.ls-rearview .modal.modal-large .hero-unit.test-graph{margin-left:530px;float:none;width:auto!important}.ls-rearview .graph{margin-bottom:12px;border:2px solid #999;border-radius:2px;background:#333;min-height:150px;overflow:hidden}.ls-rearview .graph .highcharts-container{top:0!important}.ls-rearview .graph .highcharts-container .highcharts-loading{margin:0!important;padding:0;position:absolute;top:0!important;left:0!important;opacity:.8!important;height:100%!important;width:100%!important;background:#000!important}.ls-rearview .graph .highcharts-container .highcharts-loading span{top:35%!important;color:#999;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview input[type=text],.ls-rearview textarea,.ls-rearview select{background:#333;border:1px solid #b6b3a6;color:#adabac}.ls-rearview input.input-minutes-back{width:73px}.ls-rearview input.date-picker{width:114px}.ls-rearview .previous-errors select{width:155px}.ls-rearview fieldset{margin-right:16px;float:left;display:inline-block}.ls-rearview .form-horizontal .controls{margin-left:76px}.ls-rearview .form-horizontal .control-label{float:left;padding-top:5px;text-align:right;width:0}.ls-rearview .monitor-panel{width:90%}.ls-rearview .monitor-wrap{margin:0;padding:0 0 90px 0;overflow:visible;width:100%;position:relative;z-index:1;-webkit-perspective:0;-moz-perspective:0;perspective:0}.ls-rearview .monitor-wrap .monitor-grid{margin:0}.ls-rearview .monitor-wrap .monitor-grid .row-fluid{display:block}.ls-rearview .monitor-wrap .monitor-grid .small-monitor:last{margin-right:0;padding-right:0}.ls-rearview .monitor-wrap .edit-monitor-wrap{display:block;height:inherit;width:100%;z-index:100;top:0;right:4000px;position:absolute;transition:right .4s;-moz-transition:right .4s;-webkit-transition:right .4s}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor{background:#545954;border-radius:7px;margin:0 6%;padding:8px 7px;min-height:500px}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .data-view{background:#767a76;border-radius:4px;float:left;width:66%}.ls-rearview .monitor-wrap .edit-monitor-wrap .edit-monitor .metrics-schedule{background:#767a76;border-radius:4px}.ls-rearview .monitor-wrap .edit-monitor-wrap.active{right:0}.ls-rearview .small-monitor-wrap{position:relative;z-index:1}.ls-rearview .small-monitor{margin-bottom:20px;margin-top:0;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .small-monitor h1{margin:0 0 0 3px;color:#fff;line-height:22px;float:left;display:inline-block;cursor:pointer;width:60%;overflow:hidden;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .small-monitor h1 span{display:block;width:9999999px}.ls-rearview .small-monitor .btn-group{margin:3px auto 0 auto;width:180px;display:block}.ls-rearview .small-monitor .graph{margin:0;position:relative;overflow:hidden;min-height:220px}.ls-rearview .small-monitor .btn-group.activate{margin:0 auto;display:inline-block;float:right;width:52px}.ls-rearview .small-monitor .header-controls{margin:0 0 3px 0}.ls-rearview .small-monitor .overlay{margin:0;padding:0;position:absolute;top:0;left:0;height:100%;width:100%;background:#000;opacity:.7}.ls-rearview .small-monitor .overlay h1{margin-top:75px;color:#999;width:100%;height:100%;text-align:center;line-height:36px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:36px}.ls-rearview .small-monitor figure{margin:0;display:block;border-radius:4px}.ls-rearview .small-monitor .back,.ls-rearview .small-monitor .front{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .small-monitor .back{position:absolute;left:0;top:0;width:100%;background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .small-monitor .back fieldset{display:block;height:100%;width:100%;padding:0;margin:0}.ls-rearview .small-monitor .back .description{border:2px solid #999;margin:3px 3px 48px 3px;min-height:200px;overflow:auto;background:#333}.ls-rearview .small-monitor .back p{margin:3px 7px;color:#adabac;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .small-monitor .back .btn-wrap{margin:4px;position:absolute;right:0;bottom:0}.ls-rearview .small-monitor .front{padding:3px;background:#545954}.ls-rearview .small-monitor *{-webkit-transform-style:preserve-3d}.ls-rearview .small-monitor.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .small-monitor.active .graph,.ls-rearview .small-monitor.active .header-controls{visibility:hidden;-webkit-backface-visibility:hidden}.ls-rearview .expanded-monitor{margin:0 6%;padding:2px;position:relative;background:#545954;border-radius:5px;color:#fff;min-height:400px;min-width:900px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:inherit}.ls-rearview .expanded-monitor .expressions{width:50%}.ls-rearview .expanded-monitor .metrics-test{width:48%}.ls-rearview .expanded-monitor .metrics-test .metrics{margin-bottom:10px;display:block;clear:both;width:100%}.ls-rearview .expanded-monitor .metrics-test .test-in-graph{margin-right:0}.ls-rearview .expanded-monitor .metrics-test .save-changes hr{border-color:#b6b3a6}.ls-rearview .expanded-monitor .data-view{margin:3px 3px 10px 3px;padding:3px;float:left;width:66%;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor .metrics-schedule{margin:3px}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty{margin-right:0}.ls-rearview .expanded-monitor .metrics-schedule fieldset.pager-duty textarea,.ls-rearview .expanded-monitor .metrics-schedule fieldset.description textarea{width:320px}.ls-rearview .expanded-monitor .metrics-schedule .day-month-picker .btn-group{margin-bottom:10px}.ls-rearview .expanded-monitor .metrics-schedule .button-view{margin:10px 0 0 0;padding:3px;background:#767a76;border-radius:4px}.ls-rearview .expanded-monitor label{margin-bottom:3px;color:#b6b3a6;font-size:14px;text-transform:uppercase}.ls-rearview .expanded-monitor label i{font-size:10px;font-style:normal}.ls-rearview .expanded-monitor .name-field{margin-bottom:3px;display:none}.ls-rearview .expanded-monitor .name-field input{margin-bottom:0}.ls-rearview .expanded-monitor textarea:focus,.ls-rearview .expanded-monitor input[type="text"]:focus,.ls-rearview .expanded-monitor input[type="password"]:focus,.ls-rearview .expanded-monitor input[type="datetime"]:focus,.ls-rearview .expanded-monitor input[type="datetime-local"]:focus,.ls-rearview .expanded-monitor input[type="date"]:focus,.ls-rearview .expanded-monitor input[type="month"]:focus,.ls-rearview .expanded-monitor input[type="time"]:focus,.ls-rearview .expanded-monitor input[type="week"]:focus,.ls-rearview .expanded-monitor input[type="number"]:focus,.ls-rearview .expanded-monitor input[type="email"]:focus,.ls-rearview .expanded-monitor input[type="url"]:focus,.ls-rearview .expanded-monitor input[type="search"]:focus,.ls-rearview .expanded-monitor input[type="tel"]:focus,.ls-rearview .expanded-monitor input[type="color"]:focus,.ls-rearview .expanded-monitor .uneditable-input:focus{border-color:#b6b3a6;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(182,179,166,0.7);outline:0 none}.ls-rearview .authentication-stats{margin:0 auto;width:100%}.ls-rearview .authentication-stats label{padding:5px 7px;display:inline-block;cursor:text}.ls-rearview .authentication-stats label:hover{padding:4px 6px;border:1px solid #b6b3a6;min-width:220px;background:#333;border-radius:3px;color:#adabac}.ls-rearview .authentication-stats .graph{margin:0 3px 3px 0;padding:3px;height:200px;border:3px solid #b6b3a6;border-radius:4px;background:#000;overflow:hidden;clear:both}.ls-rearview .alerts-output{padding:3px;float:right;width:32%}.ls-rearview .alerts-output .output-view{margin:0;min-height:135px;width:97%}.ls-rearview .alerts-history{color:#f5f4ed;min-height:133px}.ls-rearview .alerts-history ul{margin:0;padding:3px;overflow:auto;min-height:133px;border:3px solid #b6b3a6;border-radius:4px;background:#373737}.ls-rearview .alerts-history li{margin-bottom:26px;position:relative}.ls-rearview .alerts-history button{margin-top:4px;position:absolute;top:0;right:0}.ls-rearview .alerts-history h1{margin:0;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:16px}.ls-rearview .alerts-history h2,.ls-rearview .alerts-history p{margin:0;line-height:16px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px}.ls-rearview .alerts-history label{background-image:url("/public/img/alerts_icon.png");background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs{margin-bottom:0;border-bottom:0;clear:both}.ls-rearview .nav-tabs li{margin-bottom:0;margin-left:10px}.ls-rearview .nav-tabs a{padding-top:4px;padding-bottom:4px;background:#656a65;border:0;color:#7e8079;text-transform:uppercase}.ls-rearview .nav-tabs .active a{background:#767a76;border:0;color:#b6b3a6}.ls-rearview .nav-tabs a:hover{background:#767a76;color:#b6b3a6}.ls-rearview .tab-content{padding:10px;background:#767a76;border-radius:4px}.ls-rearview .tab-content form{margin-bottom:0}.ls-rearview .metrics-test{width:488px;float:right}.ls-rearview .small-monitor.red .front{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red{border:0;background:#735854;text-shadow:none}.ls-rearview .expanded-monitor.red .data-view,.ls-rearview .expanded-monitor.red .button-view,.ls-rearview .expanded-monitor.red .tab-content{background:#8f7976}.ls-rearview .expanded-monitor.red .nav-tabs a{background:#816965;color:#917f79}.ls-rearview .expanded-monitor.red .nav-tabs a:hover,.ls-rearview .expanded-monitor.red .nav-tabs .active a{background:#8f7976;color:#b6b3a6}.ls-rearview .nav-tabs .active a.metrics-tab,.ls-rearview .expanded-monitor .nav-tabs a.metrics-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.metrics-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.schedule-tab,.ls-rearview .expanded-monitor .nav-tabs a.schedule-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.schedule-tab{background-image:url("/public/img/schedule_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:25px}.ls-rearview .nav-tabs .active a.alerts-tab,.ls-rearview .expanded-monitor .nav-tabs a.alerts-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.alerts-tab{background-image:url("/public/img/alerts_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:18px}.ls-rearview .nav-tabs .active a.output-tab,.ls-rearview .expanded-monitor .nav-tabs a.output-tab,.ls-rearview .expanded-monitor.red .nav-tabs a.output-tab{background-image:url("/public/img/metrics_icon.png");background-position:5px center;background-repeat:no-repeat;text-indent:22px}.ls-rearview .metrics-schedule .expressions textarea{width:396px;min-height:200px}.ls-rearview .metrics-schedule .metrics-test .metrics textarea{width:459px}.ls-rearview .CodeMirror.error{border-color:#b94a48!important;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 6px rgba(213,147,146,0.8);outline:0 none}.ls-rearview .expressions-metrics .metrics.error label,.ls-rearview .expressions-metrics .expressions.error label{color:#b94a48}.ls-rearview .expressions-metrics .metrics .CodeMirror,.ls-rearview .expressions-metrics .expressions .CodeMirror{width:471px;display:block;visibility:visible;border:1px solid #b6b3a6;border-radius:3px;transition:border .2s linear 0s,box-shadow .2s linear 0s}.ls-rearview .expressions-metrics .metrics .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .expressions-metrics .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .expressions-metrics .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .expressions-metrics fieldset{margin-bottom:16px}.ls-rearview .expressions-metrics fieldset i{font-style:normal;font-weight:normal;font-size:10px}.ls-rearview .metrics-schedule .metrics .CodeMirror,.ls-rearview .metrics-schedule .expressions .CodeMirror{border-radius:3px;display:block;visibility:visible}.ls-rearview .metrics-schedule .metrics .CodeMirror-scroll{border-radius:3px;height:100px}.ls-rearview .metrics-schedule .expressions .CodeMirror-scroll{border-radius:3px;height:196px}.ls-rearview .metrics-schedule .metrics .fullscreen .CodeMirror-scroll,.ls-rearview .metrics-schedule .expressions .fullscreen .CodeMirror-scroll{height:100%}.ls-rearview .ecosystem-application-wrap{z-index:1;position:relative;-webkit-perspective:0;-moz-perspective:0;-o-perspective:0;perspective:0}.ls-rearview .ecosystem-application-wrap .application-tile{margin:0 0 20px 20px;float:left;width:200px;height:200px;cursor:pointer;border-radius:4px;-webkit-transition:-webkit-transform 1s;-moz-transition:-moz-transform 1s;-o-transition:-o-transform 1s;transition:transform 1s;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-o-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform-origin:right center;-moz-transform-origin:right center;-o-transform-origin:right center;transform-origin:right center}.ls-rearview .ecosystem-application-wrap .application-tile.flipped{-webkit-transform:translateX(-100%) rotateY(-180deg);-moz-transform:translateX(-100%) rotateY(-180deg);-ms-transform:translateX(-100%) rotateY(-180deg);-o-transform:translateX(-100%) rotateY(-180deg);transform:translateX(-100%) rotateY(-180deg)}.ls-rearview .ecosystem-application-wrap .application-tile figure{margin:0;display:block;height:100%;width:100%;border-radius:4px;position:absolute;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden}.ls-rearview .ecosystem-application-wrap .application-tile .front{background:#545954}.ls-rearview .ecosystem-application-wrap .application-tile .front p{line-height:40px;text-align:center;color:#fff;text-transform:uppercase;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:18px}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset{margin:0;position:absolute;bottom:0;width:100%;float:right;opacity:0;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .front fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile .front:hover fieldset{opacity:1}.ls-rearview .ecosystem-application-wrap .application-tile .back{background:#f5f4ee;-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-ms-transform:rotateY(180deg);-o-transform:rotateY(180deg);transform:rotateY(180deg)}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset{margin:5px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset input{width:176px}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset .btn-wrap{position:absolute;bottom:0;right:0;width:100%}.ls-rearview .ecosystem-application-wrap .application-tile .back fieldset button{margin-bottom:5px;margin-right:5px;float:right}.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front button,.ls-rearview .ecosystem-application-wrap .application-tile.flipped .front:hover button{visibility:hidden;opacity:0}.ls-rearview .ecosystem-application-wrap .application-tile.red .front{background:#735854}.ls-rearview .add-application .application-name{width:100%}.ls-rearview .add-application .application-name input[type='text']{width:98%}.ls-rearview .alert-wrap{top:-100px;height:auto;left:0;margin-top:0;margin-left:0;display:block;position:fixed;width:100%!important;z-index:1058;-webkit-transition:all 1s;-moz-transition-duration:1s;-webkit-transition-duration:1s;transition-duration:1s}.ls-rearview .alert-wrap.active{-webkit-transform:translateY(150px)!important;-moz-transform:translateY(150px)!important;-ms-transform:translateY(150px)!important;-o-transform:translateY(150px)!important;transform:translateY(150px)!important}.ls-rearview .alert{text-align:center;margin:0 25%;border-radius:4px!important;border:none!important;background-color:rgba(0,0,0,0.7)!important;color:#efc338!important;text-shadow:none;line-height:30px;font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:17px}.ls-rearview .alert-error{color:#cc3e3a!important}.ls-rearview .alert-success{color:#6ea933!important}.ls-rearview .alert-success .close{color:#6ea933!important;opacity:.7!important}.ls-rearview textarea:focus,.ls-rearview input[type="text"]:focus,.ls-rearview input[type="password"]:focus,.ls-rearview input[type="datetime"]:focus,.ls-rearview input[type="datetime-local"]:focus,.ls-rearview input[type="date"]:focus,.ls-rearview input[type="month"]:focus,.ls-rearview input[type="time"]:focus,.ls-rearview input[type="week"]:focus,.ls-rearview input[type="number"]:focus,.ls-rearview input[type="email"]:focus,.ls-rearview input[type="url"]:focus,.ls-rearview input[type="search"]:focus,.ls-rearview input[type="tel"]:focus,.ls-rearview input[type="color"]:focus,.ls-rearview .uneditable-input:focus{border-color:rgba(140,134,110,0.8);box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(75,75,75,0.7);outline:0 none}.ls-rearview .control-group.error input,.ls-rearview .control-group.error select,.ls-rearview .control-group.error textarea{border-color:#b94a48;box-shadow:0 1px 1px rgba(0,0,0,0.075) inset,0 0 8px rgba(185,74,74,0.7)}.ls-rearview .btn-inverse,.ls-rearview .btn-inverse.active,.ls-rearview .btn-inverse:active{color:#b6b3a6}.ls-rearview .CodeMirror-wrap{border-radius:3px!important}.ls-rearview .CodeMirror-wrap pre{white-space:pre-wrap!important;word-break:break-all!important;word-wrap:break-word!important}.ls-rearview .CodeMirror-wrap .CodeMirror-scroll{background:#000}.ls-rearview .CodeMirror-wrap .CodeMirror-gutter{border-top-left-radius:3px;border-bottom-left-radius:3px}.ls-rearview .fullscreen{margin:0;padding:0;display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:9999;border:0 solid #bbb;opacity:1}.ls-rearview .tooltip .tooltip-arrow{display:none!important}.ls-rearview .tooltip .tooltip-inner{max-width:none!important}.ls-rearview .ui-widget{font-family:'ProximaRegular','Trebuchet MS',Tahoma,sans-serif;font-weight:normal;font-size:12px;background:#000!important}.ls-rearview .ui-widget .ui-slider{margin-top:7px}.ls-rearview .ui-widget .ui-timepicker-div dt{font-weight:normal!important}