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,29 @@
1
+ /**
2
+ * @license A class to parse color values
3
+ * @author Stoyan Stefanov <sstoo@gmail.com>
4
+ * @link http://www.phpied.com/rgb-color-parser-in-javascript/
5
+ * Use it if you like it
6
+ *
7
+ */
8
+
9
+ /**
10
+ * @license canvg.js - Javascript SVG parser and renderer on Canvas
11
+ * MIT Licensed
12
+ * Gabe Lerner (gabelerner@gmail.com)
13
+ * http://code.google.com/p/canvg/
14
+ *
15
+ * Requires: rgbcolor.js - http://www.phpied.com/rgb-color-parser-in-javascript/
16
+ *
17
+ */
18
+
19
+ /**
20
+ * @license Highcharts JS v2.3.3 (2012-10-04)
21
+ * CanVGRenderer Extension module
22
+ *
23
+ * (c) 2011-2012 Torstein Hønsi, Erik Olsson
24
+ *
25
+ * License: www.highcharts.com/license
26
+ */
27
+
28
+ function RGBColor(t){this.ok=!1,"#"==t.charAt(0)&&(t=t.substr(1,6)),t=t.replace(/ /g,""),t=t.toLowerCase();var e={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dodgerblue:"1e90ff",feldspar:"d19275",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgrey:"d3d3d3",lightgreen:"90ee90",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslateblue:"8470ff",lightslategray:"778899",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"00ff00",limegreen:"32cd32",linen:"faf0e6",magenta:"ff00ff",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370d8",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"d87093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",red:"ff0000",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",violetred:"d02090",wheat:"f5deb3",white:"ffffff",whitesmoke:"f5f5f5",yellow:"ffff00",yellowgreen:"9acd32"};for(var i in e)t==i&&(t=e[i]);for(var n=[{re:/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,example:["rgb(123, 234, 45)","rgb(255,234,245)"],process:function(t){return[parseInt(t[1]),parseInt(t[2]),parseInt(t[3])]}},{re:/^(\w{2})(\w{2})(\w{2})$/,example:["#00ff00","336699"],process:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/^(\w{1})(\w{1})(\w{1})$/,example:["#fb0","f0f"],process:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}}],s=0;s<n.length;s++){var a=n[s].re,r=n[s].process,o=a.exec(t);o&&(channels=r(o),this.r=channels[0],this.g=channels[1],this.b=channels[2],this.ok=!0)}this.r=this.r<0||isNaN(this.r)?0:this.r>255?255:this.r,this.g=this.g<0||isNaN(this.g)?0:this.g>255?255:this.g,this.b=this.b<0||isNaN(this.b)?0:this.b>255?255:this.b,this.toRGB=function(){return"rgb("+this.r+", "+this.g+", "+this.b+")"},this.toHex=function(){var t=this.r.toString(16),e=this.g.toString(16),i=this.b.toString(16);return 1==t.length&&(t="0"+t),1==e.length&&(e="0"+e),1==i.length&&(i="0"+i),"#"+t+e+i},this.getHelpXML=function(){for(var t=new Array,i=0;i<n.length;i++)for(var s=n[i].example,a=0;a<s.length;a++)t[t.length]=s[a];for(var r in e)t[t.length]=r;var o=document.createElement("ul");o.setAttribute("id","rgbcolor-examples");for(var i=0;i<t.length;i++)try{var l=document.createElement("li"),h=new RGBColor(t[i]),u=document.createElement("div");u.style.cssText="margin: 3px; border: 1px solid black; background:"+h.toHex()+"; "+"color:"+h.toHex(),u.appendChild(document.createTextNode("test"));var f=document.createTextNode(" "+t[i]+" -> "+h.toRGB()+" -> "+h.toHex());l.appendChild(u),l.appendChild(f),o.appendChild(l)}catch(c){}return o}}window.console||(window.console={},window.console.log=function(){},window.console.dir=function(){}),Array.prototype.indexOf||(Array.prototype.indexOf=function(t){for(var e=0;e<this.length;e++)if(this[e]==t)return e;return-1}),function(){function t(){var t={};return t.FRAMERATE=30,t.MAX_VIRTUAL_PIXELS=3e4,t.init=function(e){t.Definitions={},t.Styles={},t.Animations=[],t.Images=[],t.ctx=e,t.ViewPort=new function(){this.viewPorts=[],this.Clear=function(){this.viewPorts=[]},this.SetCurrent=function(t,e){this.viewPorts.push({width:t,height:e})},this.RemoveCurrent=function(){this.viewPorts.pop()},this.Current=function(){return this.viewPorts[this.viewPorts.length-1]},this.width=function(){return this.Current().width},this.height=function(){return this.Current().height},this.ComputeSize=function(t){return null!=t&&"number"==typeof t?t:"x"==t?this.width():"y"==t?this.height():Math.sqrt(Math.pow(this.width(),2)+Math.pow(this.height(),2))/Math.sqrt(2)}}},t.init(),t.ImagesLoaded=function(){for(var e=0;e<t.Images.length;e++)if(!t.Images[e].loaded)return!1;return!0},t.trim=function(t){return t.replace(/^\s+|\s+$/g,"")},t.compressSpaces=function(t){return t.replace(/[\s\r\t\n]+/gm," ")},t.ajax=function(t){var e;return e=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP"),e?(e.open("GET",t,!1),e.send(null),e.responseText):null},t.parseXml=function(t){if(window.DOMParser){var e=new DOMParser;return e.parseFromString(t,"text/xml")}t=t.replace(/<!DOCTYPE svg[^>]*>/,"");var i=new ActiveXObject("Microsoft.XMLDOM");return i.async="false",i.loadXML(t),i},t.Property=function(e,i){this.name=e,this.value=i,this.hasValue=function(){return null!=this.value&&""!==this.value},this.numValue=function(){if(!this.hasValue())return 0;var t=parseFloat(this.value);return(this.value+"").match(/%$/)&&(t/=100),t},this.valueOrDefault=function(t){return this.hasValue()?this.value:t},this.numValueOrDefault=function(t){return this.hasValue()?this.numValue():t};var n=this;this.Color={addOpacity:function(e){var i=n.value;if(null!=e&&""!=e){var s=new RGBColor(n.value);s.ok&&(i="rgba("+s.r+", "+s.g+", "+s.b+", "+e+")")}return new t.Property(n.name,i)}},this.Definition={getDefinition:function(){var e=n.value.replace(/^(url\()?#([^\)]+)\)?$/,"$2");return t.Definitions[e]},isUrl:function(){return 0==n.value.indexOf("url(")},getFillStyle:function(e){var i=this.getDefinition();return null!=i&&i.createGradient?i.createGradient(t.ctx,e):null!=i&&i.createPattern?i.createPattern(t.ctx,e):null}},this.Length={DPI:function(){return 96},EM:function(e){var i=12,n=new t.Property("fontSize",t.Font.Parse(t.ctx.font).fontSize);return n.hasValue()&&(i=n.Length.toPixels(e)),i},toPixels:function(e){if(!n.hasValue())return 0;var i=n.value+"";return i.match(/em$/)?n.numValue()*this.EM(e):i.match(/ex$/)?n.numValue()*this.EM(e)/2:i.match(/px$/)?n.numValue():i.match(/pt$/)?1.25*n.numValue():i.match(/pc$/)?15*n.numValue():i.match(/cm$/)?n.numValue()*this.DPI(e)/2.54:i.match(/mm$/)?n.numValue()*this.DPI(e)/25.4:i.match(/in$/)?n.numValue()*this.DPI(e):i.match(/%$/)?n.numValue()*t.ViewPort.ComputeSize(e):n.numValue()}},this.Time={toMilliseconds:function(){if(!n.hasValue())return 0;var t=n.value+"";return t.match(/s$/)?1e3*n.numValue():t.match(/ms$/)?n.numValue():n.numValue()}},this.Angle={toRadians:function(){if(!n.hasValue())return 0;var t=n.value+"";return t.match(/deg$/)?n.numValue()*(Math.PI/180):t.match(/grad$/)?n.numValue()*(Math.PI/200):t.match(/rad$/)?n.numValue():n.numValue()*(Math.PI/180)}}},t.Font=new function(){this.Styles=["normal","italic","oblique","inherit"],this.Variants=["normal","small-caps","inherit"],this.Weights=["normal","bold","bolder","lighter","100","200","300","400","500","600","700","800","900","inherit"],this.CreateFont=function(e,i,n,s,a,r){var o=null!=r?this.Parse(r):this.CreateFont("","","","","",t.ctx.font);return{fontFamily:a||o.fontFamily,fontSize:s||o.fontSize,fontStyle:e||o.fontStyle,fontWeight:n||o.fontWeight,fontVariant:i||o.fontVariant,toString:function(){return[this.fontStyle,this.fontVariant,this.fontWeight,this.fontSize,this.fontFamily].join(" ")}}};var e=this;this.Parse=function(i){for(var n={},s=t.trim(t.compressSpaces(i||"")).split(" "),a={fontSize:!1,fontStyle:!1,fontWeight:!1,fontVariant:!1},r="",o=0;o<s.length;o++)a.fontStyle||-1==e.Styles.indexOf(s[o])?a.fontVariant||-1==e.Variants.indexOf(s[o])?a.fontWeight||-1==e.Weights.indexOf(s[o])?a.fontSize?"inherit"!=s[o]&&(r+=s[o]):("inherit"!=s[o]&&(n.fontSize=s[o].split("/")[0]),a.fontStyle=a.fontVariant=a.fontWeight=a.fontSize=!0):("inherit"!=s[o]&&(n.fontWeight=s[o]),a.fontStyle=a.fontVariant=a.fontWeight=!0):("inherit"!=s[o]&&(n.fontVariant=s[o]),a.fontStyle=a.fontVariant=!0):("inherit"!=s[o]&&(n.fontStyle=s[o]),a.fontStyle=!0);return""!=r&&(n.fontFamily=r),n}},t.ToNumberArray=function(e){for(var i=t.trim(t.compressSpaces((e||"").replace(/,/g," "))).split(" "),n=0;n<i.length;n++)i[n]=parseFloat(i[n]);return i},t.Point=function(t,e){this.x=t,this.y=e,this.angleTo=function(t){return Math.atan2(t.y-this.y,t.x-this.x)},this.applyTransform=function(t){var e=this.x*t[0]+this.y*t[2]+t[4],i=this.x*t[1]+this.y*t[3]+t[5];this.x=e,this.y=i}},t.CreatePoint=function(e){var i=t.ToNumberArray(e);return new t.Point(i[0],i[1])},t.CreatePath=function(e){for(var i=t.ToNumberArray(e),n=[],s=0;s<i.length;s+=2)n.push(new t.Point(i[s],i[s+1]));return n},t.BoundingBox=function(t,e,n,s){this.x1=Number.NaN,this.y1=Number.NaN,this.x2=Number.NaN,this.y2=Number.NaN,this.x=function(){return this.x1},this.y=function(){return this.y1},this.width=function(){return this.x2-this.x1},this.height=function(){return this.y2-this.y1},this.addPoint=function(t,e){null!=t&&((isNaN(this.x1)||isNaN(this.x2))&&(this.x1=t,this.x2=t),t<this.x1&&(this.x1=t),t>this.x2&&(this.x2=t)),null!=e&&((isNaN(this.y1)||isNaN(this.y2))&&(this.y1=e,this.y2=e),e<this.y1&&(this.y1=e),e>this.y2&&(this.y2=e))},this.addX=function(t){this.addPoint(t,null)},this.addY=function(t){this.addPoint(null,t)},this.addBoundingBox=function(t){this.addPoint(t.x1,t.y1),this.addPoint(t.x2,t.y2)},this.addQuadraticCurve=function(t,e,i,n,s,a){var r=t+2/3*(i-t),o=e+2/3*(n-e),l=r+1/3*(s-t),h=o+1/3*(a-e);this.addBezierCurve(t,e,r,l,o,h,s,a)},this.addBezierCurve=function(t,e,n,s,a,r,o,l){var h=[t,e],u=[n,s],f=[a,r],c=[o,l];for(this.addPoint(h[0],h[1]),this.addPoint(c[0],c[1]),i=0;1>=i;i++){var d=function(t){return Math.pow(1-t,3)*h[i]+3*Math.pow(1-t,2)*t*u[i]+3*(1-t)*Math.pow(t,2)*f[i]+Math.pow(t,3)*c[i]},m=6*h[i]-12*u[i]+6*f[i],p=-3*h[i]+9*u[i]-9*f[i]+3*c[i],g=3*u[i]-3*h[i];if(0!=p){var y=Math.pow(m,2)-4*g*p;if(!(0>y)){var v=(-m+Math.sqrt(y))/(2*p);v>0&&1>v&&(0==i&&this.addX(d(v)),1==i&&this.addY(d(v)));var b=(-m-Math.sqrt(y))/(2*p);b>0&&1>b&&(0==i&&this.addX(d(b)),1==i&&this.addY(d(b)))}}else{if(0==m)continue;var x=-g/m;x>0&&1>x&&(0==i&&this.addX(d(x)),1==i&&this.addY(d(x)))}}},this.isPointInBox=function(t,e){return this.x1<=t&&t<=this.x2&&this.y1<=e&&e<=this.y2},this.addPoint(t,e),this.addPoint(n,s)},t.Transform=function(e){var i=this;this.Type={},this.Type.translate=function(e){this.p=t.CreatePoint(e),this.apply=function(t){t.translate(this.p.x||0,this.p.y||0)},this.applyToPoint=function(t){t.applyTransform([1,0,0,1,this.p.x||0,this.p.y||0])}},this.Type.rotate=function(e){var i=t.ToNumberArray(e);this.angle=new t.Property("angle",i[0]),this.cx=i[1]||0,this.cy=i[2]||0,this.apply=function(t){t.translate(this.cx,this.cy),t.rotate(this.angle.Angle.toRadians()),t.translate(-this.cx,-this.cy)},this.applyToPoint=function(t){var e=this.angle.Angle.toRadians();t.applyTransform([1,0,0,1,this.p.x||0,this.p.y||0]),t.applyTransform([Math.cos(e),Math.sin(e),-Math.sin(e),Math.cos(e),0,0]),t.applyTransform([1,0,0,1,-this.p.x||0,-this.p.y||0])}},this.Type.scale=function(e){this.p=t.CreatePoint(e),this.apply=function(t){t.scale(this.p.x||1,this.p.y||this.p.x||1)},this.applyToPoint=function(t){t.applyTransform([this.p.x||0,0,0,this.p.y||0,0,0])}},this.Type.matrix=function(e){this.m=t.ToNumberArray(e),this.apply=function(t){t.transform(this.m[0],this.m[1],this.m[2],this.m[3],this.m[4],this.m[5])},this.applyToPoint=function(t){t.applyTransform(this.m)}},this.Type.SkewBase=function(e){this.base=i.Type.matrix,this.base(e),this.angle=new t.Property("angle",e)},this.Type.SkewBase.prototype=new this.Type.matrix,this.Type.skewX=function(t){this.base=i.Type.SkewBase,this.base(t),this.m=[1,0,Math.tan(this.angle.Angle.toRadians()),1,0,0]},this.Type.skewX.prototype=new this.Type.SkewBase,this.Type.skewY=function(t){this.base=i.Type.SkewBase,this.base(t),this.m=[1,Math.tan(this.angle.Angle.toRadians()),0,1,0,0]},this.Type.skewY.prototype=new this.Type.SkewBase,this.transforms=[],this.apply=function(t){for(var e=0;e<this.transforms.length;e++)this.transforms[e].apply(t)},this.applyToPoint=function(t){for(var e=0;e<this.transforms.length;e++)this.transforms[e].applyToPoint(t)};for(var n=t.trim(t.compressSpaces(e)).split(/\s(?=[a-z])/),s=0;s<n.length;s++){var a=n[s].split("(")[0],r=n[s].split("(")[1].replace(")",""),o=new this.Type[a](r);this.transforms.push(o)}},t.AspectRatio=function(e,i,n,s,a,r,o,l,h,u){i=t.compressSpaces(i),i=i.replace(/^defer\s/,"");var f=i.split(" ")[0]||"xMidYMid",c=i.split(" ")[1]||"meet",d=n/s,m=a/r,p=Math.min(d,m),g=Math.max(d,m);"meet"==c&&(s*=p,r*=p),"slice"==c&&(s*=g,r*=g),h=new t.Property("refX",h),u=new t.Property("refY",u),h.hasValue()&&u.hasValue()?e.translate(-p*h.Length.toPixels("x"),-p*u.Length.toPixels("y")):(f.match(/^xMid/)&&("meet"==c&&p==m||"slice"==c&&g==m)&&e.translate(n/2-s/2,0),f.match(/YMid$/)&&("meet"==c&&p==d||"slice"==c&&g==d)&&e.translate(0,a/2-r/2),f.match(/^xMax/)&&("meet"==c&&p==m||"slice"==c&&g==m)&&e.translate(n-s,0),f.match(/YMax$/)&&("meet"==c&&p==d||"slice"==c&&g==d)&&e.translate(0,a-r)),"none"==f?e.scale(d,m):"meet"==c?e.scale(p,p):"slice"==c&&e.scale(g,g),e.translate(null==o?0:-o,null==l?0:-l)},t.Element={},t.Element.ElementBase=function(e){if(this.attributes={},this.styles={},this.children=[],this.attribute=function(e,i){var n=this.attributes[e];return null!=n?n:(n=new t.Property(e,""),1==i&&(this.attributes[e]=n),n)},this.style=function(e,i){var n=this.styles[e];if(null!=n)return n;var s=this.attribute(e);if(null!=s&&s.hasValue())return s;var a=this.parent;if(null!=a){var r=a.style(e);if(null!=r&&r.hasValue())return r}return n=new t.Property(e,""),1==i&&(this.styles[e]=n),n},this.render=function(t){if("none"!=this.style("display").value&&"hidden"!=this.attribute("visibility").value){if(t.save(),this.setContext(t),this.attribute("mask").hasValue()){var e=this.attribute("mask").Definition.getDefinition();null!=e&&e.apply(t,this)}else if(this.style("filter").hasValue()){var i=this.style("filter").Definition.getDefinition();null!=i&&i.apply(t,this)}else this.renderChildren(t);this.clearContext(t),t.restore()}},this.setContext=function(){},this.clearContext=function(){},this.renderChildren=function(t){for(var e=0;e<this.children.length;e++)this.children[e].render(t)},this.addChild=function(e,i){var n=e;i&&(n=t.CreateElement(e)),n.parent=this,this.children.push(n)},null!=e&&1==e.nodeType){for(var i=0;i<e.childNodes.length;i++){var n=e.childNodes[i];1==n.nodeType&&this.addChild(n,!0)}for(var i=0;i<e.attributes.length;i++){var s=e.attributes[i];this.attributes[s.nodeName]=new t.Property(s.nodeName,s.nodeValue)}var a=t.Styles[e.nodeName];if(null!=a)for(var r in a)this.styles[r]=a[r];if(this.attribute("class").hasValue())for(var o=t.compressSpaces(this.attribute("class").value).split(" "),l=0;l<o.length;l++){if(a=t.Styles["."+o[l]],null!=a)for(var r in a)this.styles[r]=a[r];if(a=t.Styles[e.nodeName+"."+o[l]],null!=a)for(var r in a)this.styles[r]=a[r]}if(this.attribute("style").hasValue())for(var a=this.attribute("style").value.split(";"),i=0;i<a.length;i++)if(""!=t.trim(a[i])){var h=a[i].split(":"),r=t.trim(h[0]),u=t.trim(h[1]);this.styles[r]=new t.Property(r,u)}this.attribute("id").hasValue()&&null==t.Definitions[this.attribute("id").value]&&(t.Definitions[this.attribute("id").value]=this)}},t.Element.RenderedElementBase=function(e){this.base=t.Element.ElementBase,this.base(e),this.setContext=function(e){if(this.style("fill").Definition.isUrl()){var i=this.style("fill").Definition.getFillStyle(this);null!=i&&(e.fillStyle=i)}else if(this.style("fill").hasValue()){var n=this.style("fill");this.style("fill-opacity").hasValue()&&(n=n.Color.addOpacity(this.style("fill-opacity").value)),e.fillStyle="none"==n.value?"rgba(0,0,0,0)":n.value}if(this.style("stroke").Definition.isUrl()){var i=this.style("stroke").Definition.getFillStyle(this);null!=i&&(e.strokeStyle=i)}else if(this.style("stroke").hasValue()){var s=this.style("stroke");this.style("stroke-opacity").hasValue()&&(s=s.Color.addOpacity(this.style("stroke-opacity").value)),e.strokeStyle="none"==s.value?"rgba(0,0,0,0)":s.value}if(this.style("stroke-width").hasValue()&&(e.lineWidth=this.style("stroke-width").Length.toPixels()),this.style("stroke-linecap").hasValue()&&(e.lineCap=this.style("stroke-linecap").value),this.style("stroke-linejoin").hasValue()&&(e.lineJoin=this.style("stroke-linejoin").value),this.style("stroke-miterlimit").hasValue()&&(e.miterLimit=this.style("stroke-miterlimit").value),"undefined"!=typeof e.font&&(e.font=t.Font.CreateFont(this.style("font-style").value,this.style("font-variant").value,this.style("font-weight").value,this.style("font-size").hasValue()?this.style("font-size").Length.toPixels()+"px":"",this.style("font-family").value).toString()),this.attribute("transform").hasValue()){var a=new t.Transform(this.attribute("transform").value);a.apply(e)}if(this.attribute("clip-path").hasValue()){var r=this.attribute("clip-path").Definition.getDefinition();null!=r&&r.apply(e)}this.style("opacity").hasValue()&&(e.globalAlpha=this.style("opacity").numValue())}},t.Element.RenderedElementBase.prototype=new t.Element.ElementBase,t.Element.PathElementBase=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.path=function(e){return null!=e&&e.beginPath(),new t.BoundingBox},this.renderChildren=function(e){this.path(e),t.Mouse.checkPath(this,e),""!=e.fillStyle&&e.fill(),""!=e.strokeStyle&&e.stroke();var i=this.getMarkers();if(null!=i){if(this.style("marker-start").Definition.isUrl()){var n=this.style("marker-start").Definition.getDefinition();n.render(e,i[0][0],i[0][1])}if(this.style("marker-mid").Definition.isUrl())for(var n=this.style("marker-mid").Definition.getDefinition(),s=1;s<i.length-1;s++)n.render(e,i[s][0],i[s][1]);if(this.style("marker-end").Definition.isUrl()){var n=this.style("marker-end").Definition.getDefinition();n.render(e,i[i.length-1][0],i[i.length-1][1])}}},this.getBoundingBox=function(){return this.path()},this.getMarkers=function(){return null}},t.Element.PathElementBase.prototype=new t.Element.RenderedElementBase,t.Element.svg=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.baseClearContext=this.clearContext,this.clearContext=function(e){this.baseClearContext(e),t.ViewPort.RemoveCurrent()},this.baseSetContext=this.setContext,this.setContext=function(e){e.strokeStyle="rgba(0,0,0,0)",e.lineCap="butt",e.lineJoin="miter",e.miterLimit=4,this.baseSetContext(e),this.attribute("x").hasValue()&&this.attribute("y").hasValue()&&e.translate(this.attribute("x").Length.toPixels("x"),this.attribute("y").Length.toPixels("y"));var i=t.ViewPort.width(),n=t.ViewPort.height();if("undefined"==typeof this.root&&this.attribute("width").hasValue()&&this.attribute("height").hasValue()){i=this.attribute("width").Length.toPixels("x"),n=this.attribute("height").Length.toPixels("y");var s=0,a=0;this.attribute("refX").hasValue()&&this.attribute("refY").hasValue()&&(s=-this.attribute("refX").Length.toPixels("x"),a=-this.attribute("refY").Length.toPixels("y")),e.beginPath(),e.moveTo(s,a),e.lineTo(i,a),e.lineTo(i,n),e.lineTo(s,n),e.closePath(),e.clip()}if(t.ViewPort.SetCurrent(i,n),this.attribute("viewBox").hasValue()){var r=t.ToNumberArray(this.attribute("viewBox").value),o=r[0],l=r[1];i=r[2],n=r[3],t.AspectRatio(e,this.attribute("preserveAspectRatio").value,t.ViewPort.width(),i,t.ViewPort.height(),n,o,l,this.attribute("refX").value,this.attribute("refY").value),t.ViewPort.RemoveCurrent(),t.ViewPort.SetCurrent(r[2],r[3])}}},t.Element.svg.prototype=new t.Element.RenderedElementBase,t.Element.rect=function(e){this.base=t.Element.PathElementBase,this.base(e),this.path=function(e){var i=this.attribute("x").Length.toPixels("x"),n=this.attribute("y").Length.toPixels("y"),s=this.attribute("width").Length.toPixels("x"),a=this.attribute("height").Length.toPixels("y"),r=this.attribute("rx").Length.toPixels("x"),o=this.attribute("ry").Length.toPixels("y");return this.attribute("rx").hasValue()&&!this.attribute("ry").hasValue()&&(o=r),this.attribute("ry").hasValue()&&!this.attribute("rx").hasValue()&&(r=o),null!=e&&(e.beginPath(),e.moveTo(i+r,n),e.lineTo(i+s-r,n),e.quadraticCurveTo(i+s,n,i+s,n+o),e.lineTo(i+s,n+a-o),e.quadraticCurveTo(i+s,n+a,i+s-r,n+a),e.lineTo(i+r,n+a),e.quadraticCurveTo(i,n+a,i,n+a-o),e.lineTo(i,n+o),e.quadraticCurveTo(i,n,i+r,n),e.closePath()),new t.BoundingBox(i,n,i+s,n+a)}},t.Element.rect.prototype=new t.Element.PathElementBase,t.Element.circle=function(e){this.base=t.Element.PathElementBase,this.base(e),this.path=function(e){var i=this.attribute("cx").Length.toPixels("x"),n=this.attribute("cy").Length.toPixels("y"),s=this.attribute("r").Length.toPixels();return null!=e&&(e.beginPath(),e.arc(i,n,s,0,2*Math.PI,!0),e.closePath()),new t.BoundingBox(i-s,n-s,i+s,n+s)}},t.Element.circle.prototype=new t.Element.PathElementBase,t.Element.ellipse=function(e){this.base=t.Element.PathElementBase,this.base(e),this.path=function(e){var i=4*((Math.sqrt(2)-1)/3),n=this.attribute("rx").Length.toPixels("x"),s=this.attribute("ry").Length.toPixels("y"),a=this.attribute("cx").Length.toPixels("x"),r=this.attribute("cy").Length.toPixels("y");return null!=e&&(e.beginPath(),e.moveTo(a,r-s),e.bezierCurveTo(a+i*n,r-s,a+n,r-i*s,a+n,r),e.bezierCurveTo(a+n,r+i*s,a+i*n,r+s,a,r+s),e.bezierCurveTo(a-i*n,r+s,a-n,r+i*s,a-n,r),e.bezierCurveTo(a-n,r-i*s,a-i*n,r-s,a,r-s),e.closePath()),new t.BoundingBox(a-n,r-s,a+n,r+s)}},t.Element.ellipse.prototype=new t.Element.PathElementBase,t.Element.line=function(e){this.base=t.Element.PathElementBase,this.base(e),this.getPoints=function(){return[new t.Point(this.attribute("x1").Length.toPixels("x"),this.attribute("y1").Length.toPixels("y")),new t.Point(this.attribute("x2").Length.toPixels("x"),this.attribute("y2").Length.toPixels("y"))]},this.path=function(e){var i=this.getPoints();return null!=e&&(e.beginPath(),e.moveTo(i[0].x,i[0].y),e.lineTo(i[1].x,i[1].y)),new t.BoundingBox(i[0].x,i[0].y,i[1].x,i[1].y)},this.getMarkers=function(){var t=this.getPoints(),e=t[0].angleTo(t[1]);return[[t[0],e],[t[1],e]]}},t.Element.line.prototype=new t.Element.PathElementBase,t.Element.polyline=function(e){this.base=t.Element.PathElementBase,this.base(e),this.points=t.CreatePath(this.attribute("points").value),this.path=function(e){var i=new t.BoundingBox(this.points[0].x,this.points[0].y);null!=e&&(e.beginPath(),e.moveTo(this.points[0].x,this.points[0].y));for(var n=1;n<this.points.length;n++)i.addPoint(this.points[n].x,this.points[n].y),null!=e&&e.lineTo(this.points[n].x,this.points[n].y);return i},this.getMarkers=function(){for(var t=[],e=0;e<this.points.length-1;e++)t.push([this.points[e],this.points[e].angleTo(this.points[e+1])]);return t.push([this.points[this.points.length-1],t[t.length-1][1]]),t}},t.Element.polyline.prototype=new t.Element.PathElementBase,t.Element.polygon=function(e){this.base=t.Element.polyline,this.base(e),this.basePath=this.path,this.path=function(t){var e=this.basePath(t);return null!=t&&(t.lineTo(this.points[0].x,this.points[0].y),t.closePath()),e}},t.Element.polygon.prototype=new t.Element.polyline,t.Element.path=function(e){this.base=t.Element.PathElementBase,this.base(e);var i=this.attribute("d").value;i=i.replace(/,/gm," "),i=i.replace(/([MmZzLlHhVvCcSsQqTtAa])([MmZzLlHhVvCcSsQqTtAa])/gm,"$1 $2"),i=i.replace(/([MmZzLlHhVvCcSsQqTtAa])([MmZzLlHhVvCcSsQqTtAa])/gm,"$1 $2"),i=i.replace(/([MmZzLlHhVvCcSsQqTtAa])([^\s])/gm,"$1 $2"),i=i.replace(/([^\s])([MmZzLlHhVvCcSsQqTtAa])/gm,"$1 $2"),i=i.replace(/([0-9])([+\-])/gm,"$1 $2"),i=i.replace(/(\.[0-9]*)(\.)/gm,"$1 $2"),i=i.replace(/([Aa](\s+[0-9]+){3})\s+([01])\s*([01])/gm,"$1 $3 $4 "),i=t.compressSpaces(i),i=t.trim(i),this.PathParser=new function(e){this.tokens=e.split(" "),this.reset=function(){this.i=-1,this.command="",this.previousCommand="",this.start=new t.Point(0,0),this.control=new t.Point(0,0),this.current=new t.Point(0,0),this.points=[],this.angles=[]},this.isEnd=function(){return this.i>=this.tokens.length-1},this.isCommandOrEnd=function(){return this.isEnd()?!0:null!=this.tokens[this.i+1].match(/^[A-Za-z]$/)},this.isRelativeCommand=function(){return this.command==this.command.toLowerCase()},this.getToken=function(){return this.i=this.i+1,this.tokens[this.i]},this.getScalar=function(){return parseFloat(this.getToken())},this.nextCommand=function(){this.previousCommand=this.command,this.command=this.getToken()},this.getPoint=function(){var e=new t.Point(this.getScalar(),this.getScalar());return this.makeAbsolute(e)},this.getAsControlPoint=function(){var t=this.getPoint();return this.control=t,t},this.getAsCurrentPoint=function(){var t=this.getPoint();return this.current=t,t},this.getReflectedControlPoint=function(){if("c"!=this.previousCommand.toLowerCase()&&"s"!=this.previousCommand.toLowerCase())return this.current;var e=new t.Point(2*this.current.x-this.control.x,2*this.current.y-this.control.y);return e},this.makeAbsolute=function(t){return this.isRelativeCommand()&&(t.x=this.current.x+t.x,t.y=this.current.y+t.y),t},this.addMarker=function(t,e,i){null!=i&&this.angles.length>0&&null==this.angles[this.angles.length-1]&&(this.angles[this.angles.length-1]=this.points[this.points.length-1].angleTo(i)),this.addMarkerAngle(t,null==e?null:e.angleTo(t))},this.addMarkerAngle=function(t,e){this.points.push(t),this.angles.push(e)},this.getMarkerPoints=function(){return this.points},this.getMarkerAngles=function(){for(var t=0;t<this.angles.length;t++)if(null==this.angles[t])for(var e=t+1;e<this.angles.length;e++)if(null!=this.angles[e]){this.angles[t]=this.angles[e];break}return this.angles}}(i),this.path=function(e){var i=this.PathParser;i.reset();var n=new t.BoundingBox;for(null!=e&&e.beginPath();!i.isEnd();)switch(i.nextCommand(),i.command.toUpperCase()){case"M":var s=i.getAsCurrentPoint();for(i.addMarker(s),n.addPoint(s.x,s.y),null!=e&&e.moveTo(s.x,s.y),i.start=i.current;!i.isCommandOrEnd();){var s=i.getAsCurrentPoint();i.addMarker(s,i.start),n.addPoint(s.x,s.y),null!=e&&e.lineTo(s.x,s.y)}break;case"L":for(;!i.isCommandOrEnd();){var a=i.current,s=i.getAsCurrentPoint();i.addMarker(s,a),n.addPoint(s.x,s.y),null!=e&&e.lineTo(s.x,s.y)}break;case"H":for(;!i.isCommandOrEnd();){var r=new t.Point((i.isRelativeCommand()?i.current.x:0)+i.getScalar(),i.current.y);i.addMarker(r,i.current),i.current=r,n.addPoint(i.current.x,i.current.y),null!=e&&e.lineTo(i.current.x,i.current.y)}break;case"V":for(;!i.isCommandOrEnd();){var r=new t.Point(i.current.x,(i.isRelativeCommand()?i.current.y:0)+i.getScalar());i.addMarker(r,i.current),i.current=r,n.addPoint(i.current.x,i.current.y),null!=e&&e.lineTo(i.current.x,i.current.y)}break;case"C":for(;!i.isCommandOrEnd();){var o=i.current,l=i.getPoint(),h=i.getAsControlPoint(),u=i.getAsCurrentPoint();i.addMarker(u,h,l),n.addBezierCurve(o.x,o.y,l.x,l.y,h.x,h.y,u.x,u.y),null!=e&&e.bezierCurveTo(l.x,l.y,h.x,h.y,u.x,u.y)}break;case"S":for(;!i.isCommandOrEnd();){var o=i.current,l=i.getReflectedControlPoint(),h=i.getAsControlPoint(),u=i.getAsCurrentPoint();i.addMarker(u,h,l),n.addBezierCurve(o.x,o.y,l.x,l.y,h.x,h.y,u.x,u.y),null!=e&&e.bezierCurveTo(l.x,l.y,h.x,h.y,u.x,u.y)}break;case"Q":for(;!i.isCommandOrEnd();){var o=i.current,h=i.getAsControlPoint(),u=i.getAsCurrentPoint();i.addMarker(u,h,h),n.addQuadraticCurve(o.x,o.y,h.x,h.y,u.x,u.y),null!=e&&e.quadraticCurveTo(h.x,h.y,u.x,u.y)}break;case"T":for(;!i.isCommandOrEnd();){var o=i.current,h=i.getReflectedControlPoint();i.control=h;var u=i.getAsCurrentPoint();i.addMarker(u,h,h),n.addQuadraticCurve(o.x,o.y,h.x,h.y,u.x,u.y),null!=e&&e.quadraticCurveTo(h.x,h.y,u.x,u.y)}break;case"A":for(;!i.isCommandOrEnd();){var o=i.current,f=i.getScalar(),c=i.getScalar(),d=i.getScalar()*(Math.PI/180),m=i.getScalar(),p=i.getScalar(),u=i.getAsCurrentPoint(),g=new t.Point(Math.cos(d)*(o.x-u.x)/2+Math.sin(d)*(o.y-u.y)/2,-Math.sin(d)*(o.x-u.x)/2+Math.cos(d)*(o.y-u.y)/2),y=Math.pow(g.x,2)/Math.pow(f,2)+Math.pow(g.y,2)/Math.pow(c,2);y>1&&(f*=Math.sqrt(y),c*=Math.sqrt(y));var v=(m==p?-1:1)*Math.sqrt((Math.pow(f,2)*Math.pow(c,2)-Math.pow(f,2)*Math.pow(g.y,2)-Math.pow(c,2)*Math.pow(g.x,2))/(Math.pow(f,2)*Math.pow(g.y,2)+Math.pow(c,2)*Math.pow(g.x,2)));isNaN(v)&&(v=0);var b=new t.Point(v*f*g.y/c,v*-c*g.x/f),x=new t.Point((o.x+u.x)/2+Math.cos(d)*b.x-Math.sin(d)*b.y,(o.y+u.y)/2+Math.sin(d)*b.x+Math.cos(d)*b.y),w=function(t){return Math.sqrt(Math.pow(t[0],2)+Math.pow(t[1],2))},E=function(t,e){return(t[0]*e[0]+t[1]*e[1])/(w(t)*w(e))},P=function(t,e){return(t[0]*e[1]<t[1]*e[0]?-1:1)*Math.acos(E(t,e))},C=P([1,0],[(g.x-b.x)/f,(g.y-b.y)/c]),B=[(g.x-b.x)/f,(g.y-b.y)/c],T=[(-g.x-b.x)/f,(-g.y-b.y)/c],k=P(B,T);E(B,T)<=-1&&(k=Math.PI),E(B,T)>=1&&(k=0),0==p&&k>0&&(k-=2*Math.PI),1==p&&0>k&&(k+=2*Math.PI);var V=new t.Point(x.x-f*Math.cos((C+k)/2),x.y-c*Math.sin((C+k)/2));if(i.addMarkerAngle(V,(C+k)/2+(0==p?1:-1)*Math.PI/2),i.addMarkerAngle(u,k+(0==p?1:-1)*Math.PI/2),n.addPoint(u.x,u.y),null!=e){var E=f>c?f:c,M=f>c?1:f/c,S=f>c?c/f:1;e.translate(x.x,x.y),e.rotate(d),e.scale(M,S),e.arc(0,0,E,C,C+k,1-p),e.scale(1/M,1/S),e.rotate(-d),e.translate(-x.x,-x.y)}}break;case"Z":null!=e&&e.closePath(),i.current=i.start}return n},this.getMarkers=function(){for(var t=this.PathParser.getMarkerPoints(),e=this.PathParser.getMarkerAngles(),i=[],n=0;n<t.length;n++)i.push([t[n],e[n]]);return i}},t.Element.path.prototype=new t.Element.PathElementBase,t.Element.pattern=function(e){this.base=t.Element.ElementBase,this.base(e),this.createPattern=function(e){var i=new t.Element.svg;i.attributes.viewBox=new t.Property("viewBox",this.attribute("viewBox").value),i.attributes.x=new t.Property("x",this.attribute("x").value),i.attributes.y=new t.Property("y",this.attribute("y").value),i.attributes.width=new t.Property("width",this.attribute("width").value),i.attributes.height=new t.Property("height",this.attribute("height").value),i.children=this.children;var n=document.createElement("canvas");return n.width=this.attribute("width").Length.toPixels("x"),n.height=this.attribute("height").Length.toPixels("y"),i.render(n.getContext("2d")),e.createPattern(n,"repeat")}},t.Element.pattern.prototype=new t.Element.ElementBase,t.Element.marker=function(e){this.base=t.Element.ElementBase,this.base(e),this.baseRender=this.render,this.render=function(e,i,n){e.translate(i.x,i.y),"auto"==this.attribute("orient").valueOrDefault("auto")&&e.rotate(n),"strokeWidth"==this.attribute("markerUnits").valueOrDefault("strokeWidth")&&e.scale(e.lineWidth,e.lineWidth),e.save();var s=new t.Element.svg;s.attributes.viewBox=new t.Property("viewBox",this.attribute("viewBox").value),s.attributes.refX=new t.Property("refX",this.attribute("refX").value),s.attributes.refY=new t.Property("refY",this.attribute("refY").value),s.attributes.width=new t.Property("width",this.attribute("markerWidth").value),s.attributes.height=new t.Property("height",this.attribute("markerHeight").value),s.attributes.fill=new t.Property("fill",this.attribute("fill").valueOrDefault("black")),s.attributes.stroke=new t.Property("stroke",this.attribute("stroke").valueOrDefault("none")),s.children=this.children,s.render(e),e.restore(),"strokeWidth"==this.attribute("markerUnits").valueOrDefault("strokeWidth")&&e.scale(1/e.lineWidth,1/e.lineWidth),"auto"==this.attribute("orient").valueOrDefault("auto")&&e.rotate(-n),e.translate(-i.x,-i.y)
29
+ }},t.Element.marker.prototype=new t.Element.ElementBase,t.Element.defs=function(e){this.base=t.Element.ElementBase,this.base(e),this.render=function(){}},t.Element.defs.prototype=new t.Element.ElementBase,t.Element.GradientBase=function(e){this.base=t.Element.ElementBase,this.base(e),this.gradientUnits=this.attribute("gradientUnits").valueOrDefault("objectBoundingBox"),this.stops=[];for(var i=0;i<this.children.length;i++){var n=this.children[i];this.stops.push(n)}this.getGradient=function(){},this.createGradient=function(e,i){var n=this;this.attribute("xlink:href").hasValue()&&(n=this.attribute("xlink:href").Definition.getDefinition());for(var s=this.getGradient(e,i),a=0;a<n.stops.length;a++)s.addColorStop(n.stops[a].offset,n.stops[a].color);if(this.attribute("gradientTransform").hasValue()){var r=t.ViewPort.viewPorts[0],o=new t.Element.rect;o.attributes.x=new t.Property("x",-t.MAX_VIRTUAL_PIXELS/3),o.attributes.y=new t.Property("y",-t.MAX_VIRTUAL_PIXELS/3),o.attributes.width=new t.Property("width",t.MAX_VIRTUAL_PIXELS),o.attributes.height=new t.Property("height",t.MAX_VIRTUAL_PIXELS);var l=new t.Element.g;l.attributes.transform=new t.Property("transform",this.attribute("gradientTransform").value),l.children=[o];var h=new t.Element.svg;h.attributes.x=new t.Property("x",0),h.attributes.y=new t.Property("y",0),h.attributes.width=new t.Property("width",r.width),h.attributes.height=new t.Property("height",r.height),h.children=[l];var u=document.createElement("canvas");u.width=r.width,u.height=r.height;var f=u.getContext("2d");return f.fillStyle=s,h.render(f),f.createPattern(u,"no-repeat")}return s}},t.Element.GradientBase.prototype=new t.Element.ElementBase,t.Element.linearGradient=function(e){this.base=t.Element.GradientBase,this.base(e),this.getGradient=function(t,e){var i=e.getBoundingBox(),n="objectBoundingBox"==this.gradientUnits?i.x()+i.width()*this.attribute("x1").numValue():this.attribute("x1").Length.toPixels("x"),s="objectBoundingBox"==this.gradientUnits?i.y()+i.height()*this.attribute("y1").numValue():this.attribute("y1").Length.toPixels("y"),a="objectBoundingBox"==this.gradientUnits?i.x()+i.width()*this.attribute("x2").numValue():this.attribute("x2").Length.toPixels("x"),r="objectBoundingBox"==this.gradientUnits?i.y()+i.height()*this.attribute("y2").numValue():this.attribute("y2").Length.toPixels("y");return t.createLinearGradient(n,s,a,r)}},t.Element.linearGradient.prototype=new t.Element.GradientBase,t.Element.radialGradient=function(e){this.base=t.Element.GradientBase,this.base(e),this.getGradient=function(t,e){var i=e.getBoundingBox(),n="objectBoundingBox"==this.gradientUnits?i.x()+i.width()*this.attribute("cx").numValue():this.attribute("cx").Length.toPixels("x"),s="objectBoundingBox"==this.gradientUnits?i.y()+i.height()*this.attribute("cy").numValue():this.attribute("cy").Length.toPixels("y"),a=n,r=s;this.attribute("fx").hasValue()&&(a="objectBoundingBox"==this.gradientUnits?i.x()+i.width()*this.attribute("fx").numValue():this.attribute("fx").Length.toPixels("x")),this.attribute("fy").hasValue()&&(r="objectBoundingBox"==this.gradientUnits?i.y()+i.height()*this.attribute("fy").numValue():this.attribute("fy").Length.toPixels("y"));var o="objectBoundingBox"==this.gradientUnits?(i.width()+i.height())/2*this.attribute("r").numValue():this.attribute("r").Length.toPixels();return t.createRadialGradient(a,r,0,n,s,o)}},t.Element.radialGradient.prototype=new t.Element.GradientBase,t.Element.stop=function(e){this.base=t.Element.ElementBase,this.base(e),this.offset=this.attribute("offset").numValue();var i=this.style("stop-color");this.style("stop-opacity").hasValue()&&(i=i.Color.addOpacity(this.style("stop-opacity").value)),this.color=i.value},t.Element.stop.prototype=new t.Element.ElementBase,t.Element.AnimateBase=function(e){this.base=t.Element.ElementBase,this.base(e),t.Animations.push(this),this.duration=0,this.begin=this.attribute("begin").Time.toMilliseconds(),this.maxDuration=this.begin+this.attribute("dur").Time.toMilliseconds(),this.getProperty=function(){var t=this.attribute("attributeType").value,e=this.attribute("attributeName").value;return"CSS"==t?this.parent.style(e,!0):this.parent.attribute(e,!0)},this.initialValue=null,this.removed=!1,this.calcValue=function(){return""},this.update=function(t){if(null==this.initialValue&&(this.initialValue=this.getProperty().value),this.duration>this.maxDuration){if("indefinite"!=this.attribute("repeatCount").value)return"remove"!=this.attribute("fill").valueOrDefault("remove")||this.removed?!1:(this.removed=!0,this.getProperty().value=this.initialValue,!0);this.duration=0}this.duration=this.duration+t;var e=!1;if(this.begin<this.duration){var i=this.calcValue();if(this.attribute("type").hasValue()){var n=this.attribute("type").value;i=n+"("+i+")"}this.getProperty().value=i,e=!0}return e},this.progress=function(){return(this.duration-this.begin)/(this.maxDuration-this.begin)}},t.Element.AnimateBase.prototype=new t.Element.ElementBase,t.Element.animate=function(e){this.base=t.Element.AnimateBase,this.base(e),this.calcValue=function(){var t=this.attribute("from").numValue(),e=this.attribute("to").numValue();return t+(e-t)*this.progress()}},t.Element.animate.prototype=new t.Element.AnimateBase,t.Element.animateColor=function(e){this.base=t.Element.AnimateBase,this.base(e),this.calcValue=function(){var t=new RGBColor(this.attribute("from").value),e=new RGBColor(this.attribute("to").value);if(t.ok&&e.ok){var i=t.r+(e.r-t.r)*this.progress(),n=t.g+(e.g-t.g)*this.progress(),s=t.b+(e.b-t.b)*this.progress();return"rgb("+parseInt(i,10)+","+parseInt(n,10)+","+parseInt(s,10)+")"}return this.attribute("from").value}},t.Element.animateColor.prototype=new t.Element.AnimateBase,t.Element.animateTransform=function(e){this.base=t.Element.animate,this.base(e)},t.Element.animateTransform.prototype=new t.Element.animate,t.Element.font=function(e){this.base=t.Element.ElementBase,this.base(e),this.horizAdvX=this.attribute("horiz-adv-x").numValue(),this.isRTL=!1,this.isArabic=!1,this.fontFace=null,this.missingGlyph=null,this.glyphs=[];for(var i=0;i<this.children.length;i++){var n=this.children[i];"font-face"==n.type?(this.fontFace=n,n.style("font-family").hasValue()&&(t.Definitions[n.style("font-family").value]=this)):"missing-glyph"==n.type?this.missingGlyph=n:"glyph"==n.type&&(""!=n.arabicForm?(this.isRTL=!0,this.isArabic=!0,"undefined"==typeof this.glyphs[n.unicode]&&(this.glyphs[n.unicode]=[]),this.glyphs[n.unicode][n.arabicForm]=n):this.glyphs[n.unicode]=n)}},t.Element.font.prototype=new t.Element.ElementBase,t.Element.fontface=function(e){this.base=t.Element.ElementBase,this.base(e),this.ascent=this.attribute("ascent").value,this.descent=this.attribute("descent").value,this.unitsPerEm=this.attribute("units-per-em").numValue()},t.Element.fontface.prototype=new t.Element.ElementBase,t.Element.missingglyph=function(e){this.base=t.Element.path,this.base(e),this.horizAdvX=0},t.Element.missingglyph.prototype=new t.Element.path,t.Element.glyph=function(e){this.base=t.Element.path,this.base(e),this.horizAdvX=this.attribute("horiz-adv-x").numValue(),this.unicode=this.attribute("unicode").value,this.arabicForm=this.attribute("arabic-form").value},t.Element.glyph.prototype=new t.Element.path,t.Element.text=function(e){if(this.base=t.Element.RenderedElementBase,this.base(e),null!=e){this.children=[];for(var i=0;i<e.childNodes.length;i++){var n=e.childNodes[i];1==n.nodeType?this.addChild(n,!0):3==n.nodeType&&this.addChild(new t.Element.tspan(n),!1)}}this.baseSetContext=this.setContext,this.setContext=function(t){this.baseSetContext(t),this.style("dominant-baseline").hasValue()&&(t.textBaseline=this.style("dominant-baseline").value),this.style("alignment-baseline").hasValue()&&(t.textBaseline=this.style("alignment-baseline").value)},this.renderChildren=function(t){for(var e=this.style("text-anchor").valueOrDefault("start"),i=this.attribute("x").Length.toPixels("x"),n=this.attribute("y").Length.toPixels("y"),s=0;s<this.children.length;s++){var a=this.children[s];a.attribute("x").hasValue()?a.x=a.attribute("x").Length.toPixels("x"):(a.attribute("dx").hasValue()&&(i+=a.attribute("dx").Length.toPixels("x")),a.x=i);var r=a.measureText(t);if("start"!=e&&(0==s||a.attribute("x").hasValue())){for(var o=r,l=s+1;l<this.children.length;l++){var h=this.children[l];if(h.attribute("x").hasValue())break;o+=h.measureText(t)}a.x-="end"==e?o:o/2}i=a.x+r,a.attribute("y").hasValue()?a.y=a.attribute("y").Length.toPixels("y"):(a.attribute("dy").hasValue()&&(n+=a.attribute("dy").Length.toPixels("y")),a.y=n),n=a.y,a.render(t)}}},t.Element.text.prototype=new t.Element.RenderedElementBase,t.Element.TextElementBase=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.getGlyph=function(t,e,i){var n=e[i],s=null;if(t.isArabic){var a="isolated";(0==i||" "==e[i-1])&&i<e.length-2&&" "!=e[i+1]&&(a="terminal"),i>0&&" "!=e[i-1]&&i<e.length-2&&" "!=e[i+1]&&(a="medial"),i>0&&" "!=e[i-1]&&(i==e.length-1||" "==e[i+1])&&(a="initial"),"undefined"!=typeof t.glyphs[n]&&(s=t.glyphs[n][a],null==s&&"glyph"==t.glyphs[n].type&&(s=t.glyphs[n]))}else s=t.glyphs[n];return null==s&&(s=t.missingGlyph),s},this.renderChildren=function(e){var i=this.parent.style("font-family").Definition.getDefinition();if(null==i)""!=e.strokeStyle&&e.strokeText(t.compressSpaces(this.getText()),this.x,this.y),""!=e.fillStyle&&e.fillText(t.compressSpaces(this.getText()),this.x,this.y);else{var n=this.parent.style("font-size").numValueOrDefault(t.Font.Parse(t.ctx.font).fontSize),s=this.parent.style("font-style").valueOrDefault(t.Font.Parse(t.ctx.font).fontStyle),a=this.getText();i.isRTL&&(a=a.split("").reverse().join(""));for(var r=t.ToNumberArray(this.parent.attribute("dx").value),o=0;o<a.length;o++){var l=this.getGlyph(i,a,o),h=n/i.fontFace.unitsPerEm;e.translate(this.x,this.y),e.scale(h,-h);var u=e.lineWidth;e.lineWidth=e.lineWidth*i.fontFace.unitsPerEm/n,"italic"==s&&e.transform(1,0,.4,1,0,0),l.render(e),"italic"==s&&e.transform(1,0,-.4,1,0,0),e.lineWidth=u,e.scale(1/h,-1/h),e.translate(-this.x,-this.y),this.x+=n*(l.horizAdvX||i.horizAdvX)/i.fontFace.unitsPerEm,"undefined"==typeof r[o]||isNaN(r[o])||(this.x+=r[o])}}},this.getText=function(){},this.measureText=function(e){var i=this.parent.style("font-family").Definition.getDefinition();if(null!=i){var n=this.parent.style("font-size").numValueOrDefault(t.Font.Parse(t.ctx.font).fontSize),s=0,a=this.getText();i.isRTL&&(a=a.split("").reverse().join(""));for(var r=t.ToNumberArray(this.parent.attribute("dx").value),o=0;o<a.length;o++){var l=this.getGlyph(i,a,o);s+=(l.horizAdvX||i.horizAdvX)*n/i.fontFace.unitsPerEm,"undefined"==typeof r[o]||isNaN(r[o])||(s+=r[o])}return s}var h=t.compressSpaces(this.getText());if(!e.measureText)return 10*h.length;e.save(),this.setContext(e);var u=e.measureText(h).width;return e.restore(),u}},t.Element.TextElementBase.prototype=new t.Element.RenderedElementBase,t.Element.tspan=function(e){this.base=t.Element.TextElementBase,this.base(e),this.text=3==e.nodeType?e.nodeValue:e.childNodes.length>0?e.childNodes[0].nodeValue:e.text,this.getText=function(){return this.text}},t.Element.tspan.prototype=new t.Element.TextElementBase,t.Element.tref=function(e){this.base=t.Element.TextElementBase,this.base(e),this.getText=function(){var t=this.attribute("xlink:href").Definition.getDefinition();return null!=t?t.children[0].getText():void 0}},t.Element.tref.prototype=new t.Element.TextElementBase,t.Element.a=function(e){this.base=t.Element.TextElementBase,this.base(e),this.hasText=!0;for(var i=0;i<e.childNodes.length;i++)3!=e.childNodes[i].nodeType&&(this.hasText=!1);this.text=this.hasText?e.childNodes[0].nodeValue:"",this.getText=function(){return this.text},this.baseRenderChildren=this.renderChildren,this.renderChildren=function(e){if(this.hasText){this.baseRenderChildren(e);var i=new t.Property("fontSize",t.Font.Parse(t.ctx.font).fontSize);t.Mouse.checkBoundingBox(this,new t.BoundingBox(this.x,this.y-i.Length.toPixels("y"),this.x+this.measureText(e),this.y))}else{var n=new t.Element.g;n.children=this.children,n.parent=this,n.render(e)}},this.onclick=function(){window.open(this.attribute("xlink:href").value)},this.onmousemove=function(){t.ctx.canvas.style.cursor="pointer"}},t.Element.a.prototype=new t.Element.TextElementBase,t.Element.image=function(e){this.base=t.Element.RenderedElementBase,this.base(e),t.Images.push(this),this.img=document.createElement("img"),this.loaded=!1;var i=this;this.img.onload=function(){i.loaded=!0},this.img.src=this.attribute("xlink:href").value,this.renderChildren=function(e){var i=this.attribute("x").Length.toPixels("x"),n=this.attribute("y").Length.toPixels("y"),s=this.attribute("width").Length.toPixels("x"),a=this.attribute("height").Length.toPixels("y");0!=s&&0!=a&&(e.save(),e.translate(i,n),t.AspectRatio(e,this.attribute("preserveAspectRatio").value,s,this.img.width,a,this.img.height,0,0),e.drawImage(this.img,0,0),e.restore())}},t.Element.image.prototype=new t.Element.RenderedElementBase,t.Element.g=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.getBoundingBox=function(){for(var e=new t.BoundingBox,i=0;i<this.children.length;i++)e.addBoundingBox(this.children[i].getBoundingBox());return e}},t.Element.g.prototype=new t.Element.RenderedElementBase,t.Element.symbol=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.baseSetContext=this.setContext,this.setContext=function(e){if(this.baseSetContext(e),this.attribute("viewBox").hasValue()){var i=t.ToNumberArray(this.attribute("viewBox").value),n=i[0],s=i[1];width=i[2],height=i[3],t.AspectRatio(e,this.attribute("preserveAspectRatio").value,this.attribute("width").Length.toPixels("x"),width,this.attribute("height").Length.toPixels("y"),height,n,s),t.ViewPort.SetCurrent(i[2],i[3])}}},t.Element.symbol.prototype=new t.Element.RenderedElementBase,t.Element.style=function(e){this.base=t.Element.ElementBase,this.base(e);var i=e.childNodes[0].nodeValue+(e.childNodes.length>1?e.childNodes[1].nodeValue:"");i=i.replace(/(\/\*([^*]|[\r\n]|(\*+([^*\/]|[\r\n])))*\*+\/)|(^[\s]*\/\/.*)/gm,""),i=t.compressSpaces(i);for(var n=i.split("}"),s=0;s<n.length;s++)if(""!=t.trim(n[s]))for(var a=n[s].split("{"),r=a[0].split(","),o=a[1].split(";"),l=0;l<r.length;l++){var h=t.trim(r[l]);if(""!=h){for(var u={},f=0;f<o.length;f++){var c=o[f].indexOf(":"),d=o[f].substr(0,c),m=o[f].substr(c+1,o[f].length-c);null!=d&&null!=m&&(u[t.trim(d)]=new t.Property(t.trim(d),t.trim(m)))}if(t.Styles[h]=u,"@font-face"==h)for(var p=u["font-family"].value.replace(/"/g,""),g=u.src.value.split(","),y=0;y<g.length;y++)if(g[y].indexOf('format("svg")')>0)for(var v=g[y].indexOf("url"),b=g[y].indexOf(")",v),x=g[y].substr(v+5,b-v-6),w=t.parseXml(t.ajax(x)),E=w.getElementsByTagName("font"),P=0;P<E.length;P++){var C=t.CreateElement(E[P]);t.Definitions[p]=C}}}},t.Element.style.prototype=new t.Element.ElementBase,t.Element.use=function(e){this.base=t.Element.RenderedElementBase,this.base(e),this.baseSetContext=this.setContext,this.setContext=function(t){this.baseSetContext(t),this.attribute("x").hasValue()&&t.translate(this.attribute("x").Length.toPixels("x"),0),this.attribute("y").hasValue()&&t.translate(0,this.attribute("y").Length.toPixels("y"))},this.getDefinition=function(){var t=this.attribute("xlink:href").Definition.getDefinition();return this.attribute("width").hasValue()&&(t.attribute("width",!0).value=this.attribute("width").value),this.attribute("height").hasValue()&&(t.attribute("height",!0).value=this.attribute("height").value),t},this.path=function(t){var e=this.getDefinition();null!=e&&e.path(t)},this.renderChildren=function(t){var e=this.getDefinition();null!=e&&e.render(t)}},t.Element.use.prototype=new t.Element.RenderedElementBase,t.Element.mask=function(e){this.base=t.Element.ElementBase,this.base(e),this.apply=function(t,e){var i=this.attribute("x").Length.toPixels("x"),n=this.attribute("y").Length.toPixels("y"),s=this.attribute("width").Length.toPixels("x"),a=this.attribute("height").Length.toPixels("y"),r=e.attribute("mask").value;e.attribute("mask").value="";var o=document.createElement("canvas");o.width=i+s,o.height=n+a;var l=o.getContext("2d");this.renderChildren(l);var h=document.createElement("canvas");h.width=i+s,h.height=n+a;var u=h.getContext("2d");e.render(u),u.globalCompositeOperation="destination-in",u.fillStyle=l.createPattern(o,"no-repeat"),u.fillRect(0,0,i+s,n+a),t.fillStyle=u.createPattern(h,"no-repeat"),t.fillRect(0,0,i+s,n+a),e.attribute("mask").value=r},this.render=function(){}},t.Element.mask.prototype=new t.Element.ElementBase,t.Element.clipPath=function(e){this.base=t.Element.ElementBase,this.base(e),this.apply=function(t){for(var e=0;e<this.children.length;e++)this.children[e].path&&(this.children[e].path(t),t.clip())},this.render=function(){}},t.Element.clipPath.prototype=new t.Element.ElementBase,t.Element.filter=function(e){this.base=t.Element.ElementBase,this.base(e),this.apply=function(t,e){var i=e.getBoundingBox(),n=this.attribute("x").Length.toPixels("x"),s=this.attribute("y").Length.toPixels("y");(0==n||0==s)&&(n=i.x1,s=i.y1);var a=this.attribute("width").Length.toPixels("x"),r=this.attribute("height").Length.toPixels("y");(0==a||0==r)&&(a=i.width(),r=i.height());var o=e.style("filter").value;e.style("filter").value="";var l=.2,h=l*a,u=l*r,f=document.createElement("canvas");f.width=a+2*h,f.height=r+2*u;var c=f.getContext("2d");c.translate(-n+h,-s+u),e.render(c);for(var d=0;d<this.children.length;d++)this.children[d].apply(c,0,0,a+2*h,r+2*u);t.drawImage(f,0,0,a+2*h,r+2*u,n-h,s-u,a+2*h,r+2*u),e.style("filter",!0).value=o},this.render=function(){}},t.Element.filter.prototype=new t.Element.ElementBase,t.Element.feGaussianBlur=function(e){function i(t){t=Math.max(t,.01);var e=Math.ceil(4*t)+1;mask=[];for(var i=0;e>i;i++)mask[i]=Math.exp(-.5*(i/t)*(i/t));return mask}function n(t){for(var e=0,i=1;i<t.length;i++)e+=Math.abs(t[i]);e=2*e+Math.abs(t[0]);for(var i=0;i<t.length;i++)t[i]/=e;return t}function s(t,e,i,n,s){for(var o=0;s>o;o++)for(var l=0;n>l;l++)for(var h=a(t,l,o,n,s,3)/255,u=0;4>u;u++){for(var f=i[0]*(0==h?255:a(t,l,o,n,s,u))*(0==h||3==u?1:h),c=1;c<i.length;c++){var d=a(t,Math.max(l-c,0),o,n,s,3)/255,m=a(t,Math.min(l+c,n-1),o,n,s,3)/255;f+=i[c]*((0==d?255:a(t,Math.max(l-c,0),o,n,s,u))*(0==d||3==u?1:d)+(0==m?255:a(t,Math.min(l+c,n-1),o,n,s,u))*(0==m||3==u?1:m))}r(e,o,l,s,n,u,f)}}function a(t,e,i,n,s,a){return t[4*i*n+4*e+a]}function r(t,e,i,n,s,a,r){t[4*i*n+4*e+a]=r}function o(t,e,a,r){var o=t.getImageData(0,0,e,a),l=i(r);l=n(l),tmp=[],s(o.data,tmp,l,e,a),s(tmp,o.data,l,a,e),t.clearRect(0,0,e,a),t.putImageData(o,0,0)}this.base=t.Element.ElementBase,this.base(e),this.apply=function(t,e,i,n,s){o(t,n,s,this.attribute("stdDeviation").numValue())}},t.Element.filter.prototype=new t.Element.feGaussianBlur,t.Element.title=function(){},t.Element.title.prototype=new t.Element.ElementBase,t.Element.desc=function(){},t.Element.desc.prototype=new t.Element.ElementBase,t.Element.MISSING=function(t){console.log("ERROR: Element '"+t.nodeName+"' not yet implemented.")},t.Element.MISSING.prototype=new t.Element.ElementBase,t.CreateElement=function(e){var i=e.nodeName.replace(/^[^:]+:/,"");i=i.replace(/\-/g,"");var n=null;return n="undefined"!=typeof t.Element[i]?new t.Element[i](e):new t.Element.MISSING(e),n.type=e.nodeName,n},t.load=function(e,i){t.loadXml(e,t.ajax(i))},t.loadXml=function(e,i){t.loadXmlDoc(e,t.parseXml(i))},t.loadXmlDoc=function(e,i){t.init(e);var n=function(t){for(var i=e.canvas;i;)t.x-=i.offsetLeft,t.y-=i.offsetTop,i=i.offsetParent;return window.scrollX&&(t.x+=window.scrollX),window.scrollY&&(t.y+=window.scrollY),t};1!=t.opts.ignoreMouse&&(e.canvas.onclick=function(e){var i=n(new t.Point(null!=e?e.clientX:event.clientX,null!=e?e.clientY:event.clientY));t.Mouse.onclick(i.x,i.y)},e.canvas.onmousemove=function(e){var i=n(new t.Point(null!=e?e.clientX:event.clientX,null!=e?e.clientY:event.clientY));t.Mouse.onmousemove(i.x,i.y)});var s=t.CreateElement(i.documentElement);s.root=!0;var a=!0,r=function(){t.ViewPort.Clear(),e.canvas.parentNode&&t.ViewPort.SetCurrent(e.canvas.parentNode.clientWidth,e.canvas.parentNode.clientHeight),1!=t.opts.ignoreDimensions&&(s.style("width").hasValue()&&(e.canvas.width=s.style("width").Length.toPixels("x"),e.canvas.style.width=e.canvas.width+"px"),s.style("height").hasValue()&&(e.canvas.height=s.style("height").Length.toPixels("y"),e.canvas.style.height=e.canvas.height+"px"));var i=e.canvas.clientWidth||e.canvas.width,n=e.canvas.clientHeight||e.canvas.height;if(t.ViewPort.SetCurrent(i,n),null!=t.opts&&null!=t.opts.offsetX&&(s.attribute("x",!0).value=t.opts.offsetX),null!=t.opts&&null!=t.opts.offsetY&&(s.attribute("y",!0).value=t.opts.offsetY),null!=t.opts&&null!=t.opts.scaleWidth&&null!=t.opts.scaleHeight){var r=1,o=1;s.attribute("width").hasValue()&&(r=s.attribute("width").Length.toPixels("x")/t.opts.scaleWidth),s.attribute("height").hasValue()&&(o=s.attribute("height").Length.toPixels("y")/t.opts.scaleHeight),s.attribute("width",!0).value=t.opts.scaleWidth,s.attribute("height",!0).value=t.opts.scaleHeight,s.attribute("viewBox",!0).value="0 0 "+i*r+" "+n*o,s.attribute("preserveAspectRatio",!0).value="none"}1!=t.opts.ignoreClear&&e.clearRect(0,0,i,n),s.render(e),a&&(a=!1,null!=t.opts&&"function"==typeof t.opts.renderCallback&&t.opts.renderCallback())},o=!0;t.ImagesLoaded()&&(o=!1,r()),t.intervalID=setInterval(function(){var e=!1;if(o&&t.ImagesLoaded()&&(o=!1,e=!0),1!=t.opts.ignoreMouse&&(e|=t.Mouse.hasEvents()),1!=t.opts.ignoreAnimation)for(var i=0;i<t.Animations.length;i++)e|=t.Animations[i].update(1e3/t.FRAMERATE);null!=t.opts&&"function"==typeof t.opts.forceRedraw&&1==t.opts.forceRedraw()&&(e=!0),e&&(r(),t.Mouse.runEvents())},1e3/t.FRAMERATE)},t.stop=function(){t.intervalID&&clearInterval(t.intervalID)},t.Mouse=new function(){this.events=[],this.hasEvents=function(){return 0!=this.events.length},this.onclick=function(t,e){this.events.push({type:"onclick",x:t,y:e,run:function(t){t.onclick&&t.onclick()}})},this.onmousemove=function(t,e){this.events.push({type:"onmousemove",x:t,y:e,run:function(t){t.onmousemove&&t.onmousemove()}})},this.eventElements=[],this.checkPath=function(t,e){for(var i=0;i<this.events.length;i++){var n=this.events[i];e.isPointInPath&&e.isPointInPath(n.x,n.y)&&(this.eventElements[i]=t)}},this.checkBoundingBox=function(t,e){for(var i=0;i<this.events.length;i++){var n=this.events[i];e.isPointInBox(n.x,n.y)&&(this.eventElements[i]=t)}},this.runEvents=function(){t.ctx.canvas.style.cursor="";for(var e=0;e<this.events.length;e++)for(var i=this.events[e],n=this.eventElements[e];n;)i.run(n),n=n.parent;this.events=[],this.eventElements=[]}},t}this.canvg=function(e,i,n){if(null!=e||null!=i||null!=n){n=n||{},"string"==typeof e&&(e=document.getElementById(e));var s;null==e.svg?(s=t(),e.svg=s):(s=e.svg,s.stop()),s.opts=n;var a=e.getContext("2d");"undefined"!=typeof i.documentElement?s.loadXmlDoc(a,i):"<"==i.substr(0,1)?s.loadXml(a,i):s.load(a,i)}else for(var r=document.getElementsByTagName("svg"),o=0;o<r.length;o++){var l=r[o],h=document.createElement("canvas");h.width=l.clientWidth,h.height=l.clientHeight,l.parentNode.insertBefore(h,l),l.parentNode.removeChild(l);var u=document.createElement("div");u.appendChild(l),canvg(h,u.innerHTML)}}}(),CanvasRenderingContext2D&&(CanvasRenderingContext2D.prototype.drawSvg=function(t,e,i,n,s){canvg(this.canvas,t,{ignoreMouse:!0,ignoreAnimation:!0,ignoreDimensions:!0,ignoreClear:!0,offsetX:e,offsetY:i,scaleWidth:n,scaleHeight:s})}),function(t){var e,i="div",n="absolute",s="relative",a="hidden",r="visible",o="px",l=t.css,h=t.CanVGRenderer,u=t.SVGRenderer,f=t.extend,c=t.merge,d=t.addEvent,m=t.createElement,p=t.discardElement;f(h.prototype,u.prototype),f(h.prototype,{create:function(t,e,i,n){this.setContainer(e,i,n),this.configure(t)},setContainer:function(t,r,o){var l,h=t.style,u=t.parentNode,f=h.left,c=h.top,d=t.offsetWidth,p=t.offsetHeight,g={visibility:a,position:n};this.init.apply(this,[t,r,o]),l=m("canvas",{width:d,height:p},{position:s,left:f,top:c},t),this.canvas=l,this.ttLine=m(i,null,g,u),this.ttDiv=m(i,null,g,u),this.ttTimer=e;var y=m(i,{width:d,height:p},{visibility:a,left:f,top:c},u);this.hiddenSvg=y,y.appendChild(this.box)},configure:function(t){var i=this,n=t.options.tooltip,s=n.borderWidth,h=i.ttDiv,u=n.style,f=i.ttLine,m=parseInt(u.padding,10);u=c(u,{padding:m+o,"background-color":n.backgroundColor,"border-style":"solid","border-width":s+o,"border-radius":n.borderRadius+o}),n.shadow&&(u=c(u,{"box-shadow":"1px 1px 3px gray","-webkit-box-shadow":"1px 1px 3px gray"})),l(h,u),l(f,{"border-left":"1px solid darkgray"}),d(t,"tooltipRefresh",function(n){var s,u=t.container,c=u.offsetLeft,d=u.offsetTop;h.innerHTML=n.text,s=t.tooltip.getPosition(h.offsetWidth,h.offsetHeight,{plotX:n.x,plotY:n.y}),l(h,{visibility:r,left:s.x+o,top:s.y+o,"border-color":n.borderColor}),l(f,{visibility:r,left:c+n.x+o,top:d+t.plotTop+o,height:t.plotHeight+o}),i.ttTimer!==e&&clearTimeout(i.ttTimer),i.ttTimer=setTimeout(function(){l(h,{visibility:a}),l(f,{visibility:a})},3e3)})},destroy:function(){var t=this;return p(t.canvas),t.ttTimer!==e&&clearTimeout(t.ttTimer),p(t.ttLine),p(t.ttDiv),p(t.hiddenSvg),u.prototype.destroy.apply(t)},color:function(t,e,i){return t&&t.linearGradient&&(t=t.stops[t.stops.length-1][1]),u.prototype.color.call(this,t,e,i)},draw:function(){var t=this;window.canvg(t.canvas,t.hiddenSvg.innerHTML)}})}(Highcharts);
@@ -0,0 +1,9 @@
1
+ /*
2
+ Data plugin for Highcharts v0.1
3
+
4
+ (c) 2012 Torstein Hønsi
5
+
6
+ License: www.highcharts.com/license
7
+ */
8
+
9
+ !function(t){var e=t.each,i=function(t){this.init(t)};t.extend(i.prototype,{init:function(t){this.options=t,this.columns=[],this.parseCSV(),this.parseTable(),this.parseTypes(),this.findHeaderRow(),this.parsed(),this.complete()},parseCSV:function(){var t=this.options,i=t.csv,s=this.columns,n=t.startRow||0,o=t.endRow||Number.MAX_VALUE,a=t.startColumn||0,r=t.endColumn||Number.MAX_VALUE;i&&(i=i.split(t.lineDelimiter||"\n"),e(i,function(i,h){if(h>=n&&o>=h){var m=i.split(t.itemDelimiter||",");e(m,function(t,e){e>=a&&r>=e&&(s[e-a]||(s[e-a]=[]),s[e-a][h-n]=t)})}}))},parseTable:function(){var t,i=this.options,s=i.table,n=this.columns,o=i.startRow||0,a=i.endRow||Number.MAX_VALUE,r=i.startColumn||0,h=i.endColumn||Number.MAX_VALUE;s&&("string"==typeof s&&(s=document.getElementById(s)),e(s.getElementsByTagName("tr"),function(i,s){t=0,s>=o&&a>=s&&e(i.childNodes,function(e){("TD"===e.tagName||"TH"===e.tagName)&&t>=r&&h>=t&&(n[t]||(n[t]=[]),n[t][s-o]=e.innerHTML,t+=1)})}))},findHeaderRow:function(){e(this.columns,function(){}),this.headerRow=0},trim:function(t){return t.replace(/^\s+|\s+$/g,"")},parseTypes:function(){for(var t,e,i,s,n=this.columns,o=n.length;o--;)for(t=n[o].length;t--;)e=n[o][t],i=parseFloat(e),s=this.trim(e),s==i?(n[o][t]=i,i>31536e6?n[o].isDatetime=!0:n[o].isNumeric=!0):(e=Date.parse(e),0!==o||"number"!=typeof e||isNaN(e)?n[o][t]=s:(n[o][t]=e,n[o].isDatetime=!0))},parsed:function(){this.options.parsed&&this.options.parsed.call(this,this.columns)},complete:function(){var t,e,i,s,n,o,a,r,h,m=this.columns,u=this.options;if(u.complete){for(m.length>1&&(i=m.shift(),0===this.headerRow&&i.shift(),(t=i.isNumeric||i.isDatetime)||(e=i),i.isDatetime&&(s="datetime")),n=[],r=0;r<m.length;r++){for(0===this.headerRow&&(a=m[r].shift()),o=[],h=0;h<m[r].length;h++)o[h]=void 0!==m[r][h]?t?[i[h],m[r][h]]:m[r][h]:null;n[r]={name:a,data:o}}u.complete({xAxis:{categories:e,type:s},series:n})}}}),t.Data=i,t.data=function(t){return new i(t)}}(Highcharts);
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @license Data plugin for Highcharts v0.1
3
+ *
4
+ * (c) 2012 Torstein Hønsi
5
+ *
6
+ * License: www.highcharts.com/license
7
+ */
8
+
9
+ !function(t){var e=t.each,i=function(t){this.init(t)};t.extend(i.prototype,{init:function(t){this.options=t,this.columns=[],this.parseCSV(),this.parseTable(),this.parseTypes(),this.findHeaderRow(),this.parsed(),this.complete()},parseCSV:function(){var t,i=this.options,s=i.csv,n=this.columns,o=i.startRow||0,a=i.endRow||Number.MAX_VALUE,r=i.startColumn||0,h=i.endColumn||Number.MAX_VALUE;s&&(t=s.split(i.lineDelimiter||"\n"),e(t,function(t,s){if(s>=o&&a>=s){var l=t.split(i.itemDelimiter||",");e(l,function(t,e){e>=r&&h>=e&&(n[e-r]||(n[e-r]=[]),n[e-r][s-o]=t)})}}))},parseTable:function(){var t,i=this.options,s=i.table,n=this.columns,o=i.startRow||0,a=i.endRow||Number.MAX_VALUE,r=i.startColumn||0,h=i.endColumn||Number.MAX_VALUE;s&&("string"==typeof s&&(s=document.getElementById(s)),e(s.getElementsByTagName("tr"),function(i,s){t=0,s>=o&&a>=s&&e(i.childNodes,function(e){("TD"===e.tagName||"TH"===e.tagName)&&t>=r&&h>=t&&(n[t]||(n[t]=[]),n[t][s-o]=e.innerHTML,t+=1)})}))},findHeaderRow:function(){var t=0;e(this.columns,function(e){"string"!=typeof e[0]&&(t=null)}),this.headerRow=0},trim:function(t){return t.replace(/^\s+|\s+$/g,"")},parseTypes:function(){for(var t,e,i,s,n,o=this.columns,a=o.length;a--;)for(t=o[a].length;t--;)e=o[a][t],i=parseFloat(e),s=this.trim(e),s==i?(o[a][t]=i,i>31536e6?o[a].isDatetime=!0:o[a].isNumeric=!0):(n=Date.parse(e),0!==a||"number"!=typeof n||isNaN(n)?o[a][t]=s:(o[a][t]=n,o[a].isDatetime=!0))},parsed:function(){this.options.parsed&&this.options.parsed.call(this,this.columns)},complete:function(){var t,e,i,s,n,o,a,r,h,l=this.columns,m=this.options;if(m.complete){for(l.length>1&&(i=l.shift(),0===this.headerRow&&i.shift(),t=i.isNumeric||i.isDatetime,t||(e=i),i.isDatetime&&(s="datetime")),n=[],r=0;r<l.length;r++){for(0===this.headerRow&&(a=l[r].shift()),o=[],h=0;h<l[r].length;h++)o[h]=void 0!==l[r][h]?t?[i[h],l[r][h]]:l[r][h]:null;n[r]={name:a,data:o}}m.complete({xAxis:{categories:e,type:s},series:n})}}}),t.Data=i,t.data=function(t){return new i(t)}}(Highcharts);
@@ -0,0 +1,10 @@
1
+ /*
2
+ Highcharts JS v2.3.3 (2012-10-04)
3
+ Exporting module
4
+
5
+ (c) 2010-2011 Torstein Hønsi
6
+
7
+ License: www.highcharts.com/license
8
+ */
9
+
10
+ !function(){function t(t){for(var e=t.length;e--;)"number"==typeof t[e]&&(t[e]=Math.round(t[e])-.5);return t}var e=Highcharts,o=e.Chart,n=e.addEvent,r=e.removeEvent,i=e.createElement,l=e.discardElement,a=e.css,s=e.merge,p=e.each,c=e.extend,d=Math.max,h=document,u=window,m=void 0!==h.documentElement.ontouchstart,g=e.getOptions();c(g.lang,{downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",exportButtonTitle:"Export to raster or vector image",printButtonTitle:"Print the chart"}),g.navigation={menuStyle:{border:"1px solid #A0A0A0",background:"#FFFFFF"},menuItemStyle:{padding:"0 5px",background:"none",color:"#303030",fontSize:m?"14px":"11px"},menuItemHoverStyle:{background:"#4572A5",color:"#FFFFFF"},buttonOptions:{align:"right",backgroundColor:{linearGradient:[0,0,0,20],stops:[[.4,"#F7F7F7"],[.6,"#E3E3E3"]]},borderColor:"#B0B0B0",borderRadius:3,borderWidth:1,height:20,hoverBorderColor:"#909090",hoverSymbolFill:"#81A7CF",hoverSymbolStroke:"#4572A5",symbolFill:"#E0E0E0",symbolStroke:"#A0A0A0",symbolX:11.5,symbolY:10.5,verticalAlign:"top",width:24,y:10}},g.exporting={type:"image/png",url:"http://export.highcharts.com/",width:800,buttons:{exportButton:{symbol:"exportIcon",x:-10,symbolFill:"#A8BF77",hoverSymbolFill:"#768F3E",_id:"exportButton",_titleKey:"exportButtonTitle",menuItems:[{textKey:"downloadPNG",onclick:function(){this.exportChart()}},{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},{textKey:"downloadSVG",onclick:function(){this.exportChart({type:"image/svg+xml"})}}]},printButton:{symbol:"printIcon",x:-36,symbolFill:"#B5C9DF",hoverSymbolFill:"#779ABF",_id:"printButton",_titleKey:"printButtonTitle",onclick:function(){this.print()}}}},c(o.prototype,{getSVG:function(t){var e,o,n,r=this,a=s(r.options,t);return h.createElementNS||(h.createElementNS=function(t,e){return h.createElement(e)}),t=i("div",null,{position:"absolute",top:"-9999em",width:r.chartWidth+"px",height:r.chartHeight+"px"},h.body),c(a.chart,{renderTo:t,forExport:!0}),a.exporting.enabled=!1,a.chart.plotBackgroundImage=null,a.series=[],p(r.series,function(t){n=s(t.options,{animation:!1,showCheckbox:!1,visible:t.visible}),n.isInternal||(n&&n.marker&&/^url\(/.test(n.marker.symbol)&&(n.marker.symbol="circle"),a.series.push(n))}),e=new Highcharts.Chart(a),p(["xAxis","yAxis"],function(t){p(r[t],function(o,n){var r=e[t][n],i=o.getExtremes(),l=i.userMin,i=i.userMax;(void 0!==l||void 0!==i)&&r.setExtremes(l,i,!0,!1)})}),o=e.container.innerHTML,a=null,e.destroy(),l(t),o=o.replace(/zIndex="[^"]+"/g,"").replace(/isShadow="[^"]+"/g,"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/isTracker="[^"]+"/g,"").replace(/url\([^#]+#/g,"url(#").replace(/<svg /,'<svg xmlns:xlink="http://www.w3.org/1999/xlink" ').replace(/ href=/g," xlink:href=").replace(/\n/," ").replace(/<\/svg>.*?$/,"</svg>").replace(/&nbsp;/g," ").replace(/&shy;/g,"­").replace(/<IMG /g,"<image ").replace(/height=([^" ]+)/g,'height="$1"').replace(/width=([^" ]+)/g,'width="$1"').replace(/hc-svg-href="([^"]+)">/g,'xlink:href="$1"/>').replace(/id=([^" >]+)/g,'id="$1"').replace(/class=([^" ]+)/g,'class="$1"').replace(/ transform /g," ").replace(/:(path|rect)/g,"$1").replace(/style="([^"]+)"/g,function(t){return t.toLowerCase()}),o=o.replace(/(url\(#highcharts-[0-9]+)&quot;/g,"$1").replace(/&quot;/g,"'"),2===o.match(/ xmlns="/g).length&&(o=o.replace(/xmlns="[^"]+"/,"")),o},exportChart:function(t,e){var o,n=this.getSVG(s(this.options.exporting.chartOptions,e)),t=s(this.options.exporting,t);o=i("form",{method:"post",action:t.url,enctype:"multipart/form-data"},{display:"none"},h.body),p(["filename","type","width","svg"],function(e){i("input",{type:"hidden",name:e,value:{filename:t.filename||"chart",type:t.type,width:t.width,svg:n}[e]},null,o)}),o.submit(),l(o)},print:function(){var t=this,e=t.container,o=[],n=e.parentNode,r=h.body,i=r.childNodes;t.isPrinting||(t.isPrinting=!0,p(i,function(t,e){1===t.nodeType&&(o[e]=t.style.display,t.style.display="none")}),r.appendChild(e),u.print(),setTimeout(function(){n.appendChild(e),p(i,function(t,e){1===t.nodeType&&(t.style.display=o[e])}),t.isPrinting=!1},1e3))},contextMenu:function(t,e,o,r,l,s){var h,u,g=this,x=g.options.navigation,y=x.menuItemStyle,b=g.chartWidth,f=g.chartHeight,v="cache-"+t,k=g[v],w=d(l,s);k||(g[v]=k=i("div",{className:"highcharts-"+t},{position:"absolute",zIndex:1e3,padding:w+"px"},g.container),h=i("div",null,c({MozBoxShadow:"3px 3px 10px #888",WebkitBoxShadow:"3px 3px 10px #888",boxShadow:"3px 3px 10px #888"},x.menuStyle),k),u=function(){a(k,{display:"none"})},n(k,"mouseleave",u),p(e,function(t){if(t){var e=i("div",{onmouseover:function(){a(this,x.menuItemHoverStyle)},onmouseout:function(){a(this,y)},innerHTML:t.text||g.options.lang[t.textKey]},c({cursor:"pointer"},y),h);e[m?"ontouchstart":"onclick"]=function(){u(),t.onclick.apply(g,arguments)},g.exportDivElements.push(e)}}),g.exportDivElements.push(h,k),g.exportMenuWidth=k.offsetWidth,g.exportMenuHeight=k.offsetHeight),t={display:"block"},o+g.exportMenuWidth>b?t.right=b-o-l-w+"px":t.left=o-w+"px",r+s+g.exportMenuHeight>f?t.bottom=f-r-w+"px":t.top=r+s-w+"px",a(k,t)},addButton:function(t){function e(){n.attr(g),o.attr(m)}var o,n,r,i=this,l=i.renderer,a=s(i.options.navigation.buttonOptions,t),p=a.onclick,d=a.menuItems,h=a.width,u=a.height,t=a.borderWidth,m={stroke:a.borderColor},g={stroke:a.symbolStroke,fill:a.symbolFill},x=a.symbolSize||12;i.exportDivElements||(i.exportDivElements=[],i.exportSVGElements=[]),a.enabled!==!1&&(o=l.rect(0,0,h,u,a.borderRadius,t).align(a,!0).attr(c({fill:a.backgroundColor,"stroke-width":t,zIndex:19},m)).add(),r=l.rect(0,0,h,u,0).align(a).attr({id:a._id,fill:"rgba(255, 255, 255, 0.001)",title:i.options.lang[a._titleKey],zIndex:21}).css({cursor:"pointer"}).on("mouseover",function(){n.attr({stroke:a.hoverSymbolStroke,fill:a.hoverSymbolFill}),o.attr({stroke:a.hoverBorderColor})}).on("mouseout",e).on("click",e).add(),d&&(p=function(){e();var t=r.getBBox();i.contextMenu("export-menu",d,t.x,t.y,h,u)}),r.on("click",function(){p.apply(i,arguments)}),n=l.symbol(a.symbol,a.symbolX-x/2,a.symbolY-x/2,x,x).align(a,!0).attr(c(g,{"stroke-width":a.symbolStrokeWidth||1,zIndex:20})).add(),i.exportSVGElements.push(o,r,n))},destroyExport:function(){var t,e;for(t=0;t<this.exportSVGElements.length;t++)e=this.exportSVGElements[t],e.onclick=e.ontouchstart=null,this.exportSVGElements[t]=e.destroy();for(t=0;t<this.exportDivElements.length;t++)e=this.exportDivElements[t],r(e,"mouseleave"),this.exportDivElements[t]=e.onmouseout=e.onmouseover=e.ontouchstart=e.onclick=null,l(e)}}),e.Renderer.prototype.symbols.exportIcon=function(e,o,n,r){return t(["M",e,o+n,"L",e+n,o+r,e+n,o+.8*r,e,o+.8*r,"Z","M",e+.5*n,o+.8*r,"L",e+.8*n,o+.4*r,e+.4*n,o+.4*r,e+.4*n,o,e+.6*n,o,e+.6*n,o+.4*r,e+.2*n,o+.4*r,"Z"])},e.Renderer.prototype.symbols.printIcon=function(e,o,n,r){return t(["M",e,o+.7*r,"L",e+n,o+.7*r,e+n,o+.4*r,e,o+.4*r,"Z","M",e+.2*n,o+.4*r,"L",e+.2*n,o,e+.8*n,o,e+.8*n,o+.4*r,"Z","M",e+.2*n,o+.7*r,"L",e,o+r,e+n,o+r,e+.8*n,o+.7*r,"Z"])},o.prototype.callbacks.push(function(t){var e,o=t.options.exporting,r=o.buttons;if(o.enabled!==!1){for(e in r)t.addButton(r[e]);n(t,"destroy",t.destroyExport)}})}();
@@ -0,0 +1,10 @@
1
+ /**
2
+ * @license Highcharts JS v2.3.3 (2012-10-04)
3
+ * Exporting module
4
+ *
5
+ * (c) 2010-2011 Torstein Hønsi
6
+ *
7
+ * License: www.highcharts.com/license
8
+ */
9
+
10
+ !function(){function t(t){for(var e=t.length;e--;)"number"==typeof t[e]&&(t[e]=Math.round(t[e])-.5);return t}var e,o=Highcharts,n=o.Chart,r=o.addEvent,i=o.removeEvent,l=o.createElement,a=o.discardElement,s=o.css,c=o.merge,p=o.each,d=o.extend,u=Math,h=u.max,m=document,g=window,x=void 0!==m.documentElement.ontouchstart,y="M",f="L",b="div",v="hidden",k="none",w="highcharts-",E="absolute",S="px",F=o.getOptions();d(F.lang,{downloadPNG:"Download PNG image",downloadJPEG:"Download JPEG image",downloadPDF:"Download PDF document",downloadSVG:"Download SVG vector image",exportButtonTitle:"Export to raster or vector image",printButtonTitle:"Print the chart"}),F.navigation={menuStyle:{border:"1px solid #A0A0A0",background:"#FFFFFF"},menuItemStyle:{padding:"0 5px",background:k,color:"#303030",fontSize:x?"14px":"11px"},menuItemHoverStyle:{background:"#4572A5",color:"#FFFFFF"},buttonOptions:{align:"right",backgroundColor:{linearGradient:[0,0,0,20],stops:[[.4,"#F7F7F7"],[.6,"#E3E3E3"]]},borderColor:"#B0B0B0",borderRadius:3,borderWidth:1,height:20,hoverBorderColor:"#909090",hoverSymbolFill:"#81A7CF",hoverSymbolStroke:"#4572A5",symbolFill:"#E0E0E0",symbolStroke:"#A0A0A0",symbolX:11.5,symbolY:10.5,verticalAlign:"top",width:24,y:10}},F.exporting={type:"image/png",url:"http://export.highcharts.com/",width:800,buttons:{exportButton:{symbol:"exportIcon",x:-10,symbolFill:"#A8BF77",hoverSymbolFill:"#768F3E",_id:"exportButton",_titleKey:"exportButtonTitle",menuItems:[{textKey:"downloadPNG",onclick:function(){this.exportChart()}},{textKey:"downloadJPEG",onclick:function(){this.exportChart({type:"image/jpeg"})}},{textKey:"downloadPDF",onclick:function(){this.exportChart({type:"application/pdf"})}},{textKey:"downloadSVG",onclick:function(){this.exportChart({type:"image/svg+xml"})}}]},printButton:{symbol:"printIcon",x:-36,symbolFill:"#B5C9DF",hoverSymbolFill:"#779ABF",_id:"printButton",_titleKey:"printButtonTitle",onclick:function(){this.print()}}}},d(n.prototype,{getSVG:function(t){var o,n,r,i,s=this,u=c(s.options,t);return m.createElementNS||(m.createElementNS=function(t,e){return m.createElement(e)}),n=l(b,null,{position:E,top:"-9999em",width:s.chartWidth+S,height:s.chartHeight+S},m.body),d(u.chart,{renderTo:n,forExport:!0}),u.exporting.enabled=!1,u.chart.plotBackgroundImage=null,u.series=[],p(s.series,function(t){i=c(t.options,{animation:!1,showCheckbox:!1,visible:t.visible}),i.isInternal||(i&&i.marker&&/^url\(/.test(i.marker.symbol)&&(i.marker.symbol="circle"),u.series.push(i))}),o=new Highcharts.Chart(u),p(["xAxis","yAxis"],function(t){p(s[t],function(n,r){var i=o[t][r],l=n.getExtremes(),a=l.userMin,s=l.userMax;(a!==e||s!==e)&&i.setExtremes(a,s,!0,!1)})}),r=o.container.innerHTML,u=null,o.destroy(),a(n),r=r.replace(/zIndex="[^"]+"/g,"").replace(/isShadow="[^"]+"/g,"").replace(/symbolName="[^"]+"/g,"").replace(/jQuery[0-9]+="[^"]+"/g,"").replace(/isTracker="[^"]+"/g,"").replace(/url\([^#]+#/g,"url(#").replace(/<svg /,'<svg xmlns:xlink="http://www.w3.org/1999/xlink" ').replace(/ href=/g," xlink:href=").replace(/\n/," ").replace(/<\/svg>.*?$/,"</svg>").replace(/&nbsp;/g," ").replace(/&shy;/g,"­").replace(/<IMG /g,"<image ").replace(/height=([^" ]+)/g,'height="$1"').replace(/width=([^" ]+)/g,'width="$1"').replace(/hc-svg-href="([^"]+)">/g,'xlink:href="$1"/>').replace(/id=([^" >]+)/g,'id="$1"').replace(/class=([^" ]+)/g,'class="$1"').replace(/ transform /g," ").replace(/:(path|rect)/g,"$1").replace(/style="([^"]+)"/g,function(t){return t.toLowerCase()}),r=r.replace(/(url\(#highcharts-[0-9]+)&quot;/g,"$1").replace(/&quot;/g,"'"),2===r.match(/ xmlns="/g).length&&(r=r.replace(/xmlns="[^"]+"/,"")),r},exportChart:function(t,e){var o,n=this,r=n.getSVG(c(n.options.exporting.chartOptions,e));t=c(n.options.exporting,t),o=l("form",{method:"post",action:t.url,enctype:"multipart/form-data"},{display:k},m.body),p(["filename","type","width","svg"],function(e){l("input",{type:v,name:e,value:{filename:t.filename||"chart",type:t.type,width:t.width,svg:r}[e]},null,o)}),o.submit(),a(o)},print:function(){var t=this,e=t.container,o=[],n=e.parentNode,r=m.body,i=r.childNodes;t.isPrinting||(t.isPrinting=!0,p(i,function(t,e){1===t.nodeType&&(o[e]=t.style.display,t.style.display=k)}),r.appendChild(e),g.print(),setTimeout(function(){n.appendChild(e),p(i,function(t,e){1===t.nodeType&&(t.style.display=o[e])}),t.isPrinting=!1},1e3))},contextMenu:function(t,e,o,n,i,a){var c,u,m,g=this,y=g.options.navigation,f=y.menuItemStyle,v=g.chartWidth,F=g.chartHeight,B="cache-"+t,C=g[B],G=h(i,a),I="3px 3px 10px #888";C||(g[B]=C=l(b,{className:w+t},{position:E,zIndex:1e3,padding:G+S},g.container),c=l(b,null,d({MozBoxShadow:I,WebkitBoxShadow:I,boxShadow:I},y.menuStyle),C),u=function(){s(C,{display:k})},r(C,"mouseleave",u),p(e,function(t){if(t){var e=l(b,{onmouseover:function(){s(this,y.menuItemHoverStyle)},onmouseout:function(){s(this,f)},innerHTML:t.text||g.options.lang[t.textKey]},d({cursor:"pointer"},f),c);e[x?"ontouchstart":"onclick"]=function(){u(),t.onclick.apply(g,arguments)},g.exportDivElements.push(e)}}),g.exportDivElements.push(c,C),g.exportMenuWidth=C.offsetWidth,g.exportMenuHeight=C.offsetHeight),m={display:"block"},o+g.exportMenuWidth>v?m.right=v-o-i-G+S:m.left=o-G+S,n+a+g.exportMenuHeight>F?m.bottom=F-n-G+S:m.top=n+a-G+S,s(C,m)},addButton:function(t){function e(){n.attr(x),o.attr(g)}var o,n,r,i=this,l=i.renderer,a=c(i.options.navigation.buttonOptions,t),s=a.onclick,p=a.menuItems,u=a.width,h=a.height,m=a.borderWidth,g={stroke:a.borderColor},x={stroke:a.symbolStroke,fill:a.symbolFill},y=a.symbolSize||12;i.exportDivElements||(i.exportDivElements=[],i.exportSVGElements=[]),a.enabled!==!1&&(o=l.rect(0,0,u,h,a.borderRadius,m).align(a,!0).attr(d({fill:a.backgroundColor,"stroke-width":m,zIndex:19},g)).add(),r=l.rect(0,0,u,h,0).align(a).attr({id:a._id,fill:"rgba(255, 255, 255, 0.001)",title:i.options.lang[a._titleKey],zIndex:21}).css({cursor:"pointer"}).on("mouseover",function(){n.attr({stroke:a.hoverSymbolStroke,fill:a.hoverSymbolFill}),o.attr({stroke:a.hoverBorderColor})}).on("mouseout",e).on("click",e).add(),p&&(s=function(){e();var t=r.getBBox();i.contextMenu("export-menu",p,t.x,t.y,u,h)}),r.on("click",function(){s.apply(i,arguments)}),n=l.symbol(a.symbol,a.symbolX-y/2,a.symbolY-y/2,y,y).align(a,!0).attr(d(x,{"stroke-width":a.symbolStrokeWidth||1,zIndex:20})).add(),i.exportSVGElements.push(o,r,n))},destroyExport:function(){var t,e,o=this;for(t=0;t<o.exportSVGElements.length;t++)e=o.exportSVGElements[t],e.onclick=e.ontouchstart=null,o.exportSVGElements[t]=e.destroy();for(t=0;t<o.exportDivElements.length;t++)e=o.exportDivElements[t],i(e,"mouseleave"),o.exportDivElements[t]=e.onmouseout=e.onmouseover=e.ontouchstart=e.onclick=null,a(e)}}),o.Renderer.prototype.symbols.exportIcon=function(e,o,n,r){return t([y,e,o+n,f,e+n,o+r,e+n,o+.8*r,e,o+.8*r,"Z",y,e+.5*n,o+.8*r,f,e+.8*n,o+.4*r,e+.4*n,o+.4*r,e+.4*n,o,e+.6*n,o,e+.6*n,o+.4*r,e+.2*n,o+.4*r,"Z"])},o.Renderer.prototype.symbols.printIcon=function(e,o,n,r){return t([y,e,o+.7*r,f,e+n,o+.7*r,e+n,o+.4*r,e,o+.4*r,"Z",y,e+.2*n,o+.4*r,f,e+.2*n,o,e+.8*n,o,e+.8*n,o+.4*r,"Z",y,e+.2*n,o+.7*r,f,e,o+r,e+n,o+r,e+.8*n,o+.7*r,"Z"])},n.prototype.callbacks.push(function(t){var e,o=t.options.exporting,n=o.buttons;if(o.enabled!==!1){for(e in n)t.addButton(n[e]);r(t,"destroy",t.destroyExport)}})}();
@@ -0,0 +1 @@
1
+ Highcharts.theme={colors:["#DDDF0D","#55BF3B","#DF5353","#7798BF","#aaeeee","#ff0066","#eeaaee","#55BF3B","#DF5353","#7798BF","#aaeeee"],chart:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:1,y2:1},stops:[[0,"rgb(48, 48, 96)"],[1,"rgb(0, 0, 0)"]]},borderColor:"#000000",borderWidth:2,className:"dark-container",plotBackgroundColor:"rgba(255, 255, 255, .1)",plotBorderColor:"#CCCCCC",plotBorderWidth:1},title:{style:{color:"#C0C0C0",font:'bold 16px "Trebuchet MS", Verdana, sans-serif'}},subtitle:{style:{color:"#666666",font:'bold 12px "Trebuchet MS", Verdana, sans-serif'}},xAxis:{gridLineColor:"#333333",gridLineWidth:1,labels:{style:{color:"#A0A0A0"}},lineColor:"#A0A0A0",tickColor:"#A0A0A0",title:{style:{color:"#CCC",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},yAxis:{gridLineColor:"#333333",labels:{style:{color:"#A0A0A0"}},lineColor:"#A0A0A0",minorTickInterval:null,tickColor:"#A0A0A0",tickWidth:1,title:{style:{color:"#CCC",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},tooltip:{backgroundColor:"rgba(0, 0, 0, 0.75)",style:{color:"#F0F0F0"}},toolbar:{itemStyle:{color:"silver"}},plotOptions:{line:{dataLabels:{color:"#CCC"},marker:{lineColor:"#333"}},spline:{marker:{lineColor:"#333"}},scatter:{marker:{lineColor:"#333"}},candlestick:{lineColor:"white"}},legend:{itemStyle:{font:"9pt Trebuchet MS, Verdana, sans-serif",color:"#A0A0A0"},itemHoverStyle:{color:"#FFF"},itemHiddenStyle:{color:"#444"}},credits:{style:{color:"#666"}},labels:{style:{color:"#CCC"}},navigation:{buttonOptions:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#606060"],[.6,"#333333"]]},borderColor:"#000000",symbolStroke:"#C0C0C0",hoverSymbolStroke:"#FFFFFF"}},exporting:{buttons:{exportButton:{symbolFill:"#55BE3B"},printButton:{symbolFill:"#7797BE"}}},rangeSelector:{buttonTheme:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},stroke:"#000000",style:{color:"#CCC",fontWeight:"bold"},states:{hover:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#BBB"],[.6,"#888"]]},stroke:"#000000",style:{color:"white"}},select:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.1,"#000"],[.3,"#333"]]},stroke:"#000000",style:{color:"yellow"}}}},inputStyle:{backgroundColor:"#333",color:"silver"},labelStyle:{color:"silver"}},navigator:{handles:{backgroundColor:"#666",borderColor:"#AAA"},outlineColor:"#CCC",maskFill:"rgba(16, 16, 16, 0.5)",series:{color:"#7798BF",lineColor:"#A6C7ED"}},scrollbar:{barBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},barBorderColor:"#CCC",buttonArrowColor:"#CCC",buttonBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},buttonBorderColor:"#CCC",rifleColor:"#FFF",trackBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#000"],[1,"#333"]]},trackBorderColor:"#666"},legendBackgroundColor:"rgba(0, 0, 0, 0.5)",legendBackgroundColorSolid:"rgb(35, 35, 70)",dataLabelsColor:"#444",textColor:"#C0C0C0",maskColor:"rgba(255,255,255,0.3)"};var highchartsOptions=Highcharts.setOptions(Highcharts.theme);
@@ -0,0 +1 @@
1
+ Highcharts.theme={colors:["#DDDF0D","#55BF3B","#DF5353","#7798BF","#aaeeee","#ff0066","#eeaaee","#55BF3B","#DF5353","#7798BF","#aaeeee"],chart:{backgroundColor:{linearGradient:[0,0,250,500],stops:[[0,"rgb(48, 96, 48)"],[1,"rgb(0, 0, 0)"]]},borderColor:"#000000",borderWidth:2,className:"dark-container",plotBackgroundColor:"rgba(255, 255, 255, .1)",plotBorderColor:"#CCCCCC",plotBorderWidth:1},title:{style:{color:"#C0C0C0",font:'bold 16px "Trebuchet MS", Verdana, sans-serif'}},subtitle:{style:{color:"#666666",font:'bold 12px "Trebuchet MS", Verdana, sans-serif'}},xAxis:{gridLineColor:"#333333",gridLineWidth:1,labels:{style:{color:"#A0A0A0"}},lineColor:"#A0A0A0",tickColor:"#A0A0A0",title:{style:{color:"#CCC",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},yAxis:{gridLineColor:"#333333",labels:{style:{color:"#A0A0A0"}},lineColor:"#A0A0A0",minorTickInterval:null,tickColor:"#A0A0A0",tickWidth:1,title:{style:{color:"#CCC",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},tooltip:{backgroundColor:"rgba(0, 0, 0, 0.75)",style:{color:"#F0F0F0"}},toolbar:{itemStyle:{color:"silver"}},plotOptions:{line:{dataLabels:{color:"#CCC"},marker:{lineColor:"#333"}},spline:{marker:{lineColor:"#333"}},scatter:{marker:{lineColor:"#333"}},candlestick:{lineColor:"white"}},legend:{itemStyle:{font:"9pt Trebuchet MS, Verdana, sans-serif",color:"#A0A0A0"},itemHoverStyle:{color:"#FFF"},itemHiddenStyle:{color:"#444"}},credits:{style:{color:"#666"}},labels:{style:{color:"#CCC"}},navigation:{buttonOptions:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#606060"],[.6,"#333333"]]},borderColor:"#000000",symbolStroke:"#C0C0C0",hoverSymbolStroke:"#FFFFFF"}},exporting:{buttons:{exportButton:{symbolFill:"#55BE3B"},printButton:{symbolFill:"#7797BE"}}},rangeSelector:{buttonTheme:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},stroke:"#000000",style:{color:"#CCC",fontWeight:"bold"},states:{hover:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#BBB"],[.6,"#888"]]},stroke:"#000000",style:{color:"white"}},select:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.1,"#000"],[.3,"#333"]]},stroke:"#000000",style:{color:"yellow"}}}},inputStyle:{backgroundColor:"#333",color:"silver"},labelStyle:{color:"silver"}},navigator:{handles:{backgroundColor:"#666",borderColor:"#AAA"},outlineColor:"#CCC",maskFill:"rgba(16, 16, 16, 0.5)",series:{color:"#7798BF",lineColor:"#A6C7ED"}},scrollbar:{barBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},barBorderColor:"#CCC",buttonArrowColor:"#CCC",buttonBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},buttonBorderColor:"#CCC",rifleColor:"#FFF",trackBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#000"],[1,"#333"]]},trackBorderColor:"#666"},legendBackgroundColor:"rgba(0, 0, 0, 0.5)",legendBackgroundColorSolid:"rgb(35, 35, 70)",dataLabelsColor:"#444",textColor:"#C0C0C0",maskColor:"rgba(255,255,255,0.3)"};var highchartsOptions=Highcharts.setOptions(Highcharts.theme);
@@ -0,0 +1 @@
1
+ Highcharts.theme={colors:["#DDDF0D","#7798BF","#55BF3B","#DF5353","#aaeeee","#ff0066","#eeaaee","#55BF3B","#DF5353","#7798BF","#aaeeee"],chart:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"rgb(96, 96, 96)"],[1,"rgb(16, 16, 16)"]]},borderWidth:0,borderRadius:15,plotBackgroundColor:null,plotShadow:!1,plotBorderWidth:0},title:{style:{color:"#FFF",font:"16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}},subtitle:{style:{color:"#DDD",font:"12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}},xAxis:{gridLineWidth:0,lineColor:"#999",tickColor:"#999",labels:{style:{color:"#999",fontWeight:"bold"}},title:{style:{color:"#AAA",font:"bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}}},yAxis:{alternateGridColor:null,minorTickInterval:null,gridLineColor:"rgba(255, 255, 255, .1)",lineWidth:0,tickWidth:0,labels:{style:{color:"#999",fontWeight:"bold"}},title:{style:{color:"#AAA",font:"bold 12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}}},legend:{itemStyle:{color:"#CCC"},itemHoverStyle:{color:"#FFF"},itemHiddenStyle:{color:"#333"}},labels:{style:{color:"#CCC"}},tooltip:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"rgba(96, 96, 96, .8)"],[1,"rgba(16, 16, 16, .8)"]]},borderWidth:0,style:{color:"#FFF"}},plotOptions:{line:{dataLabels:{color:"#CCC"},marker:{lineColor:"#333"}},spline:{marker:{lineColor:"#333"}},scatter:{marker:{lineColor:"#333"}},candlestick:{lineColor:"white"}},toolbar:{itemStyle:{color:"#CCC"}},navigation:{buttonOptions:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#606060"],[.6,"#333333"]]},borderColor:"#000000",symbolStroke:"#C0C0C0",hoverSymbolStroke:"#FFFFFF"}},exporting:{buttons:{exportButton:{symbolFill:"#55BE3B"},printButton:{symbolFill:"#7797BE"}}},rangeSelector:{buttonTheme:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},stroke:"#000000",style:{color:"#CCC",fontWeight:"bold"},states:{hover:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#BBB"],[.6,"#888"]]},stroke:"#000000",style:{color:"white"}},select:{fill:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.1,"#000"],[.3,"#333"]]},stroke:"#000000",style:{color:"yellow"}}}},inputStyle:{backgroundColor:"#333",color:"silver"},labelStyle:{color:"silver"}},navigator:{handles:{backgroundColor:"#666",borderColor:"#AAA"},outlineColor:"#CCC",maskFill:"rgba(16, 16, 16, 0.5)",series:{color:"#7798BF",lineColor:"#A6C7ED"}},scrollbar:{barBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},barBorderColor:"#CCC",buttonArrowColor:"#CCC",buttonBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[.4,"#888"],[.6,"#555"]]},buttonBorderColor:"#CCC",rifleColor:"#FFF",trackBackgroundColor:{linearGradient:{x1:0,y1:0,x2:0,y2:1},stops:[[0,"#000"],[1,"#333"]]},trackBorderColor:"#666"},legendBackgroundColor:"rgba(48, 48, 48, 0.8)",legendBackgroundColorSolid:"rgb(70, 70, 70)",dataLabelsColor:"#444",textColor:"#E0E0E0",maskColor:"rgba(255,255,255,0.3)"};var highchartsOptions=Highcharts.setOptions(Highcharts.theme);
@@ -0,0 +1 @@
1
+ Highcharts.theme={colors:["#058DC7","#50B432","#ED561B","#DDDF00","#24CBE5","#64E572","#FF9655","#FFF263","#6AF9C4"],chart:{backgroundColor:{linearGradient:{x1:0,y1:0,x2:1,y2:1},stops:[[0,"rgb(255, 255, 255)"],[1,"rgb(240, 240, 255)"]]},borderWidth:2,plotBackgroundColor:"rgba(255, 255, 255, .9)",plotShadow:!0,plotBorderWidth:1},title:{style:{color:"#000",font:'bold 16px "Trebuchet MS", Verdana, sans-serif'}},subtitle:{style:{color:"#666666",font:'bold 12px "Trebuchet MS", Verdana, sans-serif'}},xAxis:{gridLineWidth:1,lineColor:"#000",tickColor:"#000",labels:{style:{color:"#000",font:"11px Trebuchet MS, Verdana, sans-serif"}},title:{style:{color:"#333",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},yAxis:{minorTickInterval:"auto",lineColor:"#000",lineWidth:1,tickWidth:1,tickColor:"#000",labels:{style:{color:"#000",font:"11px Trebuchet MS, Verdana, sans-serif"}},title:{style:{color:"#333",fontWeight:"bold",fontSize:"12px",fontFamily:"Trebuchet MS, Verdana, sans-serif"}}},legend:{itemStyle:{font:"9pt Trebuchet MS, Verdana, sans-serif",color:"black"},itemHoverStyle:{color:"#039"},itemHiddenStyle:{color:"gray"}},labels:{style:{color:"#99b"}}};var highchartsOptions=Highcharts.setOptions(Highcharts.theme);
@@ -0,0 +1 @@
1
+ Highcharts.theme={colors:["#514F78","#42A07B","#9B5E4A","#72727F","#1F949A","#82914E","#86777F","#42A07B"],chart:{className:"skies",borderWidth:0,plotShadow:!0,plotBackgroundImage:"/demo/gfx/skies.jpg",plotBackgroundColor:{linearGradient:[0,0,250,500],stops:[[0,"rgba(255, 255, 255, 1)"],[1,"rgba(255, 255, 255, 0)"]]},plotBorderWidth:1},title:{style:{color:"#3E576F",font:"16px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}},subtitle:{style:{color:"#6D869F",font:"12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}},xAxis:{gridLineWidth:0,lineColor:"#C0D0E0",tickColor:"#C0D0E0",labels:{style:{color:"#666",fontWeight:"bold"}},title:{style:{color:"#666",font:"12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}}},yAxis:{alternateGridColor:"rgba(255, 255, 255, .5)",lineColor:"#C0D0E0",tickColor:"#C0D0E0",tickWidth:1,labels:{style:{color:"#666",fontWeight:"bold"}},title:{style:{color:"#666",font:"12px Lucida Grande, Lucida Sans Unicode, Verdana, Arial, Helvetica, sans-serif"}}},legend:{itemStyle:{font:"9pt Trebuchet MS, Verdana, sans-serif",color:"#3E576F"},itemHoverStyle:{color:"black"},itemHiddenStyle:{color:"silver"}},labels:{style:{color:"#3E576F"}}};var highchartsOptions=Highcharts.setOptions(Highcharts.theme);
@@ -0,0 +1,53 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2
+ "http://www.w3.org/TR/html4/loose.dtd">
3
+ <html>
4
+ <head>
5
+ <title>Jasmine Spec Runner</title>
6
+
7
+ <link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png">
8
+ <link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css">
9
+ <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script>
10
+ <script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script>
11
+
12
+ <!-- include source files here... -->
13
+ <script type="text/javascript" src="src/Player.js"></script>
14
+ <script type="text/javascript" src="src/Song.js"></script>
15
+
16
+ <!-- include spec files here... -->
17
+ <script type="text/javascript" src="spec/SpecHelper.js"></script>
18
+ <script type="text/javascript" src="spec/PlayerSpec.js"></script>
19
+
20
+ <script type="text/javascript">
21
+ (function() {
22
+ var jasmineEnv = jasmine.getEnv();
23
+ jasmineEnv.updateInterval = 1000;
24
+
25
+ var htmlReporter = new jasmine.HtmlReporter();
26
+
27
+ jasmineEnv.addReporter(htmlReporter);
28
+
29
+ jasmineEnv.specFilter = function(spec) {
30
+ return htmlReporter.specFilter(spec);
31
+ };
32
+
33
+ var currentWindowOnload = window.onload;
34
+
35
+ window.onload = function() {
36
+ if (currentWindowOnload) {
37
+ currentWindowOnload();
38
+ }
39
+ execJasmine();
40
+ };
41
+
42
+ function execJasmine() {
43
+ jasmineEnv.execute();
44
+ }
45
+
46
+ })();
47
+ </script>
48
+
49
+ </head>
50
+
51
+ <body>
52
+ </body>
53
+ </html>
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008-2011 Pivotal Labs
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1 @@
1
+ jasmine.HtmlReporterHelpers={},jasmine.HtmlReporterHelpers.createDom=function(e,t){for(var s=document.createElement(e),i=2;i<arguments.length;i++){var a=arguments[i];"string"==typeof a?s.appendChild(document.createTextNode(a)):a&&s.appendChild(a)}for(var r in t)"className"==r?s[r]=t[r]:s.setAttribute(r,t[r]);return s},jasmine.HtmlReporterHelpers.getSpecStatus=function(e){var t=e.results(),s=t.passed()?"passed":"failed";return t.skipped&&(s="skipped"),s},jasmine.HtmlReporterHelpers.appendToSummary=function(e,t){var s=this.dom.summary,i="undefined"==typeof e.parentSuite?"suite":"parentSuite",a=e[i];a&&("undefined"==typeof this.views.suites[a.id]&&(this.views.suites[a.id]=new jasmine.HtmlReporter.SuiteView(a,this.dom,this.views)),s=this.views.suites[a.id].element),s.appendChild(t)},jasmine.HtmlReporterHelpers.addHelpers=function(e){for(var t in jasmine.HtmlReporterHelpers)e.prototype[t]=jasmine.HtmlReporterHelpers[t]},jasmine.HtmlReporter=function(e){function t(){var e;return function(){if(!e){for(var t=[],s=jasmine.HtmlReporter.parameters(p),i=0;i<s.length;i++){var a=s[i].split("=");t[decodeURIComponent(a[0])]=decodeURIComponent(a[1])}e=t.spec}}(),e}function s(e){l.reporter=o.createDom("div",{id:"HTMLReporter",className:"jasmine_reporter"},l.banner=o.createDom("div",{className:"banner"},o.createDom("span",{className:"title"},"Jasmine "),o.createDom("span",{className:"version"},e)),l.symbolSummary=o.createDom("ul",{className:"symbolSummary"}),l.alert=o.createDom("div",{className:"alert"},o.createDom("span",{className:"exceptions"},o.createDom("label",{className:"label","for":"no_try_catch"},"No try/catch"),o.createDom("input",{id:"no_try_catch",type:"checkbox"}))),l.results=o.createDom("div",{className:"results"},l.summary=o.createDom("div",{className:"summary"}),l.details=o.createDom("div",{id:"details"})))}function i(){return window.location.search.match(/catch=false/)}function a(){for(var e=jasmine.HtmlReporter.parameters(window.document),t=!1,s=0;!t&&s<e.length;)e[s].match(/catch=/)&&(e.splice(s,1),t=!0),s++;return jasmine.CATCH_EXCEPTIONS&&e.push("catch=false"),e.join("&")}function r(){var e=document.getElementById("no_try_catch");i()&&(e.setAttribute("checked",!0),jasmine.CATCH_EXCEPTIONS=!1),e.onclick=function(){window.location.search=a()}}var n,o=this,p=e||window.document,l={};return o.logRunningSpecs=!1,o.reportRunnerStarting=function(e){var t=e.specs()||[];0!=t.length&&(s(e.env.versionString()),p.body.appendChild(l.reporter),r(),n=new jasmine.HtmlReporter.ReporterView(l),n.addSpecs(t,o.specFilter))},o.reportRunnerResults=function(){n&&n.complete()},o.reportSuiteResults=function(e){n.suiteComplete(e)},o.reportSpecStarting=function(e){o.logRunningSpecs&&o.log(">> Jasmine Running "+e.suite.description+" "+e.description+"...")},o.reportSpecResults=function(e){n.specComplete(e)},o.log=function(){var e=jasmine.getGlobal().console;e&&e.log&&(e.log.apply?e.log.apply(e,arguments):e.log(arguments))},o.specFilter=function(e){return t()?0===e.getFullName().indexOf(t()):!0},o},jasmine.HtmlReporter.parameters=function(e){var t=e.location.search.substring(1),s=[];return t.length>0&&(s=t.split("&")),s},jasmine.HtmlReporter.sectionLink=function(e){var t="?",s=[];return e&&s.push("spec="+encodeURIComponent(e)),jasmine.CATCH_EXCEPTIONS||s.push("catch=false"),s.length>0&&(t+=s.join("&")),t},jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter),jasmine.HtmlReporter.ReporterView=function(e){function t(){-1===e.reporter.className.search(/showDetails/)&&(e.reporter.className+=" showDetails")}function s(e){return"undefined"==typeof e}function i(e){return!s(e)}function a(e){var t=e+" spec";return e>1&&(t+="s"),t}return this.startedAt=new Date,this.runningSpecCount=0,this.completeSpecCount=0,this.passedCount=0,this.failedCount=0,this.skippedCount=0,this.createResultsMenu=function(){this.resultsMenu=this.createDom("span",{className:"resultsMenu bar"},this.summaryMenuItem=this.createDom("a",{className:"summaryMenuItem",href:"#"},"0 specs")," | ",this.detailsMenuItem=this.createDom("a",{className:"detailsMenuItem",href:"#"},"0 failing")),this.summaryMenuItem.onclick=function(){e.reporter.className=e.reporter.className.replace(/ showDetails/g,"")},this.detailsMenuItem.onclick=function(){t()}},this.addSpecs=function(t,s){this.totalSpecCount=t.length,this.views={specs:{},suites:{}};for(var i=0;i<t.length;i++){var a=t[i];this.views.specs[a.id]=new jasmine.HtmlReporter.SpecView(a,e,this.views),s(a)&&this.runningSpecCount++}},this.specComplete=function(t){this.completeSpecCount++,s(this.views.specs[t.id])&&(this.views.specs[t.id]=new jasmine.HtmlReporter.SpecView(t,e));var i=this.views.specs[t.id];switch(i.status()){case"passed":this.passedCount++;break;case"failed":this.failedCount++;break;case"skipped":this.skippedCount++}i.refresh(),this.refresh()},this.suiteComplete=function(e){var t=this.views.suites[e.id];s(t)||t.refresh()},this.refresh=function(){s(this.resultsMenu)&&this.createResultsMenu(),s(this.runningAlert)&&(this.runningAlert=this.createDom("a",{href:jasmine.HtmlReporter.sectionLink(),className:"runningAlert bar"}),e.alert.appendChild(this.runningAlert)),this.runningAlert.innerHTML="Running "+this.completeSpecCount+" of "+a(this.totalSpecCount),s(this.skippedAlert)&&(this.skippedAlert=this.createDom("a",{href:jasmine.HtmlReporter.sectionLink(),className:"skippedAlert bar"})),this.skippedAlert.innerHTML="Skipping "+this.skippedCount+" of "+a(this.totalSpecCount)+" - run all",1===this.skippedCount&&i(e.alert)&&e.alert.appendChild(this.skippedAlert),s(this.passedAlert)&&(this.passedAlert=this.createDom("span",{href:jasmine.HtmlReporter.sectionLink(),className:"passingAlert bar"})),this.passedAlert.innerHTML="Passing "+a(this.passedCount),s(this.failedAlert)&&(this.failedAlert=this.createDom("span",{href:"?",className:"failingAlert bar"})),this.failedAlert.innerHTML="Failing "+a(this.failedCount),1===this.failedCount&&i(e.alert)&&(e.alert.appendChild(this.failedAlert),e.alert.appendChild(this.resultsMenu)),this.summaryMenuItem.innerHTML=""+a(this.runningSpecCount),this.detailsMenuItem.innerHTML=""+this.failedCount+" failing"},this.complete=function(){e.alert.removeChild(this.runningAlert),this.skippedAlert.innerHTML="Ran "+this.runningSpecCount+" of "+a(this.totalSpecCount)+" - run all",0===this.failedCount?e.alert.appendChild(this.createDom("span",{className:"passingAlert bar"},"Passing "+a(this.passedCount))):t(),e.banner.appendChild(this.createDom("span",{className:"duration"},"finished in "+((new Date).getTime()-this.startedAt.getTime())/1e3+"s"))},this},jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.ReporterView),jasmine.HtmlReporter.SpecView=function(e,t,s){this.spec=e,this.dom=t,this.views=s,this.symbol=this.createDom("li",{className:"pending"}),this.dom.symbolSummary.appendChild(this.symbol),this.summary=this.createDom("div",{className:"specSummary"},this.createDom("a",{className:"description",href:jasmine.HtmlReporter.sectionLink(this.spec.getFullName()),title:this.spec.getFullName()},this.spec.description)),this.detail=this.createDom("div",{className:"specDetail"},this.createDom("a",{className:"description",href:"?spec="+encodeURIComponent(this.spec.getFullName()),title:this.spec.getFullName()},this.spec.getFullName()))},jasmine.HtmlReporter.SpecView.prototype.status=function(){return this.getSpecStatus(this.spec)},jasmine.HtmlReporter.SpecView.prototype.refresh=function(){switch(this.symbol.className=this.status(),this.status()){case"skipped":break;case"passed":this.appendSummaryToSuiteDiv();break;case"failed":this.appendSummaryToSuiteDiv(),this.appendFailureDetail()}},jasmine.HtmlReporter.SpecView.prototype.appendSummaryToSuiteDiv=function(){this.summary.className+=" "+this.status(),this.appendToSummary(this.spec,this.summary)},jasmine.HtmlReporter.SpecView.prototype.appendFailureDetail=function(){this.detail.className+=" "+this.status();for(var e=this.spec.results().getItems(),t=this.createDom("div",{className:"messages"}),s=0;s<e.length;s++){var i=e[s];"log"==i.type?t.appendChild(this.createDom("div",{className:"resultMessage log"},i.toString())):"expect"==i.type&&i.passed&&!i.passed()&&(t.appendChild(this.createDom("div",{className:"resultMessage fail"},i.message)),i.trace.stack&&t.appendChild(this.createDom("div",{className:"stackTrace"},i.trace.stack)))}t.childNodes.length>0&&(this.detail.appendChild(t),this.dom.details.appendChild(this.detail))},jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SpecView),jasmine.HtmlReporter.SuiteView=function(e,t,s){this.suite=e,this.dom=t,this.views=s,this.element=this.createDom("div",{className:"suite"},this.createDom("a",{className:"description",href:jasmine.HtmlReporter.sectionLink(this.suite.getFullName())},this.suite.description)),this.appendToSummary(this.suite,this.element)},jasmine.HtmlReporter.SuiteView.prototype.status=function(){return this.getSpecStatus(this.suite)},jasmine.HtmlReporter.SuiteView.prototype.refresh=function(){this.element.className+=" "+this.status()},jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SuiteView),jasmine.TrivialReporter=function(e){this.document=e||document,this.suiteDivs={},this.logRunningSpecs=!1},jasmine.TrivialReporter.prototype.createDom=function(e,t){for(var s=document.createElement(e),i=2;i<arguments.length;i++){var a=arguments[i];"string"==typeof a?s.appendChild(document.createTextNode(a)):a&&s.appendChild(a)}for(var r in t)"className"==r?s[r]=t[r]:s.setAttribute(r,t[r]);return s},jasmine.TrivialReporter.prototype.reportRunnerStarting=function(e){var t,s;this.outerDiv=this.createDom("div",{id:"TrivialReporter",className:"jasmine_reporter"},this.createDom("div",{className:"banner"},this.createDom("div",{className:"logo"},this.createDom("span",{className:"title"},"Jasmine"),this.createDom("span",{className:"version"},e.env.versionString())),this.createDom("div",{className:"options"},"Show ",t=this.createDom("input",{id:"__jasmine_TrivialReporter_showPassed__",type:"checkbox"}),this.createDom("label",{"for":"__jasmine_TrivialReporter_showPassed__"}," passed "),s=this.createDom("input",{id:"__jasmine_TrivialReporter_showSkipped__",type:"checkbox"}),this.createDom("label",{"for":"__jasmine_TrivialReporter_showSkipped__"}," skipped"))),this.runnerDiv=this.createDom("div",{className:"runner running"},this.createDom("a",{className:"run_spec",href:"?"},"run all"),this.runnerMessageSpan=this.createDom("span",{},"Running..."),this.finishedAtSpan=this.createDom("span",{className:"finished-at"},""))),this.document.body.appendChild(this.outerDiv);for(var i=e.suites(),a=0;a<i.length;a++){var r=i[a],n=this.createDom("div",{className:"suite"},this.createDom("a",{className:"run_spec",href:"?spec="+encodeURIComponent(r.getFullName())},"run"),this.createDom("a",{className:"description",href:"?spec="+encodeURIComponent(r.getFullName())},r.description));this.suiteDivs[r.id]=n;var o=this.outerDiv;r.parentSuite&&(o=this.suiteDivs[r.parentSuite.id]),o.appendChild(n)}this.startedAt=new Date;var p=this;t.onclick=function(){t.checked?p.outerDiv.className+=" show-passed":p.outerDiv.className=p.outerDiv.className.replace(/ show-passed/,"")},s.onclick=function(){s.checked?p.outerDiv.className+=" show-skipped":p.outerDiv.className=p.outerDiv.className.replace(/ show-skipped/,"")}},jasmine.TrivialReporter.prototype.reportRunnerResults=function(e){var t=e.results(),s=t.failedCount>0?"runner failed":"runner passed";this.runnerDiv.setAttribute("class",s),this.runnerDiv.setAttribute("className",s);for(var i=e.specs(),a=0,r=0;r<i.length;r++)this.specFilter(i[r])&&a++;var n=""+a+" spec"+(1==a?"":"s")+", "+t.failedCount+" failure"+(1==t.failedCount?"":"s");n+=" in "+((new Date).getTime()-this.startedAt.getTime())/1e3+"s",this.runnerMessageSpan.replaceChild(this.createDom("a",{className:"description",href:"?"},n),this.runnerMessageSpan.firstChild),this.finishedAtSpan.appendChild(document.createTextNode("Finished at "+(new Date).toString()))},jasmine.TrivialReporter.prototype.reportSuiteResults=function(e){var t=e.results(),s=t.passed()?"passed":"failed";0===t.totalCount&&(s="skipped"),this.suiteDivs[e.id].className+=" "+s},jasmine.TrivialReporter.prototype.reportSpecStarting=function(e){this.logRunningSpecs&&this.log(">> Jasmine Running "+e.suite.description+" "+e.description+"...")},jasmine.TrivialReporter.prototype.reportSpecResults=function(e){var t=e.results(),s=t.passed()?"passed":"failed";t.skipped&&(s="skipped");for(var i=this.createDom("div",{className:"spec "+s},this.createDom("a",{className:"run_spec",href:"?spec="+encodeURIComponent(e.getFullName())},"run"),this.createDom("a",{className:"description",href:"?spec="+encodeURIComponent(e.getFullName()),title:e.getFullName()},e.description)),a=t.getItems(),r=this.createDom("div",{className:"messages"}),n=0;n<a.length;n++){var o=a[n];"log"==o.type?r.appendChild(this.createDom("div",{className:"resultMessage log"},o.toString())):"expect"==o.type&&o.passed&&!o.passed()&&(r.appendChild(this.createDom("div",{className:"resultMessage fail"},o.message)),o.trace.stack&&r.appendChild(this.createDom("div",{className:"stackTrace"},o.trace.stack)))}r.childNodes.length>0&&i.appendChild(r),this.suiteDivs[e.suite.id].appendChild(i)},jasmine.TrivialReporter.prototype.log=function(){var e=jasmine.getGlobal().console;e&&e.log&&(e.log.apply?e.log.apply(e,arguments):e.log(arguments))},jasmine.TrivialReporter.prototype.getLocation=function(){return this.document.location},jasmine.TrivialReporter.prototype.specFilter=function(e){for(var t={},s=this.getLocation().search.substring(1).split("&"),i=0;i<s.length;i++){var a=s[i].split("=");t[decodeURIComponent(a[0])]=decodeURIComponent(a[1])}return t.spec?0===e.getFullName().indexOf(t.spec):!0};
@@ -0,0 +1,80 @@
1
+ body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; }
2
+ #HTMLReporter { font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333333; }
3
+ #HTMLReporter a { text-decoration: none; }
4
+ #HTMLReporter a:hover { text-decoration: underline; }
5
+ #HTMLReporter p, #HTMLReporter h1, #HTMLReporter h2, #HTMLReporter h3, #HTMLReporter h4, #HTMLReporter h5, #HTMLReporter h6 { margin: 0; line-height: 14px; }
6
+ #HTMLReporter .banner, #HTMLReporter .symbolSummary, #HTMLReporter .summary, #HTMLReporter .resultMessage, #HTMLReporter .specDetail .description, #HTMLReporter .alert .bar, #HTMLReporter .stackTrace { padding-left: 9px; padding-right: 9px; }
7
+ #HTMLReporter #jasmine_content { position: fixed; right: 100%; }
8
+ #HTMLReporter .version { color: #aaaaaa; }
9
+ #HTMLReporter .banner { margin-top: 14px; }
10
+ #HTMLReporter .duration { color: #aaaaaa; float: right; }
11
+ #HTMLReporter .symbolSummary { overflow: hidden; *zoom: 1; margin: 14px 0; }
12
+ #HTMLReporter .symbolSummary li { display: block; float: left; height: 7px; width: 14px; margin-bottom: 7px; font-size: 16px; }
13
+ #HTMLReporter .symbolSummary li.passed { font-size: 14px; }
14
+ #HTMLReporter .symbolSummary li.passed:before { color: #5e7d00; content: "\02022"; }
15
+ #HTMLReporter .symbolSummary li.failed { line-height: 9px; }
16
+ #HTMLReporter .symbolSummary li.failed:before { color: #b03911; content: "x"; font-weight: bold; margin-left: -1px; }
17
+ #HTMLReporter .symbolSummary li.skipped { font-size: 14px; }
18
+ #HTMLReporter .symbolSummary li.skipped:before { color: #bababa; content: "\02022"; }
19
+ #HTMLReporter .symbolSummary li.pending { line-height: 11px; }
20
+ #HTMLReporter .symbolSummary li.pending:before { color: #aaaaaa; content: "-"; }
21
+ #HTMLReporter .exceptions { color: #fff; float: right; margin-top: 5px; margin-right: 5px; }
22
+ #HTMLReporter .bar { line-height: 28px; font-size: 14px; display: block; color: #eee; }
23
+ #HTMLReporter .runningAlert { background-color: #666666; }
24
+ #HTMLReporter .skippedAlert { background-color: #aaaaaa; }
25
+ #HTMLReporter .skippedAlert:first-child { background-color: #333333; }
26
+ #HTMLReporter .skippedAlert:hover { text-decoration: none; color: white; text-decoration: underline; }
27
+ #HTMLReporter .passingAlert { background-color: #a6b779; }
28
+ #HTMLReporter .passingAlert:first-child { background-color: #5e7d00; }
29
+ #HTMLReporter .failingAlert { background-color: #cf867e; }
30
+ #HTMLReporter .failingAlert:first-child { background-color: #b03911; }
31
+ #HTMLReporter .results { margin-top: 14px; }
32
+ #HTMLReporter #details { display: none; }
33
+ #HTMLReporter .resultsMenu, #HTMLReporter .resultsMenu a { background-color: #fff; color: #333333; }
34
+ #HTMLReporter.showDetails .summaryMenuItem { font-weight: normal; text-decoration: inherit; }
35
+ #HTMLReporter.showDetails .summaryMenuItem:hover { text-decoration: underline; }
36
+ #HTMLReporter.showDetails .detailsMenuItem { font-weight: bold; text-decoration: underline; }
37
+ #HTMLReporter.showDetails .summary { display: none; }
38
+ #HTMLReporter.showDetails #details { display: block; }
39
+ #HTMLReporter .summaryMenuItem { font-weight: bold; text-decoration: underline; }
40
+ #HTMLReporter .summary { margin-top: 14px; }
41
+ #HTMLReporter .summary .suite .suite, #HTMLReporter .summary .specSummary { margin-left: 14px; }
42
+ #HTMLReporter .summary .specSummary.passed a { color: #5e7d00; }
43
+ #HTMLReporter .summary .specSummary.failed a { color: #b03911; }
44
+ #HTMLReporter .description + .suite { margin-top: 0; }
45
+ #HTMLReporter .suite { margin-top: 14px; }
46
+ #HTMLReporter .suite a { color: #333333; }
47
+ #HTMLReporter #details .specDetail { margin-bottom: 28px; }
48
+ #HTMLReporter #details .specDetail .description { display: block; color: white; background-color: #b03911; }
49
+ #HTMLReporter .resultMessage { padding-top: 14px; color: #333333; }
50
+ #HTMLReporter .resultMessage span.result { display: block; }
51
+ #HTMLReporter .stackTrace { margin: 5px 0 0 0; max-height: 224px; overflow: auto; line-height: 18px; color: #666666; border: 1px solid #ddd; background: white; white-space: pre; }
52
+ #TrivialReporter { padding: 8px 13px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow-y: scroll; background-color: white; font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif; }
53
+ #TrivialReporter a:visited, #TrivialReporter a { color: #303; }
54
+ #TrivialReporter a:hover, #TrivialReporter a:active { color: blue; }
55
+ #TrivialReporter .run_spec { float: right; padding-right: 5px; font-size: .8em; text-decoration: none; }
56
+ #TrivialReporter .banner { color: #303; background-color: #fef; padding: 5px; }
57
+ #TrivialReporter .logo { float: left; font-size: 1.1em; padding-left: 5px; }
58
+ #TrivialReporter .logo .version { font-size: .6em; padding-left: 1em; }
59
+ #TrivialReporter .runner.running { background-color: yellow; }
60
+ #TrivialReporter .options { text-align: right; font-size: .8em; }
61
+ #TrivialReporter .suite { border: 1px outset gray; margin: 5px 0; padding-left: 1em; }
62
+ #TrivialReporter .suite .suite { margin: 5px; }
63
+ #TrivialReporter .suite.passed { background-color: #dfd; }
64
+ #TrivialReporter .suite.failed { background-color: #fdd; }
65
+ #TrivialReporter .spec { margin: 5px; padding-left: 1em; clear: both; }
66
+ #TrivialReporter .spec.failed, #TrivialReporter .spec.passed, #TrivialReporter .spec.skipped { padding-bottom: 5px; border: 1px solid gray; }
67
+ #TrivialReporter .spec.failed { background-color: #fbb; border-color: red; }
68
+ #TrivialReporter .spec.passed { background-color: #bfb; border-color: green; }
69
+ #TrivialReporter .spec.skipped { background-color: #bbb; }
70
+ #TrivialReporter .messages { border-left: 1px dashed gray; padding-left: 1em; padding-right: 1em; }
71
+ #TrivialReporter .passed { background-color: #cfc; display: none; }
72
+ #TrivialReporter .failed { background-color: #fbb; }
73
+ #TrivialReporter .skipped { color: #777; background-color: #eee; display: none; }
74
+ #TrivialReporter .resultMessage span.result { display: block; line-height: 2em; color: black; }
75
+ #TrivialReporter .resultMessage .mismatch { color: black; }
76
+ #TrivialReporter .stackTrace { white-space: pre; font-size: .8em; margin-left: 10px; max-height: 5em; overflow: auto; border: 1px inset red; padding: 1em; background: #eef; }
77
+ #TrivialReporter .finished-at { padding-left: 1em; font-size: .6em; }
78
+ #TrivialReporter.show-passed .passed, #TrivialReporter.show-skipped .skipped { display: block; }
79
+ #TrivialReporter #jasmine_content { position: fixed; right: 100%; }
80
+ #TrivialReporter .runner { border: 1px solid gray; display: block; margin: 5px 0; padding: 2px 0 2px 10px; }