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 @@
1
+ $(document).ready(function(){module("testBase"),test("eviltest",function(){expect(1);var s="xquery version &quot;1.0-ml&quot;; (: this is : a \"comment\" :) let $let := &lt;x attr=&quot;value&quot;&gt;&quot;test&quot;&lt;func&gt;function() $var {function()} {$var}&lt;/func&gt;&lt;/x&gt; let $joe:=1 return element element { attribute attribute { 1 }, element test { &#39;a&#39; }, attribute foo { &quot;bar&quot; }, fn:doc()[ foo/@bar eq $let ], //x } (: a more 'evil' test :) (: Modified Blakeley example (: with nested comment :) ... :) declare private function local:declare() {()}; declare private function local:private() {()}; declare private function local:function() {()}; declare private function local:local() {()}; let $let := &lt;let&gt;let $let := &quot;let&quot;&lt;/let&gt; return element element { attribute attribute { try { xdmp:version() } catch($e) { xdmp:log($e) } }, attribute fn:doc { &quot;bar&quot; castable as xs:string }, element text { text { &quot;text&quot; } }, fn:doc()[ child::eq/(@bar | attribute::attribute) eq $let ], //fn:doc }",a='<span class="cm-keyword">xquery</span> <span class="cm-keyword">version</span> <span class="cm-string">"1.0-ml"</span><span class="cm-variable cm-def">;</span> <span class="cm-comment">(: this is : a "comment" :)</span> <span class="cm-keyword">let</span> <span class="cm-variable">$let</span> <span class="cm-keyword">:=</span> <span class="cm-tag">&lt;x </span><span class="cm-attribute">attr</span>=<span class="cm-string">"value"</span><span class="cm-tag">&gt;</span><span class="cm-word">"test"</span><span class="cm-tag">&lt;func&gt;</span><span class="cm-word">function()</span> <span class="cm-word">$var</span> {<span class="cm-keyword">function</span>()} {<span class="cm-variable">$var</span>}<span class="cm-tag">&lt;/func&gt;&lt;/x&gt;</span> <span class="cm-keyword">let</span> <span class="cm-variable">$joe</span><span class="cm-keyword">:=</span><span class="cm-atom">1</span> <span class="cm-keyword">return</span> <span class="cm-keyword">element</span> <span class="cm-word">element</span> { <span class="cm-keyword">attribute</span> <span class="cm-word">attribute</span> { <span class="cm-atom">1</span> }, <span class="cm-keyword">element</span> <span class="cm-word">test</span> { <span class="cm-string">\'a\'</span> }, <span class="cm-keyword">attribute</span> <span class="cm-word">foo</span> { <span class="cm-string">"bar"</span> }, <span class="cm-variable cm-def">fn:doc</span>()[ <span class="cm-word">foo</span><span class="cm-keyword">/</span><span class="cm-word">@bar</span> <span class="cm-keyword">eq</span> <span class="cm-variable">$let</span> ], <span class="cm-keyword">//</span><span class="cm-word">x</span> } <span class="cm-comment">(: a more \'evil\' test :)</span> <span class="cm-comment">(: Modified Blakeley example (: with nested comment :) ... :)</span> <span class="cm-keyword">declare</span> <span class="cm-keyword">private</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">local:declare</span>() {()}<span class="cm-word">;</span> <span class="cm-keyword">declare</span> <span class="cm-keyword">private</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">local:private</span>() {()}<span class="cm-word">;</span> <span class="cm-keyword">declare</span> <span class="cm-keyword">private</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">local:function</span>() {()}<span class="cm-word">;</span> <span class="cm-keyword">declare</span> <span class="cm-keyword">private</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">local:local</span>() {()}<span class="cm-word">;</span> <span class="cm-keyword">let</span> <span class="cm-variable">$let</span> <span class="cm-keyword">:=</span> <span class="cm-tag">&lt;let&gt;</span><span class="cm-word">let</span> <span class="cm-word">$let</span> <span class="cm-word">:=</span> <span class="cm-word">"let"</span><span class="cm-tag">&lt;/let&gt;</span> <span class="cm-keyword">return</span> <span class="cm-keyword">element</span> <span class="cm-word">element</span> { <span class="cm-keyword">attribute</span> <span class="cm-word">attribute</span> { <span class="cm-keyword">try</span> { <span class="cm-variable cm-def">xdmp:version</span>() } <span class="cm-keyword">catch</span>(<span class="cm-variable">$e</span>) { <span class="cm-variable cm-def">xdmp:log</span>(<span class="cm-variable">$e</span>) } }, <span class="cm-keyword">attribute</span> <span class="cm-word">fn:doc</span> { <span class="cm-string">"bar"</span> <span class="cm-word">castable</span> <span class="cm-keyword">as</span> <span class="cm-atom">xs:string</span> }, <span class="cm-keyword">element</span> <span class="cm-word">text</span> { <span class="cm-keyword">text</span> { <span class="cm-string">"text"</span> } }, <span class="cm-variable cm-def">fn:doc</span>()[ <span class="cm-qualifier">child::</span><span class="cm-word">eq</span><span class="cm-keyword">/</span>(<span class="cm-word">@bar</span> <span class="cm-keyword">|</span> <span class="cm-qualifier">attribute::</span><span class="cm-word">attribute</span>) <span class="cm-keyword">eq</span> <span class="cm-variable">$let</span> ], <span class="cm-keyword">//</span><span class="cm-word">fn:doc</span> }';$("#sandbox").html('<textarea id="editor">'+s+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var n=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(n,a),$("#editor").html("")})});
@@ -0,0 +1 @@
1
+ $(document).ready(function(){module("testEmptySequenceKeyword"),test("testEmptySequenceKeyword",function(){expect(1);var e='"foo" instance of empty-sequence()',t='<span class="cm-string">"foo"</span> <span class="cm-keyword">instance</span> <span class="cm-keyword">of</span> <span class="cm-keyword">empty-sequence</span>()';$("#sandbox").html('<textarea id="editor">'+e+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var n=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(n,t),$("#editor").html("")})});
@@ -0,0 +1 @@
1
+ $(document).ready(function(){module("testMultiAttr"),test("test1",function(){expect(1);var a='<span class="cm-tag">&lt;p </span><span class="cm-attribute">a1</span>=<span class="cm-string">"foo"</span> <span class="cm-attribute">a2</span>=<span class="cm-string">"bar"</span><span class="cm-tag">&gt;</span><span class="cm-word">hello</span> <span class="cm-word">world</span><span class="cm-tag">&lt;/p&gt;</span>';$("#sandbox").html('<textarea id="editor"></textarea>'),$("#editor").html('<p a1="foo" a2="bar">hello world</p>'),CodeMirror.fromTextArea($("#editor")[0]);var s=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(s,a),$("#editor").html("")})});
@@ -0,0 +1 @@
1
+ $(document).ready(function(){module("test namespaces"),test("test namespaced variable",function(){expect(1);var a='declare namespace e = "http://example.com/ANamespace";declare variable $e:exampleComThisVarIsNotRecognized as element(*) external;',s='<span class="cm-keyword">declare</span> <span class="cm-keyword">namespace</span> <span class="cm-word">e</span> <span class="cm-keyword">=</span> <span class="cm-string">"http://example.com/ANamespace"</span><span class="cm-word">;declare</span> <span class="cm-keyword">variable</span> <span class="cm-variable">$e:exampleComThisVarIsNotRecognized</span> <span class="cm-keyword">as</span> <span class="cm-keyword">element</span>(<span class="cm-keyword">*</span>) <span class="cm-word">external;</span>';$("#sandbox").html('<textarea id="editor">'+a+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var e=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(e,s),$("#editor").html("")}),test("test EQName variable",function(){expect(1);var a='declare variable $"http://www.example.com/ns/my":var := 12;<out>{$"http://www.example.com/ns/my":var}</out>',s='<span class="cm-keyword">declare</span> <span class="cm-keyword">variable</span> <span class="cm-variable">$"http://www.example.com/ns/my":var</span> <span class="cm-keyword">:=</span> <span class="cm-atom">12</span><span class="cm-word">;</span><span class="cm-tag">&lt;out&gt;</span>{<span class="cm-variable">$"http://www.example.com/ns/my":var</span>}<span class="cm-tag">&lt;/out&gt;</span>';$("#sandbox").html('<textarea id="editor">'+a+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var e=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(e,s),$("#editor").html("")}),test("test EQName function",function(){expect(1);var a='declare function "http://www.example.com/ns/my":fn ($a as xs:integer) as xs:integer { $a + 2};<out>{"http://www.example.com/ns/my":fn(12)}</out>',s='<span class="cm-keyword">declare</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">"http://www.example.com/ns/my":fn</span> (<span class="cm-variable">$a</span> <span class="cm-keyword">as</span> <span class="cm-atom">xs:integer</span>) <span class="cm-keyword">as</span> <span class="cm-atom">xs:integer</span> { <span class="cm-variable">$a</span> <span class="cm-keyword">+</span> <span class="cm-atom">2</span>}<span class="cm-word">;</span><span class="cm-tag">&lt;out&gt;</span>{<span class="cm-variable cm-def">"http://www.example.com/ns/my":fn</span>(<span class="cm-atom">12</span>)}<span class="cm-tag">&lt;/out&gt;</span>';$("#sandbox").html('<textarea id="editor">'+a+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var e=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(e,s),$("#editor").html("")}),test("test EQName function with single quotes",function(){expect(1);var a="declare function 'http://www.example.com/ns/my':fn ($a as xs:integer) as xs:integer { $a + 2};<out>{'http://www.example.com/ns/my':fn(12)}</out>",s='<span class="cm-keyword">declare</span> <span class="cm-keyword">function</span> <span class="cm-variable cm-def">\'http://www.example.com/ns/my\':fn</span> (<span class="cm-variable">$a</span> <span class="cm-keyword">as</span> <span class="cm-atom">xs:integer</span>) <span class="cm-keyword">as</span> <span class="cm-atom">xs:integer</span> { <span class="cm-variable">$a</span> <span class="cm-keyword">+</span> <span class="cm-atom">2</span>}<span class="cm-word">;</span><span class="cm-tag">&lt;out&gt;</span>{<span class="cm-variable cm-def">\'http://www.example.com/ns/my\':fn</span>(<span class="cm-atom">12</span>)}<span class="cm-tag">&lt;/out&gt;</span>';$("#sandbox").html('<textarea id="editor">'+a+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var e=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(e,s),$("#editor").html("")})});
@@ -0,0 +1 @@
1
+ $(document).ready(function(){module("testProcessingInstructions"),test("testProcessingInstructions",function(){expect(1);var t="data(<?target content?>) instance of xs:string",s='<span class="cm-variable cm-def">data</span>(<span class="cm-comment cm-meta">&lt;?target content?&gt;</span>) <span class="cm-keyword">instance</span> <span class="cm-keyword">of</span> <span class="cm-atom">xs:string</span>';$("#sandbox").html('<textarea id="editor">'+t+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var a=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(a,s),$("#editor").html("")})});
@@ -0,0 +1 @@
1
+ $(document).ready(function(){module("testQuoteEscape"),test("testQuoteEscapeDouble",function(){expect(1);var s='let $rootfolder := "c:\\builds\\winnt\\HEAD\\qa\\scripts\\"let $keysfolder := concat($rootfolder, "keys\\")return$keysfolder',a='<span class="cm-keyword">let</span> <span class="cm-variable">$rootfolder</span> <span class="cm-keyword">:=</span> <span class="cm-string">"c:\\builds\\winnt\\HEAD\\qa\\scripts\\"</span><span class="cm-keyword">let</span> <span class="cm-variable">$keysfolder</span> <span class="cm-keyword">:=</span> <span class="cm-variable cm-def">concat</span>(<span class="cm-variable">$rootfolder</span>, <span class="cm-string">"keys\\"</span>)<span class="cm-word">return$keysfolder</span>';$("#sandbox").html('<textarea id="editor">'+s+"</textarea>"),CodeMirror.fromTextArea($("#editor")[0]);var e=$(".CodeMirror-lines div div pre")[0].innerHTML;equal(e,a),$("#editor").html("")})});
@@ -0,0 +1,24 @@
1
+ /*
2
+ Copyright (C) 2011 by MarkLogic Corporation
3
+ Author: Mike Brevoort <mike@brevoort.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
22
+ */
23
+
24
+ CodeMirror.defineMode("xquery",function(){function e(e,t,n){return k=e,b=n,t}function t(e,t,n){return t.tokenize=n,n(e,t)}function n(n,c){var m=n.next(),g=!1,y=p(n);if("<"==m){if(n.match("!--",!0))return t(n,c,u);if(n.match("![CDATA",!1))return c.tokenize=s,e("tag","tag");if(n.match("?",!1))return t(n,c,f);var k=n.eat("/");n.eatSpace();for(var b,z="";b=n.eat(/[^\s\u00a0=<>\"\'\/?]/);)z+=b;return t(n,c,o(z,k))}if("{"==m)return h(c,{type:"codeblock"}),e("","");if("}"==m)return x(c),e("","");if(l(c))return">"==m?e("tag","tag"):"/"==m&&n.eat(">")?(x(c),e("tag","tag")):e("word","variable");if(/\d/.test(m))return n.match(/^\d*(?:\.\d*)?(?:E[+\-]?\d+)?/),e("number","atom");if("("===m&&n.eat(":"))return h(c,{type:"comment"}),t(n,c,r);if(y||'"'!==m&&"'"!==m){if("$"===m)return t(n,c,i);if(":"===m&&n.eat("="))return e("operator","keyword");if("("===m)return h(c,{type:"paren"}),e("","");if(")"===m)return x(c),e("","");if("["===m)return h(c,{type:"bracket"}),e("","");if("]"===m)return x(c),e("","");var w=v.propertyIsEnumerable(m)&&v[m];if(y&&'"'===m)for(;'"'!==n.next(););if(y&&"'"===m)for(;"'"!==n.next(););w||n.eatWhile(/[\w\$_-]/);var q=n.eat(":");!n.eat(":")&&q&&n.eatWhile(/[\w\$_-]/),n.match(/^[ \t]*\(/,!1)&&(g=!0);var _=n.current();return w=v.propertyIsEnumerable(_)&&v[_],g&&!w&&(w={type:"function_call",style:"variable def"}),d(c)?(x(c),e("word","variable",_)):(("element"==_||"attribute"==_||"axis_specifier"==w.type)&&h(c,{type:"xmlconstructor"}),w?e(w.type,w.style,_):e("word","variable",_))}return t(n,c,a(m))}function r(t,n){for(var r,a=!1,i=!1,o=0;r=t.next();){if(")"==r&&a){if(!(o>0)){x(n);break}o--}else":"==r&&i&&o++;a=":"==r,i="("==r}return e("comment","comment")}function a(t,r){return function(i,o){var c;if(g(o)&&i.current()==t)return x(o),r&&(o.tokenize=r),e("string","string");if(h(o,{type:"string",name:t,tokenize:a(t,r)}),i.match("{",!1)&&m(o))return o.tokenize=n,e("string","string");for(;c=i.next();){if(c==t){x(o),r&&(o.tokenize=r);break}if(i.match("{",!1)&&m(o))return o.tokenize=n,e("string","string")}return e("string","string")}}function i(t,r){var a=/[\w\$_-]/;if(t.eat('"')){for(;'"'!==t.next(););t.eat(":")}else t.eatWhile(a),t.match(":=",!1)||t.eat(":");return t.eatWhile(a),r.tokenize=n,e("variable","variable")}function o(t,r){return function(a,i){return a.eatSpace(),r&&a.eat(">")?(x(i),i.tokenize=n,e("tag","tag")):(a.eat("/")||h(i,{type:"tag",name:t,tokenize:n}),a.eat(">")?(i.tokenize=n,e("tag","tag")):(i.tokenize=c,e("tag","tag")))}}function c(r,i){var o=r.next();return"/"==o&&r.eat(">")?(m(i)&&x(i),l(i)&&x(i),e("tag","tag")):">"==o?(m(i)&&x(i),e("tag","tag")):"="==o?e("",""):'"'==o||"'"==o?t(r,i,a(o,c)):(m(i)||h(i,{type:"attribute",name:name,tokenize:c}),r.eat(/[a-zA-Z_:]/),r.eatWhile(/[-a-zA-Z0-9_:.]/),r.eatSpace(),(r.match(">",!1)||r.match("/",!1))&&(x(i),i.tokenize=n),e("attribute","attribute"))}function u(t,r){for(var a;a=t.next();)if("-"==a&&t.match("->",!0))return r.tokenize=n,e("comment","comment")}function s(t,r){for(var a;a=t.next();)if("]"==a&&t.match("]",!0))return r.tokenize=n,e("comment","comment")}function f(t,r){for(var a;a=t.next();)if("?"==a&&t.match(">",!0))return r.tokenize=n,e("comment","comment meta")}function l(e){return y(e,"tag")}function m(e){return y(e,"attribute")}function d(e){return y(e,"xmlconstructor")}function g(e){return y(e,"string")}function p(e){return'"'===e.current()?e.match(/^[^\"]+\"\:/,!1):"'"===e.current()?e.match(/^[^\"]+\'\:/,!1):!1}function y(e,t){return e.stack.length&&e.stack[e.stack.length-1].type==t}function h(e,t){e.stack.push(t)}function x(e){e.stack.pop();var t=e.stack.length&&e.stack[e.stack.length-1].tokenize;e.tokenize=t||n}var k,b,v=function(){function e(e){return{type:e,style:"keyword"}}for(var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),a=e("operator"),i={type:"atom",style:"atom"},o={type:"punctuation",style:""},c={type:"axis_specifier",style:"qualifier"},u={"if":t,"switch":t,"while":t,"for":t,"else":n,then:n,"try":n,"finally":n,"catch":n,element:r,attribute:r,let:r,"implements":r,"import":r,module:r,namespace:r,"return":r,"super":r,"this":r,"throws":r,where:r,"private":r,",":o,"null":i,"fn:false()":i,"fn:true()":i},s=["after","ancestor","ancestor-or-self","and","as","ascending","assert","attribute","before","by","case","cast","child","comment","declare","default","define","descendant","descendant-or-self","descending","document","document-node","element","else","eq","every","except","external","following","following-sibling","follows","for","function","if","import","in","instance","intersect","item","let","module","namespace","node","node","of","only","or","order","parent","precedes","preceding","preceding-sibling","processing-instruction","ref","return","returns","satisfies","schema","schema-element","self","some","sortby","stable","text","then","to","treat","typeswitch","union","variable","version","where","xquery","empty-sequence"],f=0,l=s.length;l>f;f++)u[s[f]]=e(s[f]);for(var m=["xs:string","xs:float","xs:decimal","xs:double","xs:integer","xs:boolean","xs:date","xs:dateTime","xs:time","xs:duration","xs:dayTimeDuration","xs:time","xs:yearMonthDuration","numeric","xs:hexBinary","xs:base64Binary","xs:anyURI","xs:QName","xs:byte","xs:boolean","xs:anyURI","xf:yearMonthDuration"],f=0,l=m.length;l>f;f++)u[m[f]]=i;for(var d=["eq","ne","lt","le","gt","ge",":=","=",">",">=","<","<=",".","|","?","and","or","div","idiv","mod","*","/","+","-"],f=0,l=d.length;l>f;f++)u[d[f]]=a;for(var g=["self::","attribute::","child::","descendant::","descendant-or-self::","parent::","ancestor::","ancestor-or-self::","following::","preceding::","following-sibling::","preceding-sibling::"],f=0,l=g.length;l>f;f++)u[g[f]]=c;return u}();return{startState:function(){return{tokenize:n,cc:[],stack:[]}},token:function(e,t){if(e.eatSpace())return null;var n=t.tokenize(e,t);return n}}}),CodeMirror.defineMIME("application/xquery","xquery");
@@ -0,0 +1,68 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>CodeMirror: YAML mode</title>
6
+ <link rel="stylesheet" href="../../lib/codemirror.css">
7
+ <script src="../../lib/codemirror.js"></script>
8
+ <script src="yaml.js"></script>
9
+ <style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style>
10
+ <link rel="stylesheet" href="../../doc/docs.css">
11
+ </head>
12
+ <body>
13
+ <h1>CodeMirror: YAML mode</h1>
14
+ <form><textarea id="code" name="code">
15
+ --- # Favorite movies
16
+ - Casablanca
17
+ - North by Northwest
18
+ - The Man Who Wasn't There
19
+ --- # Shopping list
20
+ [milk, pumpkin pie, eggs, juice]
21
+ --- # Indented Blocks, common in YAML data files, use indentation and new lines to separate the key: value pairs
22
+ name: John Smith
23
+ age: 33
24
+ --- # Inline Blocks, common in YAML data streams, use commas to separate the key: value pairs between braces
25
+ {name: John Smith, age: 33}
26
+ ---
27
+ receipt: Oz-Ware Purchase Invoice
28
+ date: 2007-08-06
29
+ customer:
30
+ given: Dorothy
31
+ family: Gale
32
+
33
+ items:
34
+ - part_no: A4786
35
+ descrip: Water Bucket (Filled)
36
+ price: 1.47
37
+ quantity: 4
38
+
39
+ - part_no: E1628
40
+ descrip: High Heeled "Ruby" Slippers
41
+ size: 8
42
+ price: 100.27
43
+ quantity: 1
44
+
45
+ bill-to: &id001
46
+ street: |
47
+ 123 Tornado Alley
48
+ Suite 16
49
+ city: East Centerville
50
+ state: KS
51
+
52
+ ship-to: *id001
53
+
54
+ specialDelivery: >
55
+ Follow the Yellow Brick
56
+ Road to the Emerald City.
57
+ Pay no attention to the
58
+ man behind the curtain.
59
+ ...
60
+ </textarea></form>
61
+ <script>
62
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
63
+ </script>
64
+
65
+ <p><strong>MIME types defined:</strong> <code>text/x-yaml</code>.</p>
66
+
67
+ </body>
68
+ </html>
@@ -0,0 +1 @@
1
+ CodeMirror.defineMode("yaml",function(){var i=["true","false","on","off","yes","no"],e=new RegExp("\\b(("+i.join(")|(")+"))$","i");return{token:function(i,r){var t=i.peek(),n=r.escaped;if(r.escaped=!1,"#"==t)return i.skipToEnd(),"comment";if(r.literal&&i.indentation()>r.keyCol)return i.skipToEnd(),"string";if(r.literal&&(r.literal=!1),i.sol()){if(r.keyCol=0,r.pair=!1,r.pairStart=!1,i.match(/---/))return"def";if(i.match(/\.\.\./))return"def";if(i.match(/\s*-\s+/))return"meta"}if(!r.pair&&i.match(/^\s*([a-z0-9\._-])+(?=\s*:)/i))return r.pair=!0,r.keyCol=i.indentation(),"atom";if(r.pair&&i.match(/^:\s*/))return r.pairStart=!0,"meta";if(i.match(/^(\{|\}|\[|\])/))return"{"==t?r.inlinePairs++:"}"==t?r.inlinePairs--:"["==t?r.inlineList++:r.inlineList--,"meta";if(r.inlineList>0&&!n&&","==t)return i.next(),"meta";if(r.inlinePairs>0&&!n&&","==t)return r.keyCol=0,r.pair=!1,r.pairStart=!1,i.next(),"meta";if(r.pairStart){if(i.match(/^\s*(\||\>)\s*/))return r.literal=!0,"meta";if(i.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i))return"variable-2";if(0==r.inlinePairs&&i.match(/^\s*-?[0-9\.\,]+\s?$/))return"number";if(r.inlinePairs>0&&i.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/))return"number";if(i.match(e))return"keyword"}return r.pairStart=!1,r.escaped="\\"==t,i.next(),null},startState:function(){return{pair:!1,pairStart:!1,keyCol:0,inlinePairs:0,inlineList:0,literal:!1,escaped:!1}}}}),CodeMirror.defineMIME("text/x-yaml","yaml");
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "codemirror",
3
+ "version":"2.34.0",
4
+ "main": "codemirror.js",
5
+ "description": "In-browser code editing made bearable",
6
+ "licenses": [{"type": "MIT",
7
+ "url": "http://codemirror.net/LICENSE"}],
8
+ "directories": {"lib": "./lib"},
9
+ "scripts": {"test": "node ./test/run.js"},
10
+ "devDependencies": {"node-static": "0.6.0"},
11
+ "bugs": "http://github.com/marijnh/CodeMirror/issues",
12
+ "keywords": ["JavaScript", "CodeMirror", "Editor"],
13
+ "homepage": "http://codemirror.net",
14
+ "maintainers":[{"name": "Marijn Haverbeke",
15
+ "email": "marijnh@gmail.com",
16
+ "web": "http://marijnhaverbeke.nl"}],
17
+ "repositories": [{"type": "git",
18
+ "url": "http://marijnhaverbeke.nl/git/codemirror"},
19
+ {"type": "git",
20
+ "url": "https://github.com/marijnh/CodeMirror.git"}]
21
+ }
@@ -0,0 +1 @@
1
+ function Failure(e){this.message=e}function indexOf(e,n){if(e.indexOf)return e.indexOf(n);for(var t=0,i=e.length;i>t;++t)if(e[t]==n)return t;return-1}function test(e,n,t){for(var i=e,l=2;-1!==indexOf(allNames,e);)e=i+"_"+l,l++;return allNames.push(e),tests.push({name:e,func:n,expectedFail:t}),e}function testCM(e,n,t,i){return test("core_"+e,function(){var e=document.getElementById("testground"),i=CodeMirror(e,t),l=!1;try{n(i),l=!0}finally{debug&&!l||verbose?e.style.visibility="":e.removeChild(i.getWrapperElement())}},i)}function runTests(e){function n(i){if(i===tests.length)return running=!1,e("done");var l=tests[i],r=l.expectedFail,u=+new Date;if(null!==debug){var a=indexOf(debug,l.name);if(-1!==a)debug.splice(a,1);else{var s=l.name.split("_").shift()+"_*";if(a=indexOf(debug,s),-1!==a)debug.splice(a,1),debugUsed.push(s);else{if(a=indexOf(debugUsed,s),-1===a)return n(i+1);totalTests++}}}try{var f=l.func();r?e("fail",l.name,f):e("ok",l.name,f)}catch(o){if(r)e("expected",l.name);else if(o instanceof Failure)e("fail",l.name,o.message);else{var d=/\bat .*?([^\/:]+):(\d+):/.exec(o.stack);e("error",l.name,o.toString()+(d?" ("+d[1]+":"+d[2]+")":""))}}if(quit)return running=!1,null;var c=0;t+=+new Date-u,t>500&&(t=0,c=50),setTimeout(function(){n(i+1)},c)}debug&&(0===indexOf(debug,"verbose")&&(verbose=!0,debug.splice(0,1)),debug.length<1?debug=null:totalTests>debug.length&&(totalTests=debug.length));var t=0;n(0)}function label(e,n){return n?e+" ("+n+")":e}function eq(e,n,t){if(e!=n)throw new Failure(label(e+" != "+n,t))}function eqPos(e,n,t){function i(e){return"{line:"+e.line+",ch:"+e.ch+"}"}if(e!=n){if(null==e)throw new Failure(label("comparing null to "+i(n)));if(null==n)throw new Failure(label("comparing "+i(e)+" to null"));if(e.line!=n.line||e.ch!=n.ch)throw new Failure(label(i(e)+" != "+i(n),t))}}function is(e,n){if(!e)throw new Failure(label("assertion failed",n))}var tests=[],debug=null,debugUsed=new Array,allNames=[];
@@ -0,0 +1,168 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>CodeMirror: Test Suite</title>
6
+ <link rel="stylesheet" href="../lib/codemirror.css">
7
+ <link rel="stylesheet" href="../doc/docs.css">
8
+ <link rel="stylesheet" href="mode_test.css">
9
+ <script src="../lib/codemirror.js"></script>
10
+ <script src="../mode/javascript/javascript.js"></script>
11
+ <script src="../mode/xml/xml.js"></script>
12
+
13
+ <style type="text/css">
14
+ .ok {color: #090;}
15
+ .fail {color: #e00;}
16
+ .error {color: #c90;}
17
+ .done {font-weight: bold;}
18
+ #progress {
19
+ background: #45d;
20
+ color: white;
21
+ text-shadow: 0 0 1px #45d, 0 0 2px #45d, 0 0 3px #45d;
22
+ font-weight: bold;
23
+ white-space: pre;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body>
28
+ <h1>CodeMirror: Test Suite</h1>
29
+
30
+ <p>A limited set of programmatic sanity tests for CodeMirror.</p>
31
+
32
+ <div style="border: 1px solid black; padding: 1px; max-width: 700px;">
33
+ <div style="width: 0px;" id=progress><div style="padding: 3px;">Ran <span id="progress_ran">0</span><span id="progress_total"> of 0</span> tests</div></div>
34
+ </div>
35
+ <p id=status>Please enable JavaScript...</p>
36
+ <div id=output></div>
37
+
38
+ <div style="visibility: hidden" id=testground></div>
39
+
40
+ <script src="driver.js"></script>
41
+ <script src="test.js"></script>
42
+ <script src="mode_test.js"></script>
43
+ <script src="../mode/css/css.js"></script>
44
+ <script src="../mode/css/test.js"></script>
45
+ <script src="../mode/markdown/markdown.js"></script>
46
+ <script src="../mode/markdown/test.js"></script>
47
+ <script src="../mode/stex/stex.js"></script>
48
+ <script src="../mode/stex/test.js"></script>
49
+ <script>
50
+ window.onload = function() {
51
+ runHarness();
52
+ };
53
+ CodeMirror.connect(window, 'hashchange', function(){
54
+ runHarness();
55
+ });
56
+
57
+ function esc(str) {
58
+ return str.replace(/[<&]/, function(ch) { return ch == "<" ? "&lt;" : "&amp;"; });
59
+ }
60
+
61
+ var output = document.getElementById("output"),
62
+ progress = document.getElementById("progress"),
63
+ progressRan = document.getElementById("progress_ran").childNodes[0],
64
+ progressTotal = document.getElementById("progress_total").childNodes[0];
65
+ var count = 0,
66
+ failed = 0,
67
+ bad = "",
68
+ running = false, // Flag that states tests are running
69
+ quit = false, // Flag to quit tests ASAP
70
+ verbose = false; // Adds message for *every* test to output
71
+
72
+ function runHarness(){
73
+ if (running) {
74
+ quit = true;
75
+ setStatus("Restarting tests...", '', true);
76
+ setTimeout(function(){runHarness();}, 500);
77
+ return;
78
+ }
79
+ if (window.location.hash.substr(1)){
80
+ debug = window.location.hash.substr(1).split(",");
81
+ } else {
82
+ debug = null;
83
+ }
84
+ quit = false;
85
+ running = true;
86
+ setStatus("Loading tests...");
87
+ count = 0;
88
+ failed = 0;
89
+ bad = "";
90
+ verbose = false;
91
+ debugUsed = Array();
92
+ totalTests = tests.length;
93
+ progressTotal.nodeValue = " of " + totalTests;
94
+ progressRan.nodeValue = count;
95
+ output.innerHTML = '';
96
+ document.getElementById("testground").innerHTML = "<form>" +
97
+ "<textarea id=\"code\" name=\"code\"></textarea>" +
98
+ "<input type=submit value=ok name=submit>" +
99
+ "</form>";
100
+ runTests(displayTest);
101
+ }
102
+
103
+ function setStatus(message, className, force){
104
+ if (quit && !force) return;
105
+ if (!message) throw("must provide message");
106
+ var status = document.getElementById("status").childNodes[0];
107
+ status.nodeValue = message;
108
+ status.parentNode.className = className;
109
+ }
110
+ function addOutput(name, className, code){
111
+ var newOutput = document.createElement("dl");
112
+ var newTitle = document.createElement("dt");
113
+ newTitle.className = className;
114
+ newTitle.appendChild(document.createTextNode(name));
115
+ newOutput.appendChild(newTitle);
116
+ var newMessage = document.createElement("dd");
117
+ newMessage.innerHTML = code;
118
+ newOutput.appendChild(newTitle);
119
+ newOutput.appendChild(newMessage);
120
+ output.appendChild(newOutput);
121
+ }
122
+ function displayTest(type, name, customMessage) {
123
+ var message = "???";
124
+ if (type != "done") ++count;
125
+ progress.style.width = (count * (progress.parentNode.clientWidth - 2) / totalTests) + "px";
126
+ progressTotal.nodeValue = " of " + totalTests +
127
+ (debugUsed.length && type != "done" ? "+" : "");
128
+ progressRan.nodeValue = count;
129
+ if (type == "ok") {
130
+ message = "Test '" + name + "' succeeded";
131
+ if (!verbose) customMessage = false;
132
+ } else if (type == "expected") {
133
+ message = "Test '" + name + "' failed as expected";
134
+ if (!verbose) customMessage = false;
135
+ } else if (type == "error" || type == "fail") {
136
+ ++failed;
137
+ message = "Test '" + name + "' failed";
138
+ } else if (type == "done") {
139
+ if (failed) {
140
+ type += " fail";
141
+ message = failed + " failure" + (failed > 1 ? "s" : "");
142
+ } else if (count < totalTests) {
143
+ failed = totalTests - count;
144
+ type += " fail";
145
+ message = failed + " failure" + (failed > 1 ? "s" : "");
146
+ } else {
147
+ type += " ok";
148
+ message = "All passed";
149
+ }
150
+ if (debug && debug.length) {
151
+ var bogusTests = totalTests - count;
152
+ message += " — " + bogusTests + " nonexistent test" +
153
+ (bogusTests > 1 ? "s" : "") + " requested by location.hash: " +
154
+ "`" + debug.join("`, `") + "`";
155
+ } else {
156
+ progressTotal.nodeValue = '';
157
+ }
158
+ customMessage = true; // Hack to avoid adding to output
159
+ }
160
+ if (verbose && !customMessage) customMessage = message;
161
+ setStatus(message, type);
162
+ if (customMessage.length > 0) {
163
+ addOutput(name, type, customMessage);
164
+ }
165
+ }
166
+ </script>
167
+ </body>
168
+ </html>
@@ -0,0 +1 @@
1
+ function checkVariable(e,r,t){for(;e;){if(e.cur.hasOwnProperty(r))return;e=e.prev}fail("Accidental global: "+r,t)}function checkProperty(e,r){reserved.hasOwnProperty(e)&&fail("Using a keyword or reserved word as a property: "+e,r)}function walk(e,r){function t(e){e&&walk(e,r)}function c(e){e&&e.forEach(t)}var i=e[0];if("string"!=typeof i&&(i=i.name),"block"==i||"splice"==i||"toplevel"==i||"array"==i)c(e[1]);else if("var"==i||"const"==i)e[1].forEach(function(e){r.cur[e[0]]=!0,e[1]&&t(e[1])});else if("try"==i)c(e[1]),e[2]&&(r.cur[e[2][0]]=!0,c(e[2][1])),c(e[3]);else if("throw"==i||"return"==i||"dot"==i||"stat"==i)t(e[1]);else if("dot"==i)t(e[1]),checkProperty(e[2],e[0]);else if("new"==i||"call"==i)t(e[1]),c(e[2]);else if("switch"==i)t(e[1]),e[2].forEach(function(e){t(e[0]),c(e[1])});else if("conditional"==i||"if"==i||"for"==i||"for-in"==i)t(e[1]),t(e[2]),t(e[3]),t(e[4]);else if("assign"==i)"name"==e[2][0].name&&checkVariable(r,e[2][1],e[2][0]),t(e[2]),t(e[3]);else if("function"==i||"defun"==i){"defun"==i&&(r.cur[e[1]]=!0);var a={prev:r,cur:{}};e[2].forEach(function(e){a.cur[e]=!0}),e[3].forEach(function(e){walk(e,a)})}else"while"==i||"do"==i||"sub"==i||"with"==i?(t(e[1]),t(e[2])):"binary"==i||"unary-prefix"==i||"unary-postfix"==i||"label"==i?(/\+\+|--/.test(e[1])&&"name"==e[2][0].name&&checkVariable(r,e[2][1],e[2][0]),t(e[2]),t(e[3])):"object"==i?e[1].forEach(function(r){"string"!=r.type&&checkProperty(r[0],e[0]),t(r[1]),t(r[2])}):"seq"==i?c(e.slice(1)):"name"==i&&reserved.hasOwnProperty(e[1])&&!/^(?:null|true|false)$/.test(e[1])&&fail("Using reserved word as variable name: "+e[1],e[0])}function fail(e,r){"object"==typeof r&&(r=r.start.line+1),console.log(curFile+": "+e+("number"==typeof r?" ("+r+")":"")),failed=!0}function checkFile(e){curFile=e.match(/[^\/+]*\.js$/)[0];var r=fs.readFileSync(e,"utf8"),t=r.match(/[\x00-\x08\x0b\x0c\x0e-\x19\uFEFF]/);t&&fail("Undesirable character "+t[0].charCodeAt(0)+" at position "+t.index),/^#!/.test(r)&&(r=r.slice(r.indexOf("\n")+1));try{var c=parse_js(r,!0,!0)}catch(i){return fail(i.message,i.line),void 0}walk(c,{prev:null,cur:{}})}function checkDir(e){fs.readdirSync(e).forEach(function(r){var t=e+"/"+r;/\.js$/.test(r)?checkFile(t):fs.lstatSync(t).isDirectory()&&checkDir(t)})}var fs=require("fs"),parse_js=require("./parse-js").parse,reserved={};"break case catch continue debugger default delete do else false finally for function if in instanceof new null return switch throw true try typeof var void while with abstract enum int short boolean export interface static byte extends long super char final native synchonized class float package throws const goto private transient implements protected volatile double import public const".split(" ").forEach(function(e){reserved[e]=!0});var failed=!1,curFile;exports.checkDir=checkDir,exports.checkFile=checkFile,exports.success=function(){return!failed};
@@ -0,0 +1,60 @@
1
+ /***********************************************************************
2
+
3
+ A JavaScript tokenizer / parser / beautifier / compressor.
4
+
5
+ This version is suitable for Node.js. With minimal changes (the
6
+ exports stuff) it should work on any JS platform.
7
+
8
+ This file contains the tokenizer/parser. It is a port to JavaScript
9
+ of parse-js [1], a JavaScript parser library written in Common Lisp
10
+ by Marijn Haverbeke. Thank you Marijn!
11
+
12
+ [1] http://marijn.haverbeke.nl/parse-js/
13
+
14
+ Exported functions:
15
+
16
+ - tokenizer(code) -- returns a function. Call the returned
17
+ function to fetch the next token.
18
+
19
+ - parse(code) -- returns an AST of the given JavaScript code.
20
+
21
+ -------------------------------- (C) ---------------------------------
22
+
23
+ Author: Mihai Bazon
24
+ <mihai.bazon@gmail.com>
25
+ http://mihai.bazon.net/blog
26
+
27
+ Distributed under the BSD license:
28
+
29
+ Copyright 2010 (c) Mihai Bazon <mihai.bazon@gmail.com>
30
+ Based on parse-js (http://marijn.haverbeke.nl/parse-js/).
31
+
32
+ Redistribution and use in source and binary forms, with or without
33
+ modification, are permitted provided that the following conditions
34
+ are met:
35
+
36
+ * Redistributions of source code must retain the above
37
+ copyright notice, this list of conditions and the following
38
+ disclaimer.
39
+
40
+ * Redistributions in binary form must reproduce the above
41
+ copyright notice, this list of conditions and the following
42
+ disclaimer in the documentation and/or other materials
43
+ provided with the distribution.
44
+
45
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
46
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
48
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
49
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
50
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
51
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
52
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
53
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
54
+ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
55
+ THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
56
+ SUCH DAMAGE.
57
+
58
+ ***********************************************************************/
59
+
60
+ function is_letter(u){return UNICODE.letter.test(u)}function is_digit(u){return u=u.charCodeAt(0),u>=48&&57>=u}function is_unicode_digit(u){return UNICODE.digit.test(u)}function is_alphanumeric_char(u){return is_digit(u)||is_letter(u)}function is_unicode_combining_mark(u){return UNICODE.combining_mark.test(u)}function is_unicode_connector_punctuation(u){return UNICODE.connector_punctuation.test(u)}function is_identifier_start(u){return"$"==u||"_"==u||is_letter(u)}function is_identifier_char(u){return is_identifier_start(u)||is_unicode_combining_mark(u)||is_unicode_digit(u)||is_unicode_connector_punctuation(u)||"‌"==u||"‍"==u}function parse_js_number(u){return RE_HEX_NUMBER.test(u)?parseInt(u.substr(2),16):RE_OCT_NUMBER.test(u)?parseInt(u.substr(1),8):RE_DEC_NUMBER.test(u)?parseFloat(u):void 0}function JS_Parse_Error(u,e,n,r){this.message=u,this.line=e+1,this.col=n+1,this.pos=r+1,this.stack=(new Error).stack}function js_error(u,e,n,r){throw new JS_Parse_Error(u,e,n,r)}function is_token(u,e,n){return u.type==e&&(null==n||u.value==n)}function tokenizer(u){function e(){return k.text.charAt(k.pos)}function n(u,e){var n=k.text.charAt(k.pos++);if(u&&!n)throw EX_EOF;return"\n"==n?(k.newline_before=k.newline_before||!e,++k.line,k.col=0):++k.col,n}function r(u,e){var n=k.text.indexOf(u,k.pos);if(e&&-1==n)throw EX_EOF;return n}function t(){k.tokline=k.line,k.tokcol=k.col,k.tokpos=k.pos}function o(u,e,n){k.regex_allowed="operator"==u&&!HOP(UNARY_POSTFIX,e)||"keyword"==u&&HOP(KEYWORDS_BEFORE_EXPRESSION,e)||"punc"==u&&HOP(PUNC_BEFORE_EXPRESSION,e);var r={type:u,value:e,line:k.tokline,col:k.tokcol,pos:k.tokpos,endpos:k.pos,nlb:k.newline_before};if(!n){r.comments_before=k.comments_before,k.comments_before=[];for(var t=0,o=r.comments_before.length;o>t;t++)r.nlb=r.nlb||r.comments_before[t].nlb}return k.newline_before=!1,r}function i(){for(;HOP(WHITESPACE_CHARS,e());)n()}function A(u){for(var r="",t=e(),o=0;t&&u(t,o++);)r+=n(),t=e();return r}function a(u){js_error(u,k.tokline,k.tokcol,k.tokpos)}function c(u){var e=!1,n=!1,r=!1,t="."==u,i=A(function(o,i){return"x"==o||"X"==o?r?!1:r=!0:r||"E"!=o&&"e"!=o?"-"==o?n||0==i&&!u?!0:!1:"+"==o?n:(n=!1,"."==o?t||r||e?!1:t=!0:is_alphanumeric_char(o)):e?!1:e=n=!0});u&&(i=u+i);var c=parse_js_number(i);return isNaN(c)?(a("Invalid syntax: "+i),void 0):o("num",c)}function s(u){var e=n(!0,u);switch(e){case"n":return"\n";case"r":return"\r";case"t":return" ";case"b":return"\b";case"v":return" ";case"f":return"\f";case"0":return"\x00";case"x":return String.fromCharCode(E(2));case"u":return String.fromCharCode(E(4));case"\n":return"";default:return e}}function E(u){for(var e=0;u>0;--u){var r=parseInt(n(!0),16);isNaN(r)&&a("Invalid hex-character pattern in string"),e=e<<4|r}return e}function F(){return d("Unterminated string constant",function(){for(var u=n(),e="";;){var r=n(!0);if("\\"==r){var t=0,i=null;r=A(function(u){if(u>="0"&&"7">=u){if(!i)return i=u,++t;if("3">=i&&2>=t)return++t;if(i>="4"&&1>=t)return++t}return!1}),r=t>0?String.fromCharCode(parseInt(r,8)):s(!0)}else if(r==u)break;e+=r}return o("string",e)})}function l(){n();var u,e=r("\n");return-1==e?(u=k.text.substr(k.pos),k.pos=k.text.length):(u=k.text.substring(k.pos,e),k.pos=e),o("comment1",u,!0)}function C(){return n(),d("Unterminated multiline comment",function(){var u=r("*/",!0),e=k.text.substring(k.pos,u);return k.pos=u+2,k.line+=e.split("\n").length-1,k.newline_before=k.newline_before||e.indexOf("\n")>=0,/^@cc_on/i.test(e)&&(warn("WARNING: at line "+k.line),warn('*** Found "conditional comment": '+e),warn("*** UglifyJS DISCARDS ALL COMMENTS. This means your code might no longer work properly in Internet Explorer.")),o("comment2",e,!0)})}function B(){for(var u,r,t=!1,o="",i=!1;null!=(u=e());)if(t)"u"!=u&&a("Expecting UnicodeEscapeSequence -- uXXXX"),u=s(),is_identifier_char(u)||a("Unicode char: "+u.charCodeAt(0)+" is not valid in identifier"),o+=u,t=!1;else if("\\"==u)i=t=!0,n();else{if(!is_identifier_char(u))break;o+=n()}return HOP(KEYWORDS,o)&&i&&(r=o.charCodeAt(0).toString(16).toUpperCase(),o="\\u"+"0000".substr(r.length)+r+o.slice(1)),o}function f(u){return d("Unterminated regular expression",function(){for(var e,r=!1,t=!1;e=n(!0);)if(r)u+="\\"+e,r=!1;else if("["==e)t=!0,u+=e;else if("]"==e&&t)t=!1,u+=e;else{if("/"==e&&!t)break;"\\"==e?r=!0:u+=e}var i=B();return o("regexp",[u,i])})}function D(u){function r(u){if(!e())return u;var t=u+e();return HOP(OPERATORS,t)?(n(),r(t)):u}return o("operator",r(u||n()))}function p(){n();var u=k.regex_allowed;switch(e()){case"/":return k.comments_before.push(l()),k.regex_allowed=u,v();case"*":return k.comments_before.push(C()),k.regex_allowed=u,v()}return k.regex_allowed?f(""):D("/")}function _(){return n(),is_digit(e())?c("."):o("punc",".")}function h(){var u=B();return HOP(KEYWORDS,u)?HOP(OPERATORS,u)?o("operator",u):HOP(KEYWORDS_ATOM,u)?o("atom",u):o("keyword",u):o("name",u)}function d(u,e){try{return e()}catch(n){if(n!==EX_EOF)throw n;a(u)}}function v(u){if(null!=u)return f(u);i(),t();var r=e();return r?is_digit(r)?c():'"'==r||"'"==r?F():HOP(PUNC_CHARS,r)?o("punc",n()):"."==r?_():"/"==r?p():HOP(OPERATOR_CHARS,r)?D():"\\"==r||is_identifier_start(r)?h():(a("Unexpected character '"+r+"'"),void 0):o("eof")}var k={text:u.replace(/\r\n?|[\n\u2028\u2029]/g,"\n").replace(/^\uFEFF/,""),pos:0,tokpos:0,line:0,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[]};return v.context=function(u){return u&&(k=u),k},v}function NodeWithToken(u,e,n){this.name=u,this.start=e,this.end=n}function parse(u,e,n){function r(u,e){return is_token(L.token,u,e)}function t(){return L.peeked||(L.peeked=L.input())}function o(){return L.prev=L.token,L.peeked?(L.token=L.peeked,L.peeked=null):L.token=L.input(),L.in_directives=L.in_directives&&("string"==L.token.type||r("punc",";")),L.token}function i(){return L.prev}function A(u,e,n,r){var t=L.input.context();js_error(u,null!=e?e:t.tokline,null!=n?n:t.tokcol,null!=r?r:t.tokpos)}function a(u,e){A(e,u.line,u.col)}function c(u){null==u&&(u=L.token),a(u,"Unexpected token: "+u.type+" ("+u.value+")")}function s(u,e){return r(u,e)?o():(a(L.token,"Unexpected token "+L.token.type+", expected "+u),void 0)}function E(u){return s("punc",u)}function F(){return!e&&(L.token.nlb||r("eof")||r("punc","}"))}function l(){r("punc",";")?o():F()||c()}function C(){return slice(arguments)}function B(){E("(");var u=V();return E(")"),u}function f(u,e,n){return u instanceof NodeWithToken?u:new NodeWithToken(u,e,n)}function D(u){return n?function(){var e=L.token,n=u.apply(this,arguments);return n[0]=f(n[0],e,i()),n}:u}function p(u){L.labels.push(u);var n=L.token,r=z();return e&&!HOP(STATEMENTS_WITH_LABELS,r[0])&&c(n),L.labels.pop(),C("label",u,r)}function _(){return C("stat",prog1(V,l))}function h(u){var e;return F()||(e=r("name")?L.token.value:null),null!=e?(o(),member(e,L.labels)||A("Label "+e+" without matching loop or statement")):0==L.in_loop&&A(u+" not inside a loop or switch"),l(),C(u,e)}function d(){E("(");var u=null;return!r("punc",";")&&(u=r("keyword","var")?(o(),y(!0)):V(!0,!0),r("operator","in"))?("var"==u[0]&&u[1].length>1&&A("Only one variable declaration allowed in for..in loop"),k(u)):v(u)}function v(u){E(";");var e=r("punc",";")?null:V();E(";");var n=r("punc",")")?null:V();return E(")"),C("for",u,e,n,j(z))}function k(u){var e="var"==u[0]?C("name",u[1][0]):u;o();var n=V();return E(")"),C("for-in",u,e,n,j(z))}function g(){var u,e=B(),n=z();return r("keyword","else")&&(o(),u=z()),C("if",e,n,u)}function m(){E("{");for(var u=[];!r("punc","}");)r("eof")&&c(),u.push(z());return o(),u}function O(){var u,e,n=m();if(r("keyword","catch")){o(),E("("),r("name")||A("Name expected");var t=L.token.value;o(),E(")"),u=[t,m()]}return r("keyword","finally")&&(o(),e=m()),u||e||A("Missing catch/finally blocks"),C("try",n,u,e)}function R(u){for(var e=[];;){r("name")||c();var n=L.token.value;if(o(),r("operator","=")?(o(),e.push([n,V(!1,u)])):e.push([n]),!r("punc",","))break;o()}return e}function y(u){return C("var",R(u))}function w(){return C("const",R())}function b(){var u,e=$(!1);return r("punc","(")?(o(),u=S(")")):u=[],I(C("new",e,u),!0)}function S(u,e,n){for(var t=!0,i=[];!r("punc",u)&&(t?t=!1:E(","),!e||!r("punc",u));)r("punc",",")&&n?i.push(["atom","undefined"]):i.push(V(!1));return o(),i}function x(){return C("array",S("]",!e,!0))}function N(){for(var u=!0,n=[];!r("punc","}")&&(u?u=!1:E(","),e||!r("punc","}"));){var t=L.token.type,i=T();"name"!=t||"get"!=i&&"set"!=i||r("punc",":")?(E(":"),n.push([i,V(!1)])):n.push([P(),G(!1),i]),n[n.length-1].type=t}return o(),C("object",n)}function T(){switch(L.token.type){case"num":case"string":return prog1(L.token.value,o)}return P()}function P(){switch(L.token.type){case"name":case"operator":case"keyword":case"atom":return prog1(L.token.value,o);default:c()}}function I(u,e){return r("punc",".")?(o(),I(C("dot",u,P()),e)):r("punc","[")?(o(),I(C("sub",u,prog1(V,curry(E,"]"))),e)):e&&r("punc","(")?(o(),I(C("call",u,S(")")),!0)):u}function U(u){if(r("operator")&&HOP(UNARY_PREFIX,L.token.value))return H("unary-prefix",prog1(L.token.value,o),U(u));for(var e=$(u);r("operator")&&HOP(UNARY_POSTFIX,L.token.value)&&!L.token.nlb;)e=H("unary-postfix",L.token.value,e),o();return e}function H(u,e,n){return"++"!=e&&"--"!=e||Y(n)||A("Invalid use of "+e+" operator"),C(u,e,n)}function M(u,e,n){var t=r("operator")?L.token.value:null;t&&"in"==t&&n&&(t=null);var i=null!=t?PRECEDENCE[t]:null;if(null!=i&&i>e){o();var A=M(U(!0),i,n);return M(C("binary",t,u,A),e,n)}return u}function W(u){return M(U(!0),0,u)}function X(u){var e=W(u);if(r("operator","?")){o();var n=V(!1);return E(":"),C("conditional",e,n,V(!1,u))}return e}function Y(u){if(!e)return!0;switch(u[0]+""){case"dot":case"sub":case"new":case"call":return!0;case"name":return"this"!=u[1]}}function K(u){var e=X(u),n=L.token.value;if(r("operator")&&HOP(ASSIGNMENT,n)){if(Y(e))return o(),C("assign",ASSIGNMENT[n],e,K(u));A("Invalid assignment")}return e}function j(u){try{return++L.in_loop,u()}finally{--L.in_loop}}var L={input:"string"==typeof u?tokenizer(u,!0):u,token:null,prev:null,peeked:null,in_function:0,in_directives:!0,in_loop:0,labels:[]};L.token=o();var z=D(function(){switch((r("operator","/")||r("operator","/="))&&(L.peeked=null,L.token=L.input(L.token.value.substr(1))),L.token.type){case"string":var u=L.in_directives,e=_();return u&&"string"==e[1][0]&&!r("punc",",")?C("directive",e[1][1]):e;case"num":case"regexp":case"operator":case"atom":return _();case"name":return is_token(t(),"punc",":")?p(prog1(L.token.value,o,o)):_();case"punc":switch(L.token.value){case"{":return C("block",m());case"[":case"(":return _();case";":return o(),C("block");default:c()}case"keyword":switch(prog1(L.token.value,o)){case"break":return h("break");case"continue":return h("continue");case"debugger":return l(),C("debugger");case"do":return function(u){return s("keyword","while"),C("do",prog1(B,l),u)}(j(z));case"for":return d();case"function":return G(!0);case"if":return g();case"return":return 0==L.in_function&&A("'return' outside of function"),C("return",r("punc",";")?(o(),null):F()?null:prog1(V,l));case"switch":return C("switch",B(),J());case"throw":return L.token.nlb&&A("Illegal newline after 'throw'"),C("throw",prog1(V,l));case"try":return O();case"var":return prog1(y,l);case"const":return prog1(w,l);case"while":return C("while",B(),j(z));case"with":return C("with",B(),z());default:c()}}}),G=function(u){var e=r("name")?prog1(L.token.value,o):null;return u&&!e&&c(),E("("),C(u?"defun":"function",e,function(u,e){for(;!r("punc",")");)u?u=!1:E(","),r("name")||c(),e.push(L.token.value),o();return o(),e}(!0,[]),function(){++L.in_function;var u=L.in_loop;L.in_directives=!0,L.in_loop=0;var e=m();return--L.in_function,L.in_loop=u,e}())},J=curry(j,function(){E("{");for(var u=[],e=null;!r("punc","}");)r("eof")&&c(),r("keyword","case")?(o(),e=[],u.push([V(),e]),E(":")):r("keyword","default")?(o(),E(":"),e=[],u.push([null,e])):(e||c(),e.push(z()));return o(),u}),$=D(function(u){if(r("operator","new"))return o(),b();if(r("punc")){switch(L.token.value){case"(":return o(),I(prog1(V,curry(E,")")),u);case"[":return o(),I(x(),u);case"{":return o(),I(N(),u)}c()}if(r("keyword","function"))return o(),I(G(!1),u);if(HOP(ATOMIC_START_TOKEN,L.token.type)){var e="regexp"==L.token.type?C("regexp",L.token.value[0],L.token.value[1]):C(L.token.type,L.token.value);return I(prog1(e,o),u)}c()}),V=D(function(u,e){0==arguments.length&&(u=!0);var n=K(e);return u&&r("punc",",")?(o(),C("seq",n,V(!0,e))):n});return C("toplevel",function(u){for(;!r("eof");)u.push(z());return u}([]))}function curry(u){var e=slice(arguments,1);return function(){return u.apply(this,e.concat(slice(arguments)))}}function prog1(u){u instanceof Function&&(u=u());for(var e=1,n=arguments.length;--n>0;++e)arguments[e]();return u}function array_to_hash(u){for(var e={},n=0;n<u.length;++n)e[u[n]]=!0;return e}function slice(u,e){return Array.prototype.slice.call(u,e||0)}function characters(u){return u.split("")}function member(u,e){for(var n=e.length;--n>=0;)if(e[n]==u)return!0;return!1}function HOP(u,e){return Object.prototype.hasOwnProperty.call(u,e)}var KEYWORDS=array_to_hash(["break","case","catch","const","continue","debugger","default","delete","do","else","finally","for","function","if","in","instanceof","new","return","switch","throw","try","typeof","var","void","while","with"]),RESERVED_WORDS=array_to_hash(["abstract","boolean","byte","char","class","double","enum","export","extends","final","float","goto","implements","import","int","interface","long","native","package","private","protected","public","short","static","super","synchronized","throws","transient","volatile"]),KEYWORDS_BEFORE_EXPRESSION=array_to_hash(["return","new","delete","throw","else","case"]),KEYWORDS_ATOM=array_to_hash(["false","null","true","undefined"]),OPERATOR_CHARS=array_to_hash(characters("+-*&%=<>!?|~^")),RE_HEX_NUMBER=/^0x[0-9a-f]+$/i,RE_OCT_NUMBER=/^0[0-7]+$/,RE_DEC_NUMBER=/^\d*\.?\d*(?:e[+-]?\d*(?:\d\.?|\.?\d)\d*)?$/i,OPERATORS=array_to_hash(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),WHITESPACE_CHARS=array_to_hash(characters("  \n\r \f ​᠎              ")),PUNC_BEFORE_EXPRESSION=array_to_hash(characters("[{(,.;:")),PUNC_CHARS=array_to_hash(characters("[]{}(),;:")),REGEXP_MODIFIERS=array_to_hash(characters("gmsiy")),UNICODE={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0527\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0\\u08A2-\\u08AC\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0977\\u0979-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F0\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA697\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA793\\uA7A0-\\uA7AA\\uA7F8-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA80-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),combining_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065F\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08E4-\\u08FE\\u0900-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0C01-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C82\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0D02\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F\\u109A-\\u109D\\u135D-\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1DC0-\\u1DE6\\u1DFC-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA674-\\uA67D\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA7B\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]"),digit:new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]")};JS_Parse_Error.prototype.toString=function(){return this.message+" (line: "+this.line+", col: "+this.col+", pos: "+this.pos+")"+"\n\n"+this.stack};var EX_EOF={},UNARY_PREFIX=array_to_hash(["typeof","void","delete","--","++","!","~","-","+"]),UNARY_POSTFIX=array_to_hash(["--","++"]),ASSIGNMENT=function(u,e,n){for(;n<u.length;)e[u[n]]=u[n].substr(0,u[n].length-1),n++;return e}(["+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&="],{"=":!0},0),PRECEDENCE=function(u,e){for(var n=0,r=1;n<u.length;++n,++r)for(var t=u[n],o=0;o<t.length;++o)e[t[o]]=r;return e}([["||"],["&&"],["|"],["^"],["&"],["==","===","!=","!=="],["<",">","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),STATEMENTS_WITH_LABELS=array_to_hash(["for","do","while","switch"]),ATOMIC_START_TOKEN=array_to_hash(["atom","num","string","regexp","name"]);NodeWithToken.prototype.toString=function(){return this.name};var warn=function(){};exports.tokenizer=tokenizer,exports.parse=parse,exports.slice=slice,exports.curry=curry,exports.member=member,exports.array_to_hash=array_to_hash,exports.PRECEDENCE=PRECEDENCE,exports.KEYWORDS_ATOM=KEYWORDS_ATOM,exports.RESERVED_WORDS=RESERVED_WORDS,exports.KEYWORDS=KEYWORDS,exports.ATOMIC_START_TOKEN=ATOMIC_START_TOKEN,exports.OPERATORS=OPERATORS,exports.is_alphanumeric_char=is_alphanumeric_char,exports.is_identifier_start=is_identifier_start,exports.is_identifier_char=is_identifier_char,exports.set_logger=function(u){warn=u};
@@ -0,0 +1,9 @@
1
+ .mt-output .mt-token {
2
+ border: 1px solid #ddd;
3
+ white-space: pre;
4
+ font-family: "Consolas", monospace;
5
+ text-align: center;
6
+ }
7
+ .mt-output .mt-style {
8
+ font-size: x-small;
9
+ }
@@ -0,0 +1 @@
1
+ ModeTest={},ModeTest.modeOptions={},ModeTest.modeName=CodeMirror.defaults.mode,ModeTest.testCount=0,ModeTest.passes=0,ModeTest.testMode=function(t,e,s,r,o,n){ModeTest.testCount+=1,r||(r=ModeTest.modeName),o||(o=ModeTest.modeOptions);var a=CodeMirror.getMode(o,r);if(s.length<0)throw"must have text for test ("+t+")";if(0!=s.length%2)throw"must have text for test ("+t+") plus expected (style, token) pairs";return test(r+"_"+t,function(){return ModeTest.compare(e,s,a)},n)},ModeTest.compare=function(t,e,s){for(var r=[],o=0;o<e.length;o+=2)e[o]=null!=e[o]?e[o].split(" ").sort().join(" "):e[o],r.push([e[o],e[o+1]]);var n,a=ModeTest.highlight(t,s),l="";r.length>0&&(n=ModeTest.highlightOutputsEqual(r,a),l=n?"mt-pass":"mt-fail",ModeTest.passes+=n?1:0);var d="";if(n||0==r.length)return d+='<div class="mt-test '+l+'">',d+="<pre>"+ModeTest.htmlEscape(t)+"</pre>",d+='<div class="cm-s-default">',d+=ModeTest.prettyPrintOutputTable(a),d+="</div>",d+="</div>";throw d+='<div class="mt-test '+l+'">',d+="<pre>"+ModeTest.htmlEscape(t)+"</pre>",d+='<div class="cm-s-default">',d+="expected:",d+=ModeTest.prettyPrintOutputTable(r),d+="observed:",d+=ModeTest.prettyPrintOutputTable(a),d+="</div>",d+="</div>"},ModeTest.highlight=function(t,e){for(var s=e.startState(),r=t.replace(/\r\n/g,"\n").split("\n"),o=[],n=0;n<r.length;++n){var a=r[n],l=new CodeMirror.StringStream(a);""==a&&e.blankLine&&e.blankLine(s);for(var d=0,i=[];!l.eol();){var p=e.token(l,s),u=l.current();if(l.start=l.pos,d&&i[d-1]==p?i[d-2]+=u:u&&(i[d++]=u,i[d++]=p),l.pos>5e3){i[d++]=this.text.slice(l.pos),i[d++]=null;break}}for(var c=0;c<i.length;c+=2)i[c+1]=null!=i[c+1]?i[c+1].split(" ").sort().join(" "):i[c+1],o.push([i[c+1],i[c]])}return o},ModeTest.highlightOutputsEqual=function(t,e){var s=t.length==e.length;if(s)for(var r in t)s=s&&2==t[r].length&&t[r][0]==e[r][0]&&t[r][1]==e[r][1];return s},ModeTest.prettyPrintOutputTable=function(t){var e='<table class="mt-output">';e+="<tr>";for(var s=0;s<t.length;++s){var r=t[s];e+='<td class="mt-token"><span class="cm-'+String(r[0]).replace(/ +/g," cm-")+'">'+ModeTest.htmlEscape(r[1]).replace(/ /g,"&middot;")+"</span>"+"</td>"}e+="</tr><tr>";for(var s=0;s<t.length;++s){var r=t[s];e+='<td class="mt-style"><span>'+r[0]+"</span></td>"}return e+="</table>"},ModeTest.printSummary=function(){ModeTest.runTests(ModeTest.displayTest),document.write(ModeTest.passes+" passes for "+ModeTest.testCount+" tests")},ModeTest.htmlEscape=function(t){return t=t.toString(),t.replace(/[<&]/g,function(t){return"&"==t?"&amp;":"&lt;"})};
@@ -0,0 +1 @@
1
+ function waitFor(e,t){e()?t():setTimeout(function(){waitFor(e,t)},250)}var page=require("webpage").create();page.open("http://localhost:3000/test/index.html",function(e){"success"!=e&&(console.log("page couldn't be loaded successfully"),phantom.exit(1)),waitFor(function(){return page.evaluate(function(){var e=document.getElementById("status");return e?/^(\d+ failures?|all passed)/i.test(e.innerText):!1})},function(){var e=page.evaluate(function(){return window.failed}),t=page.evaluate(function(){return document.getElementById("status").innerText});console.log(t),phantom.exit(e>0?1:0)})});
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env node
2
+
3
+ var lint = require("./lint/lint");
4
+
5
+ lint.checkDir("mode");
6
+ lint.checkDir("lib");
7
+
8
+ var ok = lint.success();
9
+
10
+ var files = new (require('node-static').Server)('.');
11
+
12
+ var server = require('http').createServer(function (req, res) {
13
+ req.addListener('end', function () {
14
+ files.serve(req, res);
15
+ });
16
+ }).addListener('error', function (err) {
17
+ throw err;
18
+ }).listen(3000, function () {
19
+ var child_process = require('child_process');
20
+ child_process.exec("which phantomjs", function (err) {
21
+ if (err) {
22
+ console.error("PhantomJS is not installed. Download from http://phantomjs.org");
23
+ process.exit(1);
24
+ }
25
+ var cmd = 'phantomjs test/phantom_driver.js';
26
+ child_process.exec(cmd, function (err, stdout) {
27
+ server.close();
28
+ console.log(stdout);
29
+ process.exit(err || !ok ? 1 : 0);
30
+ });
31
+ });
32
+ });
@@ -0,0 +1 @@
1
+ function forEach(e,n){for(var a=0,o=e.length;o>a;++a)n(e[a])}function addDoc(e,n,a){for(var o=[],t="",i=0;n>i;++i)t+="x";for(var i=0;a>i;++i)o.push(t);e.setValue(o.join("\n"))}function byClassName(e,n){function a(e){if(3!=e.nodeType){t.test(e.className)&&o.push(e);for(var n=0,i=e.childNodes.length;i>n;++n)a(e.childNodes[n])}}if(e.getElementsByClassName)return e.getElementsByClassName(n);var o=[],t=new RegExp("\\b"+n+"\\b");return a(e),o}var ie_lt8=/MSIE [1-7]\b/.test(navigator.userAgent);test("core_fromTextArea",function(){var e=document.getElementById("code");e.value="CONTENT";var n=CodeMirror.fromTextArea(e);is(!e.offsetHeight),eq(n.getValue(),"CONTENT"),n.setValue("foo\nbar"),eq(n.getValue(),"foo\nbar"),n.save(),is(/^foo\r?\nbar$/.test(e.value)),n.setValue("xxx"),n.toTextArea(),is(e.offsetHeight),eq(e.value,"xxx")}),testCM("getRange",function(e){eq(e.getLine(0),"1234"),eq(e.getLine(1),"5678"),eq(e.getLine(2),null),eq(e.getLine(-1),null),eq(e.getRange({line:0,ch:0},{line:0,ch:3}),"123"),eq(e.getRange({line:0,ch:-1},{line:0,ch:200}),"1234"),eq(e.getRange({line:0,ch:2},{line:1,ch:2}),"34\n56"),eq(e.getRange({line:1,ch:2},{line:100,ch:0}),"78")},{value:"1234\n5678"}),testCM("replaceRange",function(e){eq(e.getValue(),""),e.replaceRange("foo\n",{line:0,ch:0}),eq(e.getValue(),"foo\n"),e.replaceRange("a\nb",{line:0,ch:1}),eq(e.getValue(),"fa\nboo\n"),eq(e.lineCount(),3),e.replaceRange("xyzzy",{line:0,ch:0},{line:1,ch:1}),eq(e.getValue(),"xyzzyoo\n"),e.replaceRange("abc",{line:0,ch:0},{line:10,ch:0}),eq(e.getValue(),"abc"),eq(e.lineCount(),1)}),testCM("selection",function(e){e.setSelection({line:0,ch:4},{line:2,ch:2}),is(e.somethingSelected()),eq(e.getSelection(),"11\n222222\n33"),eqPos(e.getCursor(!1),{line:2,ch:2}),eqPos(e.getCursor(!0),{line:0,ch:4}),e.setSelection({line:1,ch:0}),is(!e.somethingSelected()),eq(e.getSelection(),""),eqPos(e.getCursor(!0),{line:1,ch:0}),e.replaceSelection("abc"),eq(e.getSelection(),"abc"),eq(e.getValue(),"111111\nabc222222\n333333"),e.replaceSelection("def","end"),eq(e.getSelection(),""),eqPos(e.getCursor(!0),{line:1,ch:3}),e.setCursor({line:2,ch:1}),eqPos(e.getCursor(!0),{line:2,ch:1}),e.setCursor(1,2),eqPos(e.getCursor(!0),{line:1,ch:2})},{value:"111111\n222222\n333333"}),testCM("lines",function(e){eq(e.getLine(0),"111111"),eq(e.getLine(1),"222222"),eq(e.getLine(-1),null),e.removeLine(1),e.setLine(1,"abc"),eq(e.getValue(),"111111\nabc")},{value:"111111\n222222\n333333"}),testCM("indent",function(e){e.indentLine(1),eq(e.getLine(1)," blah();"),e.setOption("indentUnit",8),e.indentLine(1),eq(e.getLine(1)," blah();"),e.setOption("indentUnit",10),e.setOption("tabSize",4),e.indentLine(1),eq(e.getLine(1)," blah();")},{value:"if (x) {\nblah();\n}",indentUnit:3,indentWithTabs:!0,tabSize:8}),test("core_defaults",function(){var e=CodeMirror.defaults,n=CodeMirror.defaults={};for(var a in e)n[a]=e[a];n.indentUnit=5,n.value="uu",n.enterMode="keep",n.tabindex=55;var o=document.getElementById("testground"),t=CodeMirror(o);try{eq(t.getOption("indentUnit"),5),t.setOption("indentUnit",10),eq(n.indentUnit,5),eq(t.getValue(),"uu"),eq(t.getOption("enterMode"),"keep"),eq(t.getInputField().tabIndex,55)}finally{CodeMirror.defaults=e,o.removeChild(t.getWrapperElement())}}),testCM("lineInfo",function(e){eq(e.lineInfo(-1),null);var n=e.setMarker(1,"FOO","bar"),a=e.lineInfo(1);eq(a.text,"222222"),eq(a.markerText,"FOO"),eq(a.markerClass,"bar"),eq(a.line,1),eq(e.lineInfo(2).markerText,null),e.clearMarker(n),eq(e.lineInfo(1).markerText,null)},{value:"111111\n222222\n333333"}),testCM("coords",function(e){e.setSize(null,100),addDoc(e,32,200);var n=e.charCoords({line:0,ch:0}),a=e.charCoords({line:200,ch:30});is(n.x<a.x),is(n.y<a.y),is(n.y<n.yBot),e.scrollTo(null,100);var o=e.charCoords({line:0,ch:0});is(n.y>o.y),eq(n.x,o.x)}),testCM("coordsChar",function(e){addDoc(e,35,70);for(var n=0;35>=n;n+=5)for(var a=0;70>a;a+=5){e.setCursor(a,n);var o=e.charCoords({line:a,ch:n}),t=e.coordsChar({x:o.x,y:o.y+1});eq(t.line,a),eq(t.ch,n)}}),testCM("posFromIndex",function(e){e.setValue("This function should\nconvert a zero based index\nto line and ch.");for(var n=[{index:-1,line:0,ch:0},{index:0,line:0,ch:0},{index:10,line:0,ch:10},{index:39,line:1,ch:18},{index:55,line:2,ch:7},{index:63,line:2,ch:15},{index:64,line:2,ch:15}],a=0;a<n.length;a++){var o=n[a],t=e.posFromIndex(o.index);eq(t.line,o.line),eq(t.ch,o.ch),o.index>=0&&o.index<64&&eq(e.indexFromPos(t),o.index)}}),testCM("undo",function(e){e.setLine(0,"def"),eq(e.historySize().undo,1),e.undo(),eq(e.getValue(),"abc"),eq(e.historySize().undo,0),eq(e.historySize().redo,1),e.redo(),eq(e.getValue(),"def"),eq(e.historySize().undo,1),eq(e.historySize().redo,0),e.setValue("1\n\n\n2"),e.clearHistory(),eq(e.historySize().undo,0);for(var n=0;20>n;++n)e.replaceRange("a",{line:0,ch:0}),e.replaceRange("b",{line:3,ch:0});eq(e.historySize().undo,40);for(var n=0;40>n;++n)e.undo();eq(e.historySize().redo,40),eq(e.getValue(),"1\n\n\n2")},{value:"abc"}),testCM("undoMultiLine",function(e){e.replaceRange("x",{line:0,ch:0}),e.replaceRange("y",{line:1,ch:0}),e.undo(),eq(e.getValue(),"abc\ndef\nghi"),e.replaceRange("y",{line:1,ch:0}),e.replaceRange("x",{line:0,ch:0}),e.undo(),eq(e.getValue(),"abc\ndef\nghi"),e.replaceRange("y",{line:2,ch:0}),e.replaceRange("x",{line:1,ch:0}),e.replaceRange("z",{line:2,ch:0}),e.undo(),eq(e.getValue(),"abc\ndef\nghi")},{value:"abc\ndef\nghi"}),testCM("markTextSingleLine",function(e){forEach([{a:0,b:1,c:"",f:2,t:5},{a:0,b:4,c:"",f:0,t:2},{a:1,b:2,c:"x",f:3,t:6},{a:4,b:5,c:"",f:3,t:5},{a:4,b:5,c:"xx",f:3,t:7},{a:2,b:5,c:"",f:2,t:3},{a:2,b:5,c:"abcd",f:6,t:7},{a:2,b:6,c:"x",f:null,t:null},{a:3,b:6,c:"",f:null,t:null},{a:0,b:9,c:"hallo",f:null,t:null},{a:4,b:6,c:"x",f:3,t:4},{a:4,b:8,c:"",f:3,t:4},{a:6,b:6,c:"a",f:3,t:6},{a:8,b:9,c:"",f:3,t:6}],function(n){e.setValue("1234567890");var a=e.markText({line:0,ch:3},{line:0,ch:6},"foo");e.replaceRange(n.c,{line:0,ch:n.a},{line:0,ch:n.b});var o=a.find();eq(o&&o.from.ch,n.f),eq(o&&o.to.ch,n.t)})}),testCM("markTextMultiLine",function(e){function n(e){return e&&{line:e[0],ch:e[1]}}forEach([{a:[0,0],b:[0,5],c:"",f:[0,0],t:[2,5]},{a:[0,0],b:[0,5],c:"foo\n",f:[1,0],t:[3,5]},{a:[0,1],b:[0,10],c:"",f:[0,1],t:[2,5]},{a:[0,5],b:[0,6],c:"x",f:[0,6],t:[2,5]},{a:[0,0],b:[1,0],c:"",f:[0,0],t:[1,5]},{a:[0,6],b:[2,4],c:"",f:[0,5],t:[0,7]},{a:[0,6],b:[2,4],c:"aa",f:[0,5],t:[0,9]},{a:[1,2],b:[1,8],c:"",f:[0,5],t:[2,5]},{a:[0,5],b:[2,5],c:"xx",f:null,t:null},{a:[0,0],b:[2,10],c:"x",f:null,t:null},{a:[1,5],b:[2,5],c:"",f:[0,5],t:[1,5]},{a:[2,0],b:[2,3],c:"",f:[0,5],t:[2,2]},{a:[2,5],b:[3,0],c:"a\nb",f:[0,5],t:[2,5]},{a:[2,3],b:[3,0],c:"x",f:[0,5],t:[2,3]},{a:[1,1],b:[1,9],c:"1\n2\n3",f:[0,5],t:[4,5]}],function(a){e.setValue("aaaaaaaaaa\nbbbbbbbbbb\ncccccccccc\ndddddddd\n");var o=e.markText({line:0,ch:5},{line:2,ch:5},"CodeMirror-matchingbracket");e.replaceRange(a.c,n(a.a),n(a.b));var t=o.find();eqPos(t&&t.from,n(a.f)),eqPos(t&&t.to,n(a.t))})}),testCM("markTextUndo",function(e){var n=e.markText({line:0,ch:1},{line:0,ch:3},"CodeMirror-matchingbracket"),a=e.markText({line:0,ch:0},{line:2,ch:1},"CodeMirror-matchingbracket"),o=e.setBookmark({line:1,ch:5});e.replaceRange("foo",{line:0,ch:2}),e.replaceRange("bar\baz\bug\n",{line:2,ch:0},{line:3,ch:0}),e.setValue(""),eq(n.find(),null),eq(a.find(),null),eq(o.find(),null),e.undo(),eqPos(o.find(),{line:1,ch:5}),e.undo(),e.undo();var t=n.find(),i=a.find();eqPos(t.from,{line:0,ch:1}),eqPos(t.to,{line:0,ch:3}),eqPos(i.from,{line:0,ch:0}),eqPos(i.to,{line:2,ch:1}),eqPos(o.find(),{line:1,ch:5})},{value:"1234\n56789\n00\n"}),testCM("markClearBetween",function(e){e.setValue("aaa\nbbb\nccc\nddd\n"),e.markText({line:0,ch:0},{line:2},"foo"),e.replaceRange("aaa\nbbb\nccc",{line:0,ch:0},{line:2}),eq(e.findMarksAt({line:1,ch:1}).length,0)}),testCM("bookmark",function(e){function n(e){return e&&{line:e[0],ch:e[1]}}forEach([{a:[1,0],b:[1,1],c:"",d:[1,4]},{a:[1,1],b:[1,1],c:"xx",d:[1,7]},{a:[1,4],b:[1,5],c:"ab",d:[1,6]},{a:[1,4],b:[1,6],c:"",d:null},{a:[1,5],b:[1,6],c:"abc",d:[1,5]},{a:[1,6],b:[1,8],c:"",d:[1,5]},{a:[1,4],b:[1,4],c:"\n\n",d:[3,1]},{bm:[1,9],a:[1,1],b:[1,1],c:"\n",d:[2,8]}],function(a){e.setValue("1234567890\n1234567890\n1234567890");var o=e.setBookmark(n(a.bm)||{line:1,ch:5});e.replaceRange(a.c,n(a.a),n(a.b)),eqPos(o.find(),n(a.d))})}),testCM("bug577",function(e){e.setValue("a\nb"),e.clearHistory(),e.setValue("fooooo"),e.undo()}),testCM("scrollSnap",function(e){e.setSize(100,100),addDoc(e,200,200),e.setCursor({line:100,ch:180});var n=e.getScrollInfo();is(n.x>0&&n.y>0),e.setCursor({line:0,ch:0}),n=e.getScrollInfo(),is(0==n.x&&0==n.y,"scrolled clean to top"),e.setCursor({line:100,ch:180}),e.setCursor({line:199,ch:0}),n=e.getScrollInfo(),is(0==n.x&&n.y>n.height-100,"scrolled clean to bottom")}),testCM("selectionPos",function(e){e.setSize(100,100),addDoc(e,200,100),e.setSelection({line:1,ch:100},{line:98,ch:100});var n=e.charCoords({line:0,ch:200},"local").x,a=e.charCoords({line:1}).y-e.charCoords({line:0}).y;e.scrollTo(0,0);for(var o,t,i,r=byClassName(e.getWrapperElement(),"CodeMirror-selected"),l=e.getWrapperElement().getBoundingClientRect(),c=0,s=r.length;s>c;++c){var d=r[c].getBoundingClientRect(),h=d.left-l.left<30,u=d.right-d.left,g=d.right-l.left>.8*n;h&&g?(o=!0,is(d.bottom-d.top>95*a,"middle high"),is(u>.9*n,"middle wide")):(is(u>.4*n,"top/bot wide enough"),is(.6*n>u,"top/bot slim enough"),h?(i=!0,is(d.top-l.top>96*a,"bot below")):g&&(t=!0,is(d.top-l.top<2*a,"top above")))}is(t&&i&&o,"all parts")},null,ie_lt8),testCM("restoreHistory",function(e){e.setValue("abc\ndef"),e.compoundChange(function(){e.setLine(1,"hello")}),e.compoundChange(function(){e.setLine(0,"goop")}),e.undo();var n=e.getValue(),a=e.getHistory();window.JSON&&(a=JSON.parse(JSON.stringify(a))),eq(n,"abc\nhello"),e.setValue(""),e.clearHistory(),eq(e.historySize().undo,0),e.setValue(n),e.setHistory(a),e.redo(),eq(e.getValue(),"goop\nhello"),e.undo(),e.undo(),eq(e.getValue(),"abc\ndef")}),testCM("doubleScrollbar",function(e){var n=document.body.appendChild(document.createElement("p"));n.style.cssText="height: 50px; overflow: scroll; width: 50px";var a=n.offsetWidth+1-n.clientWidth;document.body.removeChild(n),e.setSize(null,100),addDoc(e,1,300);var o=e.getWrapperElement();is(o.offsetWidth-byClassName(o,"CodeMirror-lines")[0].offsetWidth<=a)}),testCM("weirdLinebreaks",function(e){e.setValue("foo\nbar\rbaz\r\nquux\n\rplop"),is(e.getValue(),"foo\nbar\nbaz\nquux\n\nplop"),is(e.lineCount(),6),e.setValue("\n\n"),is(e.lineCount(),3)}),testCM("setSize",function(e){e.setSize(100,100),is(e.getWrapperElement().offsetWidth,100),is(e.getWrapperElement().offsetHeight,100),e.setSize("100%","3em"),is(e.getWrapperElement().style.width,"100%"),is(e.getScrollerElement().style.height,"3em"),e.setSize(null,40),is(e.getWrapperElement().style.width,"100%"),is(e.getScrollerElement().style.height,"40px")}),testCM("hiddenLines",function(e){addDoc(e,4,10),e.hideLine(4),e.setCursor({line:3,ch:0}),CodeMirror.commands.goLineDown(e),eqPos(e.getCursor(),{line:5,ch:0}),e.setLine(3,"abcdefg"),e.setCursor({line:3,ch:6}),CodeMirror.commands.goLineDown(e),eqPos(e.getCursor(),{line:5,ch:4}),e.setLine(3,"ab"),e.setCursor({line:3,ch:2}),CodeMirror.commands.goLineDown(e),eqPos(e.getCursor(),{line:5,ch:2})}),testCM("hiddenLinesSelectAll",function(e){addDoc(e,4,20);for(var n=0;20>n;++n)10!=n&&e.hideLine(n);CodeMirror.commands.selectAll(e),eqPos(e.getCursor(!0),{line:10,ch:0}),eqPos(e.getCursor(!1),{line:10,ch:4})}),testCM("wrappingAndResizing",function(e){e.setSize(null,"auto"),e.setOption("lineWrapping",!0);var n=e.getWrapperElement(),a=n.offsetHeight,o=50,t="xxx xxx xxx xxx xxx";e.setValue(t);for(var i=10;;o+=i)if(e.setSize(o),n.offsetHeight==a){if(10!=i){o--;break}o-=10,i=1}e.setCursor({line:0,ch:t.length}),eq(n.offsetHeight,a),e.replaceSelection("x"),is(n.offsetHeight>a),e.setValue(t+"\n"+t+"\n"),e.getScrollerElement().style.maxHeight="100px",e.replaceRange("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n!\n",{line:2,ch:0}),forEach([{line:0,ch:t.length},{line:0,ch:t.length-1},{line:0,ch:0},{line:1,ch:t.length},{line:1,ch:t.length-1}],function(n){var a=e.charCoords(n);eqPos(n,e.coordsChar({x:a.x+2,y:a.y+2}))})},null,ie_lt8),testCM("measureEndOfLine",function(e){e.setSize(null,"auto");for(var n=byClassName(e.getWrapperElement(),"CodeMirror-lines")[0].firstChild,a=20,o=n.offsetHeight,t=10;;a+=t)if(e.setSize(a),n.offsetHeight<2.5*o){if(10!=t)break;a-=10,t=1}e.setValue(e.getValue()+"\n\n");var i=e.charCoords({line:0,ch:18},"local");is(i.y>.8*o,"not at top"),is(i.x>a-20,"not at right"),i=e.charCoords({line:0,ch:18}),eqPos(e.coordsChar({x:i.x,y:i.y+2}),{line:0,ch:18})},{mode:"text/html",value:"<!-- foo barrr -->",lineWrapping:!0},ie_lt8),testCM("scrollVerticallyAndHorizontally",function(e){e.setSize(100,100),addDoc(e,40,40),e.setCursor(39);var n=e.getWrapperElement(),a=byClassName(n,"CodeMirror-scrollbar")[0];is(a.offsetHeight<n.offsetHeight,"vertical scrollbar limited by horizontal one");var o=byClassName(n,"CodeMirror-cursor")[0].getBoundingClientRect(),t=n.getBoundingClientRect();is(o.bottom<t.top+e.getScrollerElement().clientHeight,"bottom line visible")},{gutter:!0}),testCM("moveV stuck",function(e){var n=byClassName(e.getWrapperElement(),"CodeMirror-lines")[0].firstChild,a=n.offsetHeight,o="fooooooooooooooooooooooooo baaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaar\n";e.setValue(o);for(var t=50;e.setSize(t),!(n.offsetHeight<=3*a);t+=5);e.setCursor({line:0,ch:o.length-1}),e.moveV(-1,"line"),eqPos(e.getCursor(),{line:0,ch:26})},{lineWrapping:!0},ie_lt8),testCM("clickTab",function(e){var n=e.charCoords({line:0,ch:0}),a=e.charCoords({line:0,ch:1});eqPos(e.coordsChar({x:n.x+5,y:n.y+5}),{line:0,ch:0}),eqPos(e.coordsChar({x:a.x-5,y:a.y+5}),{line:0,ch:1})},{value:" \n\n",lineWrapping:!0,tabSize:8}),testCM("verticalScroll",function(e){e.setSize(100,200),e.setValue("foo\nbar\nbaz\n");var n=e.getScrollerElement(),a=n.scrollWidth;e.setLine(0,"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah"),is(n.scrollWidth>a,"scrollbar present"),e.setLine(0,"foo"),eq(n.scrollWidth,a,"scrollbar gone"),e.setLine(0,"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaah"),e.setLine(1,"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbh"),is(n.scrollWidth>a,"present again");var o=n.scrollWidth;e.setLine(0,"foo"),is(n.scrollWidth<o,"scrollbar smaller"),is(n.scrollWidth>a,"but still present")}),testCM("extraKeys",function(e){function n(n,o,t){"string"==typeof o&&(o=o.charCodeAt(0));var i={type:"keydown",keyCode:o,preventDefault:function(){},stopPropagation:function(){}};if(t)for(var r in t)i[r]=t[r];a=null,e.triggerOnKeyDown(i),eq(a,n)}var a;CodeMirror.commands.testCommand=function(){a="tc"},CodeMirror.commands.goTestCommand=function(){a="gtc"},e.setOption("extraKeys",{"Shift-X":function(){a="sx"},X:function(){a="x"},"Ctrl-Alt-U":function(){a="cau"},End:"testCommand",Home:"goTestCommand",Tab:!1}),n(null,"U"),n("cau","U",{ctrlKey:!0,altKey:!0}),n(null,"U",{shiftKey:!0,ctrlKey:!0,altKey:!0}),n("x","X"),n("sx","X",{shiftKey:!0}),n("tc",35),n(null,35,{shiftKey:!0}),n("gtc",36),n("gtc",36,{shiftKey:!0}),n(null,9)}),testCM("wordMovementCommands",function(e){e.execCommand("goWordLeft"),eqPos(e.getCursor(),{line:0,ch:0}),e.execCommand("goWordRight"),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:0,ch:7}),e.execCommand("goWordLeft"),eqPos(e.getCursor(),{line:0,ch:5}),e.execCommand("goWordRight"),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:0,ch:12}),e.execCommand("goWordLeft"),eqPos(e.getCursor(),{line:0,ch:9}),e.execCommand("goWordRight"),e.execCommand("goWordRight"),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:1,ch:1}),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:1,ch:9}),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:1,ch:13}),e.execCommand("goWordRight"),e.execCommand("goWordRight"),eqPos(e.getCursor(),{line:2,ch:0})},{value:"this is (the) firstline.\na foo12éø×bar\n"}),testCM("charMovementCommands",function(e){e.execCommand("goCharLeft"),e.execCommand("goColumnLeft"),eqPos(e.getCursor(),{line:0,ch:0}),e.execCommand("goCharRight"),e.execCommand("goCharRight"),eqPos(e.getCursor(),{line:0,ch:2}),e.setCursor({line:1,ch:0}),e.execCommand("goColumnLeft"),eqPos(e.getCursor(),{line:1,ch:0}),e.execCommand("goCharLeft"),eqPos(e.getCursor(),{line:0,ch:5}),e.execCommand("goColumnRight"),eqPos(e.getCursor(),{line:0,ch:5}),e.execCommand("goCharRight"),eqPos(e.getCursor(),{line:1,ch:0}),e.execCommand("goLineEnd"),eqPos(e.getCursor(),{line:1,ch:5}),e.execCommand("goLineStartSmart"),eqPos(e.getCursor(),{line:1,ch:1}),e.execCommand("goLineStartSmart"),eqPos(e.getCursor(),{line:1,ch:0}),e.setCursor({line:2,ch:0}),e.execCommand("goCharRight"),e.execCommand("goColumnRight"),eqPos(e.getCursor(),{line:2,ch:0})},{value:"line1\n ine2\n"}),testCM("verticalMovementCommands",function(e){e.execCommand("goLineUp"),eqPos(e.getCursor(),{line:0,ch:0}),e.execCommand("goLineDown"),eqPos(e.getCursor(),{line:1,ch:0}),e.setCursor({line:1,ch:12}),e.execCommand("goLineDown"),eqPos(e.getCursor(),{line:2,ch:5}),e.execCommand("goLineDown"),eqPos(e.getCursor(),{line:3,ch:0}),e.execCommand("goLineUp"),eqPos(e.getCursor(),{line:2,ch:5}),e.execCommand("goLineUp"),eqPos(e.getCursor(),{line:1,ch:12}),e.execCommand("goPageDown"),eqPos(e.getCursor(),{line:5,ch:0}),e.execCommand("goPageDown"),e.execCommand("goLineDown"),eqPos(e.getCursor(),{line:5,ch:0}),e.execCommand("goPageUp"),eqPos(e.getCursor(),{line:0,ch:0})},{value:"line1\nlong long line2\nline3\n\nline5\n"}),testCM("verticalMovementCommandsWrapping",function(e){e.setSize(120),e.setCursor({line:0,ch:5}),e.execCommand("goLineDown"),eq(e.getCursor().line,0),is(e.getCursor().ch>5,"moved beyond wrap");for(var n=0;;++n){is(20>n,"no endless loop"),e.execCommand("goLineDown");var a=e.getCursor();if(1==a.line&&eq(a.ch,5),2==a.line){eq(a.ch,1);break}}},{value:"a very long line that wraps around somehow so that we can test cursor movement\nshortone\nk",lineWrapping:!0});