rearview 1.0.0.rc1-jruby → 1.0.0.rc2-jruby

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1814) hide show
  1. checksums.yaml +4 -4
  2. data/bin/rails +8 -0
  3. data/lib/rearview/version.rb +1 -1
  4. data/public/favicon.ico +0 -0
  5. data/public/help/alert.html +20 -0
  6. data/public/help/quick.html +34 -0
  7. data/public/monitors/index.json +3 -0
  8. data/public/monitors/outage.rb +2 -0
  9. data/public/rearview-src/css/rearview.css +1 -0
  10. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  11. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  12. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  13. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  14. data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  15. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  16. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  17. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  18. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  19. data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  20. data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
  21. data/public/rearview-src/img/login/company-logo.svg +107 -0
  22. data/public/rearview-src/img/noise-light.png +0 -0
  23. data/public/rearview-src/img/noise.png +0 -0
  24. data/public/rearview-src/img/rearview.svg +19 -0
  25. data/public/rearview-src/img/rearviewlogo.png +0 -0
  26. data/public/rearview-src/img/rearviewlogo_small.png +0 -0
  27. data/public/rearview-src/img/sample-monitor.png +0 -0
  28. data/public/rearview-src/js/app.build.js +15 -0
  29. data/public/rearview-src/js/app.js +295 -0
  30. data/public/rearview-src/js/collection/dashboard.js +41 -0
  31. data/public/rearview-src/js/collection/monitor.js +53 -0
  32. data/public/rearview-src/js/main.js +89 -0
  33. data/public/rearview-src/js/model/base.js +34 -0
  34. data/public/rearview-src/js/model/dashboard.js +47 -0
  35. data/public/rearview-src/js/model/monitor.js +67 -0
  36. data/public/rearview-src/js/model/user.js +81 -0
  37. data/public/rearview-src/js/route/index.js +47 -0
  38. data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
  39. data/public/rearview-src/js/util/templar.js +178 -0
  40. data/public/rearview-src/js/view/addcategory.js +250 -0
  41. data/public/rearview-src/js/view/adddashboard.js +166 -0
  42. data/public/rearview-src/js/view/addmonitor.js +679 -0
  43. data/public/rearview-src/js/view/alert.js +47 -0
  44. data/public/rearview-src/js/view/alerttimeline.js +340 -0
  45. data/public/rearview-src/js/view/base.js +535 -0
  46. data/public/rearview-src/js/view/dashboard.js +493 -0
  47. data/public/rearview-src/js/view/dashboardtile.js +146 -0
  48. data/public/rearview-src/js/view/deletemonitor.js +68 -0
  49. data/public/rearview-src/js/view/ecosystem.js +90 -0
  50. data/public/rearview-src/js/view/expandedmonitor.js +706 -0
  51. data/public/rearview-src/js/view/header.js +43 -0
  52. data/public/rearview-src/js/view/primarynav.js +63 -0
  53. data/public/rearview-src/js/view/resetmonitor.js +101 -0
  54. data/public/rearview-src/js/view/secondarynav.js +45 -0
  55. data/public/rearview-src/js/view/smallmonitor.js +416 -0
  56. data/public/rearview-src/less/alert.less +45 -0
  57. data/public/rearview-src/less/dashboard.less +173 -0
  58. data/public/rearview-src/less/ecosystem.less +221 -0
  59. data/public/rearview-src/less/elements.less +168 -0
  60. data/public/rearview-src/less/expandedmonitor.less +283 -0
  61. data/public/rearview-src/less/header.less +76 -0
  62. data/public/rearview-src/less/login.less +1050 -0
  63. data/public/rearview-src/less/primarynav.less +151 -0
  64. data/public/rearview-src/less/rearview.less +1207 -0
  65. data/public/rearview-src/login/icons/rearview.svg +19 -0
  66. data/public/rearview-src/templates/addcategory.hbs +38 -0
  67. data/public/rearview-src/templates/adddashboard.hbs +26 -0
  68. data/public/rearview-src/templates/addmonitor.hbs +10 -0
  69. data/public/rearview-src/templates/alert.hbs +4 -0
  70. data/public/rearview-src/templates/alerttimeline.hbs +15 -0
  71. data/public/rearview-src/templates/dashboard.hbs +35 -0
  72. data/public/rearview-src/templates/dashboardtile.hbs +22 -0
  73. data/public/rearview-src/templates/deletemonitor.hbs +16 -0
  74. data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
  75. data/public/rearview-src/templates/header.hbs +9 -0
  76. data/public/rearview-src/templates/primarynav.hbs +50 -0
  77. data/public/rearview-src/templates/resetmonitor.hbs +16 -0
  78. data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
  79. data/public/rearview-src/templates/secondarynav.hbs +11 -0
  80. data/public/rearview-src/templates/setmetrics.hbs +53 -0
  81. data/public/rearview-src/templates/smallmonitor.hbs +52 -0
  82. data/public/rearview-src/templates/test.txt +1 -0
  83. data/public/rearview-src/test/spec/model/application.js +60 -0
  84. data/public/rearview-src/test/spec/model/job.js +109 -0
  85. data/public/rearview-src/test/spec/model/user.js +50 -0
  86. data/public/rearview-src/test/spec/view/base.js +58 -0
  87. data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
  88. data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
  89. data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
  90. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
  91. data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  92. data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
  93. data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
  94. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  95. data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  96. data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
  97. data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
  98. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  99. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  100. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  101. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  102. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
  103. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
  104. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
  105. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
  106. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
  107. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
  108. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
  109. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
  110. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
  111. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
  112. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
  113. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
  114. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
  115. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
  116. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
  117. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  118. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
  119. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
  120. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
  121. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
  122. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
  123. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
  124. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
  125. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
  126. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
  127. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
  128. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
  129. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  130. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  131. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  132. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
  133. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
  134. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
  135. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
  136. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
  137. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
  138. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
  139. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
  140. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
  141. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
  142. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
  143. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
  144. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
  145. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
  146. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
  147. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
  148. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
  149. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
  150. data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  151. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  152. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  153. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
  154. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  155. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  156. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  157. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  158. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  159. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  160. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  161. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  162. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  163. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  164. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  165. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  166. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  167. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  168. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  169. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  170. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  171. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  172. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  173. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  174. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  175. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  176. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  177. data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  178. data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
  179. data/public/rearview-src/vendor/codemirror/README.md +8 -0
  180. data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
  181. data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
  182. data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
  183. data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
  184. data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
  185. data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
  186. data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
  187. data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
  188. data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
  189. data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
  190. data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
  191. data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
  192. data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
  193. data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
  194. data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
  195. data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
  196. data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
  197. data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
  198. data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
  199. data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
  200. data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
  201. data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
  202. data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
  203. data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
  204. data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
  205. data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
  206. data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
  207. data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
  208. data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
  209. data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  210. data/public/rearview-src/vendor/codemirror/index.html +472 -0
  211. data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
  212. data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
  213. data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
  214. data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
  215. data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
  216. data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
  217. data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
  218. data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
  219. data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
  220. data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
  221. data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
  222. data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
  223. data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
  224. data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
  225. data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
  226. data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
  227. data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
  228. data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
  229. data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
  230. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
  231. data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
  232. data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
  233. data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
  234. data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
  235. data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
  236. data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
  237. data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
  238. data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  239. data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
  240. data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
  241. data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
  242. data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
  243. data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
  244. data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
  245. data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
  246. data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
  247. data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
  248. data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
  249. data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
  250. data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
  251. data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
  252. data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
  253. data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
  254. data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
  255. data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
  256. data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
  257. data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
  258. data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
  259. data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
  260. data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
  261. data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
  262. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
  263. data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  264. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
  265. data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  266. data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
  267. data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
  268. data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
  269. data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
  270. data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
  271. data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
  272. data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
  273. data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
  274. data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
  275. data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
  276. data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
  277. data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
  278. data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
  279. data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
  280. data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
  281. data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
  282. data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
  283. data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
  284. data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
  285. data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
  286. data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
  287. data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
  288. data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
  289. data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
  290. data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
  291. data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
  292. data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
  293. data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
  294. data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
  295. data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
  296. data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
  297. data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  298. data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
  299. data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
  300. data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
  301. data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
  302. data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
  303. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
  304. data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  305. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  306. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  307. data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
  308. data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
  309. data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
  310. data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
  311. data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
  312. data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
  313. data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
  314. data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
  315. data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
  316. data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
  317. data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
  318. data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
  319. data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
  320. data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
  321. data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
  322. data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
  323. data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
  324. data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
  325. data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
  326. data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
  327. data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
  328. data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
  329. data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
  330. data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
  331. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  332. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  333. data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
  334. data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
  335. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
  336. data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
  337. data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  338. data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
  339. data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
  340. data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
  341. data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
  342. data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
  343. data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
  344. data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
  345. data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
  346. data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
  347. data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
  348. data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
  349. data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
  350. data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
  351. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
  352. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
  353. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
  354. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
  355. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
  356. data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
  357. data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
  358. data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
  359. data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
  360. data/public/rearview-src/vendor/codemirror/package.json +21 -0
  361. data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
  362. data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
  363. data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
  364. data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
  365. data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
  366. data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
  367. data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
  368. data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
  369. data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
  370. data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
  371. data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
  372. data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
  373. data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
  374. data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
  375. data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
  376. data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
  377. data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
  378. data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
  379. data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
  380. data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
  381. data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
  382. data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
  383. data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
  384. data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
  385. data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  386. data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
  387. data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
  388. data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  389. data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  390. data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
  391. data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
  392. data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  393. data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  394. data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  395. data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
  396. data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  397. data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
  398. data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  399. data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  400. data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  401. data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  402. data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  403. data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
  404. data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  405. data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  406. data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  407. data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
  408. data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  409. data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  410. data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  411. data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  412. data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  413. data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  414. data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  415. data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  416. data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  417. data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
  418. data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
  419. data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  420. data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  421. data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  422. data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  423. data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  424. data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  425. data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  426. data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  427. data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
  428. data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
  429. data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  430. data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  431. data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  432. data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  433. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  434. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  435. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  436. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  437. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  438. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  439. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  440. data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  441. data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
  442. data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  443. data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
  444. data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  445. data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
  446. data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
  447. data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
  448. data/public/rearview-src/vendor/highcharts/index.htm +79 -0
  449. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
  450. data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
  451. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
  452. data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
  453. data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
  454. data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
  455. data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
  456. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
  457. data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
  458. data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
  459. data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
  460. data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
  461. data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
  462. data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
  463. data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
  464. data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
  465. data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
  466. data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
  467. data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
  468. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  469. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
  470. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
  471. data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
  472. data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
  473. data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
  474. data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
  475. data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
  476. data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
  477. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  478. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  479. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  480. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  481. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  482. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  483. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  484. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  485. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  486. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  487. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  488. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  489. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  490. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  491. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  492. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
  493. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
  494. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  495. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
  496. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  497. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  498. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  499. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  500. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  501. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  502. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  503. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  504. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  505. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  506. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  507. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  508. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  509. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  510. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  511. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  512. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  513. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
  514. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
  515. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
  516. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
  517. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  518. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  519. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  520. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  521. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  522. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
  523. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  524. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  525. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  526. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  527. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  528. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  529. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  530. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  531. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  532. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  533. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  534. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  535. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  536. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  537. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  538. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  539. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  540. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  541. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  542. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  543. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  544. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  545. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  546. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  547. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  548. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  549. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  550. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  551. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  552. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  553. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  554. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  555. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  556. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  557. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  558. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  559. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  560. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  561. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  562. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  563. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  564. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  565. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  566. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  567. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  568. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  569. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  570. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  571. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  572. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  573. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  574. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  575. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  576. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  577. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  578. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  579. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  580. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  581. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  582. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  583. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  584. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  585. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  586. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  587. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  588. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  589. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  590. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  591. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  592. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  593. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  594. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  595. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  596. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
  597. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
  598. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
  599. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
  600. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
  601. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
  602. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
  603. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
  604. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  605. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  606. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  607. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  608. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  609. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  610. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  611. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  612. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  613. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  614. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  615. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  616. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  617. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  618. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  619. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
  620. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
  621. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
  622. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
  623. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
  624. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
  625. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  626. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  627. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  628. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  629. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  630. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  631. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  632. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  633. 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
  634. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  635. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  636. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  637. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  638. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  639. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
  640. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
  641. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  642. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
  643. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  644. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  645. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  646. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  647. 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
  648. 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
  649. 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
  650. 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
  651. 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
  652. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  653. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  654. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  655. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  656. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  657. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  658. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
  659. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
  660. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
  661. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
  662. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
  663. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
  664. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  665. 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
  666. 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
  667. 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
  668. 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
  669. 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
  670. 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
  671. 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
  672. 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
  673. 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
  674. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  675. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  676. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  677. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  678. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  679. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
  680. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
  681. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
  682. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
  683. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  684. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  685. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  686. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  687. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  688. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  689. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  690. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  691. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  692. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  693. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  694. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  695. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  696. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  697. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  698. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  699. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  700. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  701. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  702. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  703. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
  704. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  705. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  706. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  707. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  708. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
  709. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  710. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  711. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  712. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  713. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
  714. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  715. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  716. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  717. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  718. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  719. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  720. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  721. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  722. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  723. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  724. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
  725. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  726. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  727. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
  728. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  729. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  730. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  731. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  732. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
  733. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  734. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  735. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  736. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  737. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  738. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  739. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  740. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
  741. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
  742. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
  743. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  744. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
  745. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
  746. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  747. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  748. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
  749. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  750. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  751. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
  752. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
  753. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  754. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
  755. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  756. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  757. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  758. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  759. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  760. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  761. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  762. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  763. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  764. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  765. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  766. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  767. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  768. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  769. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  770. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  771. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  772. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
  773. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  774. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  775. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  776. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  777. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
  778. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
  779. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
  780. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
  781. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
  782. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
  783. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
  784. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
  785. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
  786. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
  787. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
  788. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
  789. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
  790. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
  791. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
  792. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
  793. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
  794. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
  795. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
  796. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
  797. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
  798. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  799. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  800. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  801. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  802. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  803. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  804. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  805. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  806. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  807. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  808. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  809. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  810. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  811. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  812. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  813. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  814. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  815. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  816. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  817. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  818. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  819. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  820. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  821. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  822. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  823. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  824. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  825. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  826. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  827. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  828. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  829. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  830. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  831. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  832. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  833. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  834. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  835. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  836. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  837. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  838. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  839. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  840. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  841. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  842. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  843. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  844. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  845. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  846. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  847. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  848. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  849. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  850. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  851. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  852. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  853. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  854. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  855. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  856. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  857. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  858. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  859. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  860. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  861. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  862. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  863. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  864. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  865. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  866. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  867. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  868. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  869. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  870. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  871. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  872. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
  873. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  874. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  875. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  876. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  877. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  878. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  879. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  880. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  881. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  882. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  883. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  884. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  885. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  886. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  887. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  888. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  889. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  890. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  891. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  892. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  893. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
  894. data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
  895. data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
  896. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  897. data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
  898. data/public/rearview-src/vendor/less/js/less.js +11 -0
  899. data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
  900. data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
  901. data/public/rearview-src/vendor/require/js/require.js +11408 -0
  902. data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
  903. data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
  904. data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
  905. data/public/rearview-src/vendor/timeline/timeline.css +130 -0
  906. data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
  907. data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
  908. data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
  909. data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
  910. data/public/rearview/build.txt +295 -0
  911. data/public/rearview/css/rearview.css +1 -0
  912. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
  913. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
  914. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
  915. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
  916. data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
  917. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
  918. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
  919. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
  920. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
  921. data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
  922. data/public/rearview/img/livingsocial-logo-white.svg +107 -0
  923. data/public/rearview/img/login/company-logo.svg +107 -0
  924. data/public/rearview/img/noise-light.png +0 -0
  925. data/public/rearview/img/noise.png +0 -0
  926. data/public/rearview/img/rearview.svg +19 -0
  927. data/public/rearview/img/rearviewlogo.png +0 -0
  928. data/public/rearview/img/rearviewlogo_small.png +0 -0
  929. data/public/rearview/img/sample-monitor.png +0 -0
  930. data/public/rearview/js/app.build.js +0 -0
  931. data/public/rearview/js/app.js +1 -0
  932. data/public/rearview/js/collection/dashboard.js +1 -0
  933. data/public/rearview/js/collection/monitor.js +1 -0
  934. data/public/rearview/js/main.js +402 -0
  935. data/public/rearview/js/model/base.js +1 -0
  936. data/public/rearview/js/model/dashboard.js +1 -0
  937. data/public/rearview/js/model/monitor.js +1 -0
  938. data/public/rearview/js/model/user.js +1 -0
  939. data/public/rearview/js/route/index.js +1 -0
  940. data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
  941. data/public/rearview/js/util/templar.js +1 -0
  942. data/public/rearview/js/view/addcategory.js +1 -0
  943. data/public/rearview/js/view/adddashboard.js +1 -0
  944. data/public/rearview/js/view/addmonitor.js +1 -0
  945. data/public/rearview/js/view/alert.js +1 -0
  946. data/public/rearview/js/view/alerttimeline.js +1 -0
  947. data/public/rearview/js/view/base.js +1 -0
  948. data/public/rearview/js/view/dashboard.js +1 -0
  949. data/public/rearview/js/view/dashboardtile.js +1 -0
  950. data/public/rearview/js/view/deletemonitor.js +1 -0
  951. data/public/rearview/js/view/ecosystem.js +1 -0
  952. data/public/rearview/js/view/expandedmonitor.js +1 -0
  953. data/public/rearview/js/view/header.js +1 -0
  954. data/public/rearview/js/view/primarynav.js +1 -0
  955. data/public/rearview/js/view/resetmonitor.js +1 -0
  956. data/public/rearview/js/view/secondarynav.js +1 -0
  957. data/public/rearview/js/view/smallmonitor.js +1 -0
  958. data/public/rearview/less/alert.less +45 -0
  959. data/public/rearview/less/dashboard.less +173 -0
  960. data/public/rearview/less/ecosystem.less +221 -0
  961. data/public/rearview/less/elements.less +168 -0
  962. data/public/rearview/less/expandedmonitor.less +283 -0
  963. data/public/rearview/less/header.less +76 -0
  964. data/public/rearview/less/login.less +1050 -0
  965. data/public/rearview/less/primarynav.less +151 -0
  966. data/public/rearview/less/rearview.less +1207 -0
  967. data/public/rearview/login/icons/rearview.svg +19 -0
  968. data/public/rearview/templates/addcategory.hbs +38 -0
  969. data/public/rearview/templates/adddashboard.hbs +26 -0
  970. data/public/rearview/templates/addmonitor.hbs +10 -0
  971. data/public/rearview/templates/alert.hbs +4 -0
  972. data/public/rearview/templates/alerttimeline.hbs +15 -0
  973. data/public/rearview/templates/dashboard.hbs +35 -0
  974. data/public/rearview/templates/dashboardtile.hbs +22 -0
  975. data/public/rearview/templates/deletemonitor.hbs +16 -0
  976. data/public/rearview/templates/expandedmonitor.hbs +191 -0
  977. data/public/rearview/templates/header.hbs +9 -0
  978. data/public/rearview/templates/primarynav.hbs +50 -0
  979. data/public/rearview/templates/resetmonitor.hbs +16 -0
  980. data/public/rearview/templates/schedulemonitor.hbs +78 -0
  981. data/public/rearview/templates/secondarynav.hbs +11 -0
  982. data/public/rearview/templates/setmetrics.hbs +53 -0
  983. data/public/rearview/templates/smallmonitor.hbs +52 -0
  984. data/public/rearview/templates/test.txt +1 -0
  985. data/public/rearview/test/spec/model/application.js +1 -0
  986. data/public/rearview/test/spec/model/job.js +1 -0
  987. data/public/rearview/test/spec/model/user.js +1 -0
  988. data/public/rearview/test/spec/view/base.js +1 -0
  989. data/public/rearview/vendor/backbone/js/backbone.js +6 -0
  990. data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
  991. data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
  992. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
  993. data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
  994. data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
  995. data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
  996. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
  997. data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
  998. data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
  999. data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
  1000. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
  1001. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
  1002. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
  1003. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
  1004. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
  1005. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
  1006. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
  1007. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
  1008. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
  1009. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
  1010. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
  1011. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
  1012. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
  1013. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
  1014. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
  1015. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
  1016. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
  1017. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
  1018. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
  1019. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
  1020. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
  1021. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
  1022. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
  1023. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
  1024. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
  1025. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
  1026. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
  1027. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
  1028. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
  1029. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
  1030. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
  1031. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
  1032. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
  1033. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
  1034. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
  1035. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
  1036. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
  1037. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
  1038. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
  1039. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
  1040. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
  1041. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
  1042. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
  1043. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
  1044. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
  1045. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
  1046. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
  1047. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
  1048. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
  1049. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
  1050. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
  1051. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
  1052. data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
  1053. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
  1054. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
  1055. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
  1056. data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
  1057. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
  1058. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
  1059. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
  1060. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
  1061. data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
  1062. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
  1063. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
  1064. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
  1065. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
  1066. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
  1067. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
  1068. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
  1069. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
  1070. data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
  1071. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
  1072. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
  1073. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
  1074. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
  1075. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
  1076. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
  1077. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
  1078. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
  1079. data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
  1080. data/public/rearview/vendor/codemirror/LICENSE +23 -0
  1081. data/public/rearview/vendor/codemirror/README.md +8 -0
  1082. data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
  1083. data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
  1084. data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
  1085. data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
  1086. data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
  1087. data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
  1088. data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
  1089. data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
  1090. data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
  1091. data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
  1092. data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
  1093. data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
  1094. data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
  1095. data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
  1096. data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
  1097. data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
  1098. data/public/rearview/vendor/codemirror/demo/search.html +85 -0
  1099. data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
  1100. data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
  1101. data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
  1102. data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
  1103. data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
  1104. data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
  1105. data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
  1106. data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
  1107. data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
  1108. data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
  1109. data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
  1110. data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
  1111. data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
  1112. data/public/rearview/vendor/codemirror/index.html +472 -0
  1113. data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
  1114. data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
  1115. data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
  1116. data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
  1117. data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
  1118. data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
  1119. data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
  1120. data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
  1121. data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
  1122. data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
  1123. data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
  1124. data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
  1125. data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
  1126. data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
  1127. data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
  1128. data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
  1129. data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
  1130. data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
  1131. data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
  1132. data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
  1133. data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
  1134. data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
  1135. data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
  1136. data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
  1137. data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
  1138. data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
  1139. data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
  1140. data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
  1141. data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
  1142. data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
  1143. data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
  1144. data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
  1145. data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
  1146. data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
  1147. data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
  1148. data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
  1149. data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
  1150. data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
  1151. data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
  1152. data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
  1153. data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
  1154. data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
  1155. data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
  1156. data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
  1157. data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
  1158. data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
  1159. data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
  1160. data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
  1161. data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
  1162. data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
  1163. data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
  1164. data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
  1165. data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
  1166. data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
  1167. data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
  1168. data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
  1169. data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
  1170. data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
  1171. data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
  1172. data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
  1173. data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
  1174. data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
  1175. data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
  1176. data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
  1177. data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
  1178. data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
  1179. data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
  1180. data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
  1181. data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
  1182. data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
  1183. data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
  1184. data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
  1185. data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
  1186. data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
  1187. data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
  1188. data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
  1189. data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
  1190. data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
  1191. data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
  1192. data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
  1193. data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
  1194. data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
  1195. data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
  1196. data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
  1197. data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
  1198. data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
  1199. data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
  1200. data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
  1201. data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
  1202. data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
  1203. data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
  1204. data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
  1205. data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
  1206. data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
  1207. data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
  1208. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
  1209. data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
  1210. data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
  1211. data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
  1212. data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
  1213. data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
  1214. data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
  1215. data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
  1216. data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
  1217. data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
  1218. data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
  1219. data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
  1220. data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
  1221. data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
  1222. data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
  1223. data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
  1224. data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
  1225. data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
  1226. data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
  1227. data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
  1228. data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
  1229. data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
  1230. data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
  1231. data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
  1232. data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
  1233. data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
  1234. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  1235. data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
  1236. data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
  1237. data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
  1238. data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
  1239. data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
  1240. data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
  1241. data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
  1242. data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
  1243. data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
  1244. data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
  1245. data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
  1246. data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
  1247. data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
  1248. data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
  1249. data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
  1250. data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
  1251. data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
  1252. data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
  1253. data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
  1254. data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
  1255. data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
  1256. data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
  1257. data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
  1258. data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
  1259. data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
  1260. data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
  1261. data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
  1262. data/public/rearview/vendor/codemirror/package.json +21 -0
  1263. data/public/rearview/vendor/codemirror/test/driver.js +1 -0
  1264. data/public/rearview/vendor/codemirror/test/index.html +168 -0
  1265. data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
  1266. data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
  1267. data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
  1268. data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
  1269. data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
  1270. data/public/rearview/vendor/codemirror/test/run.js +32 -0
  1271. data/public/rearview/vendor/codemirror/test/test.js +1 -0
  1272. data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
  1273. data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
  1274. data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
  1275. data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
  1276. data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
  1277. data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
  1278. data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
  1279. data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
  1280. data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
  1281. data/public/rearview/vendor/codemirror/theme/night.css +19 -0
  1282. data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
  1283. data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
  1284. data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
  1285. data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
  1286. data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
  1287. data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
  1288. data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
  1289. data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
  1290. data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
  1291. data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
  1292. data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
  1293. data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
  1294. data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
  1295. data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
  1296. data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
  1297. data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
  1298. data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
  1299. data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
  1300. data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
  1301. data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
  1302. data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
  1303. data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
  1304. data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
  1305. data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
  1306. data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
  1307. data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
  1308. data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
  1309. data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
  1310. data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
  1311. data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
  1312. data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
  1313. data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
  1314. data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
  1315. data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
  1316. data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
  1317. data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
  1318. data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
  1319. data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
  1320. data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
  1321. data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
  1322. data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
  1323. data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
  1324. data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
  1325. data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
  1326. data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
  1327. data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
  1328. data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
  1329. data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
  1330. data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
  1331. data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
  1332. data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
  1333. data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
  1334. data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
  1335. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
  1336. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
  1337. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
  1338. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
  1339. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
  1340. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
  1341. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
  1342. data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
  1343. data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
  1344. data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
  1345. data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
  1346. data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
  1347. data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
  1348. data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
  1349. data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
  1350. data/public/rearview/vendor/highcharts/index.htm +79 -0
  1351. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
  1352. data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
  1353. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
  1354. data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
  1355. data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
  1356. data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
  1357. data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
  1358. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
  1359. data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
  1360. data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
  1361. data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
  1362. data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
  1363. data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
  1364. data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
  1365. data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
  1366. data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
  1367. data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
  1368. data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
  1369. data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
  1370. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
  1371. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
  1372. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
  1373. data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
  1374. data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
  1375. data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
  1376. data/public/rearview/vendor/jasmine/src/Player.js +1 -0
  1377. data/public/rearview/vendor/jasmine/src/Song.js +1 -0
  1378. data/public/rearview/vendor/jquery/js/jquery.js +24 -0
  1379. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
  1380. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1381. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1382. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1383. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1384. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1385. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1386. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1387. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1388. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1389. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1390. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1391. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1392. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1393. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1394. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
  1395. data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
  1396. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
  1397. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
  1398. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
  1399. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
  1400. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
  1401. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
  1402. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
  1403. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
  1404. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
  1405. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
  1406. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
  1407. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
  1408. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
  1409. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
  1410. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
  1411. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
  1412. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  1413. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
  1414. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
  1415. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
  1416. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
  1417. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
  1418. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
  1419. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
  1420. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
  1421. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
  1422. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
  1423. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
  1424. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
  1425. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
  1426. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
  1427. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
  1428. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
  1429. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
  1430. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
  1431. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
  1432. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
  1433. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
  1434. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
  1435. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
  1436. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
  1437. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
  1438. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
  1439. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  1440. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  1441. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  1442. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  1443. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  1444. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  1445. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  1446. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  1447. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
  1448. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
  1449. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
  1450. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
  1451. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
  1452. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
  1453. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
  1454. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
  1455. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
  1456. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
  1457. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
  1458. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
  1459. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  1460. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
  1461. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  1462. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  1463. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
  1464. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
  1465. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
  1466. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
  1467. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
  1468. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
  1469. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
  1470. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
  1471. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
  1472. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
  1473. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
  1474. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
  1475. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
  1476. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
  1477. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
  1478. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
  1479. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
  1480. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
  1481. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
  1482. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
  1483. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
  1484. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
  1485. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
  1486. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
  1487. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
  1488. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
  1489. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
  1490. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
  1491. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
  1492. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
  1493. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
  1494. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
  1495. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
  1496. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
  1497. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
  1498. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
  1499. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
  1500. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
  1501. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
  1502. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
  1503. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
  1504. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
  1505. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
  1506. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
  1507. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
  1508. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1509. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1510. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1511. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1512. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1513. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1514. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1515. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1516. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  1517. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  1518. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  1519. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  1520. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  1521. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
  1522. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
  1523. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
  1524. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
  1525. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
  1526. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
  1527. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
  1528. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1529. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  1530. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  1531. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  1532. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  1533. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  1534. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1535. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  1536. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  1537. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  1538. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  1539. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  1540. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  1541. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
  1542. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
  1543. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
  1544. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
  1545. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
  1546. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1547. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1548. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1549. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
  1550. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
  1551. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
  1552. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
  1553. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
  1554. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1555. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
  1556. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
  1557. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
  1558. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
  1559. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
  1560. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
  1561. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
  1562. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
  1563. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
  1564. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
  1565. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
  1566. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
  1567. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
  1568. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
  1569. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
  1570. 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
  1571. 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
  1572. 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
  1573. 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
  1574. 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
  1575. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
  1576. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
  1577. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
  1578. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
  1579. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
  1580. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
  1581. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
  1582. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
  1583. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
  1584. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
  1585. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
  1586. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
  1587. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
  1588. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
  1589. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
  1590. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
  1591. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
  1592. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
  1593. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
  1594. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
  1595. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
  1596. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
  1597. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
  1598. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
  1599. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
  1600. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
  1601. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
  1602. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
  1603. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
  1604. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
  1605. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
  1606. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
  1607. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
  1608. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
  1609. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
  1610. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
  1611. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
  1612. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
  1613. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
  1614. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
  1615. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
  1616. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
  1617. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
  1618. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
  1619. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
  1620. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
  1621. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
  1622. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
  1623. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
  1624. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
  1625. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
  1626. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
  1627. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
  1628. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
  1629. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
  1630. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
  1631. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
  1632. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
  1633. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
  1634. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
  1635. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
  1636. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
  1637. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
  1638. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
  1639. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
  1640. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
  1641. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
  1642. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
  1643. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
  1644. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
  1645. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
  1646. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
  1647. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
  1648. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
  1649. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
  1650. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
  1651. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
  1652. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
  1653. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
  1654. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
  1655. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
  1656. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
  1657. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
  1658. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
  1659. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
  1660. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
  1661. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
  1662. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
  1663. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
  1664. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
  1665. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
  1666. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
  1667. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
  1668. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
  1669. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
  1670. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
  1671. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
  1672. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
  1673. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
  1674. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
  1675. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
  1676. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
  1677. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
  1678. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
  1679. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
  1680. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
  1681. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
  1682. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
  1683. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
  1684. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
  1685. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
  1686. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
  1687. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
  1688. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
  1689. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
  1690. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
  1691. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
  1692. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
  1693. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
  1694. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
  1695. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
  1696. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
  1697. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
  1698. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
  1699. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
  1700. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
  1701. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
  1702. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
  1703. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
  1704. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
  1705. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
  1706. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
  1707. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
  1708. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
  1709. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
  1710. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
  1711. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
  1712. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
  1713. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
  1714. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
  1715. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
  1716. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
  1717. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
  1718. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
  1719. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
  1720. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
  1721. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
  1722. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
  1723. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
  1724. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
  1725. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
  1726. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
  1727. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
  1728. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
  1729. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
  1730. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
  1731. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
  1732. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
  1733. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
  1734. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
  1735. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
  1736. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
  1737. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
  1738. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
  1739. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
  1740. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
  1741. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
  1742. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
  1743. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
  1744. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
  1745. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
  1746. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
  1747. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
  1748. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
  1749. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
  1750. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
  1751. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
  1752. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
  1753. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
  1754. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
  1755. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
  1756. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
  1757. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
  1758. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
  1759. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
  1760. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
  1761. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
  1762. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
  1763. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
  1764. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
  1765. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
  1766. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
  1767. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
  1768. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
  1769. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
  1770. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
  1771. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
  1772. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
  1773. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
  1774. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
  1775. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
  1776. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
  1777. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
  1778. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
  1779. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
  1780. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
  1781. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
  1782. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
  1783. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
  1784. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
  1785. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
  1786. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
  1787. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
  1788. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
  1789. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
  1790. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
  1791. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
  1792. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
  1793. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
  1794. data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
  1795. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
  1796. data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
  1797. data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
  1798. data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
  1799. data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
  1800. data/public/rearview/vendor/less/js/less.js +13 -0
  1801. data/public/rearview/vendor/parsley/js/parsley.js +1 -0
  1802. data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
  1803. data/public/rearview/vendor/require/js/require.js +31 -0
  1804. data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
  1805. data/public/rearview/vendor/timeline/examples/example.json +38 -0
  1806. data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
  1807. data/public/rearview/vendor/timeline/timeline.css +114 -0
  1808. data/public/rearview/vendor/timeline/timeline.js +45 -0
  1809. data/public/rearview/vendor/underscore/js/underscore.js +5 -0
  1810. data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
  1811. data/public/rearview/vendor/xdate/js/xdate.js +1 -0
  1812. data/script/rails +8 -0
  1813. data/tasks/rearview.rake +9 -0
  1814. metadata +1814 -3
@@ -0,0 +1 @@
1
+ !function(){function t(t){n.push(t),n.length>50&&n.shift()}function e(){return n[n.length-1]||""}function l(){return n.length>1&&n.pop(),e()}var n=[];CodeMirror.keyMap.emacs={"Ctrl-X":function(t){t.setOption("keyMap","emacs-Ctrl-X")},"Ctrl-W":function(e){t(e.getSelection()),e.replaceSelection("")},"Ctrl-Alt-W":function(e){t(e.getSelection()),e.replaceSelection("")},"Alt-W":function(e){t(e.getSelection())},"Ctrl-Y":function(t){t.replaceSelection(e())},"Alt-Y":function(t){t.replaceSelection(l())},"Ctrl-/":"undo","Shift-Ctrl--":"undo","Shift-Alt-,":"goDocStart","Shift-Alt-.":"goDocEnd","Ctrl-S":"findNext","Ctrl-R":"findPrev","Ctrl-G":"clearSearch","Shift-Alt-5":"replace","Ctrl-Z":"undo","Cmd-Z":"undo","Alt-/":"autocomplete",fallthrough:["basic","emacsy"]},CodeMirror.keyMap["emacs-Ctrl-X"]={"Ctrl-S":"save","Ctrl-W":"save",S:"saveAll",F:"open",U:"undo",K:"close",auto:"emacs",nofallthrough:!0}}();
@@ -0,0 +1 @@
1
+ !function(){function r(){b=""}function e(r){b+=r}function n(r){return function(){E+=r}}function i(){var r=parseInt(E,10);return E="",r||1}function o(r){for(var e=0,n=i();n>e;++e)r(e,e==n-1)}function t(r){return"string"==typeof r&&(r=CodeMirror.commands[r]),function(e){o(function(){r(e)})}}function f(r,e){for(var n in r)r.hasOwnProperty(n)&&e(n,r[n])}function c(r,e){for(var n=0;n<r.length;++n)e(r[n])}function a(r){return"Shift-"==r.slice(0,6)?r.slice(0,1):"Space"==r?" ":3==r.length&&"'"==r[0]&&"'"==r[2]?r[1]:r.toLowerCase()}function u(r){if(" "==r)return"Space";var e=B.indexOf(r);return-1!=e?"'"+r+"'":r.toLowerCase()==r?r.toUpperCase():"Shift-"+r.toUpperCase()}function s(r,e,n,i){var o=0,t=-1;n>0&&(o=r.length,t=0);var f=o,c=o;r:for(;e!=o;e+=n)for(var a=0;a<i.length;++a)if(i[a].test(r.charAt(e+t))){for(f=e;e!=o&&i[a].test(r.charAt(e+t));e+=n);c=e;break r}return{from:Math.min(f,c),to:Math.max(f,c)}}function l(r,e,n,i,o){for(var t=r.getCursor(),f=0;i>f;f++)for(var c,a=r.getLine(t.line),u=t.ch;;){if(t.ch==a.length&&n>0?(t.line++,t.ch=0,a=r.getLine(t.line)):0==t.ch&&0>n&&(t.line--,t.ch=a.length,a=r.getLine(t.line)),!a)break;if(c=s(a,t.ch,n,e),t.ch=c["end"==o?"to":"from"],u!=t.ch||c.from==c.to)break;t.ch=c[0>n?"from":"to"]}return t}function p(r){var e=r.getCursor();e.ch,r.getLine(e.line),CodeMirror.commands.goLineEnd(r),e.line!=r.lineCount()&&(CodeMirror.commands.goLineEnd(r),r.replaceSelection(" ","end"),CodeMirror.commands.delCharRight(r))}function d(r,n){var i=A[n];if(void 0!==i){var o=r.getCursor().line,t=i>o?o:i,f=i>o?i:o;r.setCursor(t);for(var c=t;f>=c;c++)e("\n"+r.getLine(t)),r.removeLine(t)}}function m(r,n){var i=A[n];if(void 0!==i){for(var o=r.getCursor().line,t=i>o?o:i,f=i>o?i:o,c=t;f>=c;c++)e("\n"+r.getLine(c));r.setCursor(t)}}function h(r){var e=r.getCursor(),n=r.getLine(e.line).search(/\S/);r.setCursor(e.line,-1==n?line.length:n,!0)}function v(r,e,n){var i,o=r.getCursor(),t=r.getLine(o.line),f=a(e),c=n;return c.forward?(i=t.indexOf(f,o.ch+1),-1!=i&&c.inclusive&&(i+=1)):(i=t.lastIndexOf(f,o.ch),-1==i||c.inclusive||(i+=1)),i}function C(r,e,n){var i=v(r,e,n),o=r.getCursor();-1!=i&&r.setCursor({line:o.line,ch:i})}function g(r,e,n){var i=v(r,e,n),o=r.getCursor();-1!==i&&(n.forward?r.replaceRange("",{line:o.line,ch:o.ch},{line:o.line,ch:i}):r.replaceRange("",{line:o.line,ch:i},{line:o.line,ch:o.ch}))}function M(r){i(),r.setOption("keyMap","vim-insert")}function y(r,e,n,i){r.openDialog?r.openDialog(e,i):i(prompt(n,""))}function x(r,e){var n=e.replace(/[<&]/,function(r){return"<"==r?"&lt;":"&amp;"});r.openDialog?r.openDialog(n+" <button type=button>OK</button>"):alert(e)}function k(r){r["0"]=function(r){E.length>0?n("0")(r):CodeMirror.commands.goLineStart(r)};for(var e=1;10>e;++e)r[e]=n(e)}function L(r){CodeMirror.keyMap["vim-prefix-m"][r]=function(e){A[r]=e.getCursor().line},CodeMirror.keyMap["vim-prefix-d'"][r]=function(e){d(e,r)},CodeMirror.keyMap["vim-prefix-y'"][r]=function(e){m(e,r)},CodeMirror.keyMap["vim-prefix-r"][r]=function(e){var n=e.getCursor();e.replaceRange(a(r),{line:n.line,ch:n.ch},{line:n.line,ch:n.ch+1}),CodeMirror.commands.goColumnLeft(e)},f(W,function(e,n){CodeMirror.keyMap["vim-prefix-"+e][r]=function(e){C(e,r,n)},CodeMirror.keyMap["vim-prefix-d"+e][r]=function(e){g(e,r,n)},CodeMirror.keyMap["vim-prefix-c"+e][r]=function(e){g(e,r,n),M(e)}})}function S(r,e,n){var i=e.line,n=n?n:r.getLine(i)[e.ch],o=-1!=["(","[","{"].indexOf(n),t=function(r){switch(r){case"(":return")";case"[":return"]";case"{":return"}";case")":return"(";case"]":return"[";case"}":return"{";default:return null}}(n);if(null==t)return e;for(var f=o?0:1;;){if(i==e.line)var c=o?r.getLine(i).substr(e.ch).split(""):r.getLine(i).substr(0,e.ch).split("").reverse();else var c=o?r.getLine(i).split(""):r.getLine(i).split("").reverse();for(var a=0;a<c.length;a++)if(c[a]==n?f++:c[a]==t&&f--,0==f)return o&&e.line==i?{line:i,ch:a+e.ch}:o?{line:i,ch:a}:{line:i,ch:c.length-a-1};o?i++:i--}}function O(r,e,n){var i=r.getCursor(),o=S(r,i,e),t=S(r,o);return t.ch+=n?1:0,o.ch+=n?0:1,{start:t,end:o}}function w(r,e,n){for(var i=null==n?r.length:n;i>=0;--i)if(e.test(r.charAt(i)))return i;return-1}function R(r,n,i,o,t){var f=H[n](r,t),c=f.start,a=f.end;if(c.line>a.line||c.line==a.line&&c.ch>a.ch)var u=!0;e(r.getRange(u?a:c,u?c:a)),i&&r.replaceRange("",u?a:c,u?c:a),o&&r.setOption("keyMap","vim-insert")}var E="",D="f",b="",P=0,A=[],U=0,B="~`!@#$%^&*()_-+=[{}]\\|/?.,<>:;\"'1234567890",I=[/\w/,/[^\w\s]/],F=[/\S/],N=CodeMirror.keyMap.vim={"'|'":function(r){r.setCursor(r.getCursor().line,i()-1,!0)},A:function(r){r.setCursor(r.getCursor().line,r.getCursor().ch+1,!0),M(r)},"Shift-A":function(r){CodeMirror.commands.goLineEnd(r),M(r)},I:function(r){M(r)},"Shift-I":function(r){h(r),M(r)},O:function(r){CodeMirror.commands.goLineEnd(r),CodeMirror.commands.newlineAndIndent(r),M(r)},"Shift-O":function(r){CodeMirror.commands.goLineStart(r),r.replaceSelection("\n","start"),r.indentLine(r.getCursor().line),M(r)},G:function(r){r.setOption("keyMap","vim-prefix-g")},"Shift-D":function(e){r(),A["Shift-D"]=e.getCursor(!1).line,e.setCursor(e.getCursor(!0).line),d(e,"Shift-D"),A=[]},S:function(r){t(function(r){CodeMirror.commands.delCharRight(r)})(r),M(r)},M:function(r){r.setOption("keyMap","vim-prefix-m"),A=[]},Y:function(e){e.setOption("keyMap","vim-prefix-y"),r(),P=0},"Shift-Y":function(e){r(),A["Shift-D"]=e.getCursor(!1).line,e.setCursor(e.getCursor(!0).line),m(e,"Shift-D"),A=[]},"/":function(r){var e=CodeMirror.commands.find;e&&e(r),D="f"},"'?'":function(r){var e=CodeMirror.commands.find;e&&(e(r),CodeMirror.commands.findPrev(r),D="r")},N:function(r){var e=CodeMirror.commands.findNext;e&&("r"!=D?e(r):CodeMirror.commands.findPrev(r))},"Shift-N":function(r){var e=CodeMirror.commands.findNext;e&&("r"!=D?CodeMirror.commands.findPrev(r):e.findNext(r))},"Shift-G":function(r){""==E?r.setCursor(r.lineCount()):r.setCursor(parseInt(E,10)-1),i(),CodeMirror.commands.goLineStart(r)},"':'":function(r){var e=': <input type="text" style="width: 90%"/>';y(r,e,":",function(e){e.match(/^\d+$/)?r.setCursor(e-1,r.getCursor().ch):x(r,"Bad command: "+e)})},nofallthrough:!0,style:"fat-cursor"};c(["d","t","T","f","F","c","r"],function(e){CodeMirror.keyMap.vim[u(e)]=function(n){n.setOption("keyMap","vim-prefix-"+e),r()}}),k(CodeMirror.keyMap.vim),f({Left:"goColumnLeft",Right:"goColumnRight",Down:"goLineDown",Up:"goLineUp",Backspace:"goCharLeft",Space:"goCharRight",X:function(r){CodeMirror.commands.delCharRight(r)},P:function(r){r.getCursor().line,""!=b&&("\n"==b[0]&&CodeMirror.commands.goLineEnd(r),r.replaceRange(b,r.getCursor()))},"Shift-X":function(r){CodeMirror.commands.delCharLeft(r)},"Shift-J":function(r){p(r)},"Shift-P":function(r){var e=r.getCursor().line;""!=b&&(CodeMirror.commands.goLineUp(r),CodeMirror.commands.goLineEnd(r),r.replaceSelection(b,"end")),r.setCursor(e+1)},"'~'":function(r){var e=r.getCursor(),n=r.getRange({line:e.line,ch:e.ch},{line:e.line,ch:e.ch+1});n=n!=n.toLowerCase()?n.toLowerCase():n.toUpperCase(),r.replaceRange(n,{line:e.line,ch:e.ch},{line:e.line,ch:e.ch+1}),r.setCursor(e.line,e.ch+1)},"Ctrl-B":function(r){CodeMirror.commands.goPageUp(r)},"Ctrl-F":function(r){CodeMirror.commands.goPageDown(r)},"Ctrl-P":"goLineUp","Ctrl-N":"goLineDown",U:"undo","Ctrl-R":"redo"},function(r,e){N[r]=t(e)}),c(["vim-prefix-d'","vim-prefix-y'","vim-prefix-df","vim-prefix-dF","vim-prefix-dt","vim-prefix-dT","vim-prefix-c","vim-prefix-cf","vim-prefix-cF","vim-prefix-ct","vim-prefix-cT","vim-prefix-","vim-prefix-f","vim-prefix-F","vim-prefix-t","vim-prefix-T","vim-prefix-r","vim-prefix-m"],function(r){CodeMirror.keyMap[r]={auto:"vim",nofallthrough:!0,style:"fat-cursor"}}),CodeMirror.keyMap["vim-prefix-g"]={E:t(function(r){r.setCursor(l(r,I,-1,1,"start"))}),"Shift-E":t(function(r){r.setCursor(l(r,F,-1,1,"start"))}),G:function(r){r.setCursor({line:0,ch:r.getCursor().ch})},auto:"vim",nofallthrough:!0,style:"fat-cursor"},CodeMirror.keyMap["vim-prefix-d"]={D:t(function(r){e("\n"+r.getLine(r.getCursor().line)),r.removeLine(r.getCursor().line),r.setOption("keyMap","vim")}),"'":function(e){e.setOption("keyMap","vim-prefix-d'"),r()},B:function(r){var n=r.getCursor(),i=r.getLine(n.line),o=i.lastIndexOf(" ",n.ch);e(i.substring(o,n.ch)),r.replaceRange("",{line:n.line,ch:o},n),r.setOption("keyMap","vim")},nofallthrough:!0,style:"fat-cursor"},k(CodeMirror.keyMap["vim-prefix-d"]),CodeMirror.keyMap["vim-prefix-c"]={B:function(r){t("delWordLeft")(r),M(r)},C:function(r){o(function(e,n){CodeMirror.commands.deleteLine(r),e&&(CodeMirror.commands.delCharRight(r),n&&CodeMirror.commands.deleteLine(r))}),M(r)},nofallthrough:!0,style:"fat-cursor"},c(["vim-prefix-d","vim-prefix-c","vim-prefix-"],function(e){c(["f","F","T","t"],function(n){CodeMirror.keyMap[e][u(n)]=function(i){i.setOption("keyMap",e+n),r()}})});for(var W={t:{inclusive:!1,forward:!0},f:{inclusive:!0,forward:!0},T:{inclusive:!1,forward:!1},F:{inclusive:!0,forward:!1}},T=65;91>T;T++){var $=String.fromCharCode(T);L(u($)),L(u($.toLowerCase()))}for(var T=0;T<B.length;++T)L(u(B.charAt(T)));L("Space"),CodeMirror.keyMap["vim-prefix-y"]={Y:t(function(r){e("\n"+r.getLine(r.getCursor().line+P)),P++,r.setOption("keyMap","vim")}),"'":function(e){e.setOption("keyMap","vim-prefix-y'"),r()},nofallthrough:!0,style:"fat-cursor"},CodeMirror.keyMap["vim-insert"]={Esc:function(r){r.setCursor(r.getCursor().line,r.getCursor().ch-1,!0),r.setOption("keyMap","vim")},"Ctrl-N":"autocomplete","Ctrl-P":"autocomplete",fallthrough:["default"]};var G=["B","E","J","K","H","L","W","Shift-W","'^'","'$'","'%'","Esc"];motions={B:function(r,e){return l(r,I,-1,e)},"Shift-B":function(r,e){return l(r,F,-1,e)},E:function(r,e){return l(r,I,1,e,"end")},"Shift-E":function(r,e){return l(r,F,1,e,"end")},J:function(r,e){var n=r.getCursor();return{line:n.line+e,ch:n.ch}},K:function(r,e){var n=r.getCursor();return{line:n.line-e,ch:n.ch}},H:function(r,e){var n=r.getCursor();return{line:n.line,ch:n.ch-e}},L:function(r,e){var n=r.getCursor();return{line:n.line,ch:n.ch+e}},W:function(r,e){return l(r,I,1,e)},"Shift-W":function(r,e){return l(r,F,1,e)},"'^'":function(r){var e=r.getCursor(),n=r.getLine(e.line).split("");if(0==n.length)return e;for(var i=0;i<n.length;i++)if(n[i].match(/[^\s]/))return{line:e.line,ch:i}},"'$'":function(r){var e=r.getCursor(),n=r.getLine(e.line);return{line:e.line,ch:n.length}},"'%'":function(r){return S(r,r.getCursor())},Esc:function(r){return r.setOption("vim"),U=0,r.getCursor()}},G.forEach(function(r){CodeMirror.keyMap["vim-prefix-d"][r]=function(n){var i=n.getCursor(),o=motions[r](n,U?U:1);if(i.line>o.line||i.line==o.line&&i.ch>o.ch)var t=!0;e(n.getRange(t?o:i,t?i:o)),n.replaceRange("",t?o:i,t?i:o),U=0,n.setOption("keyMap","vim")},CodeMirror.keyMap["vim-prefix-c"][r]=function(n){var i=n.getCursor(),o=motions[r](n,U?U:1);if(i.line>o.line||i.line==o.line&&i.ch>o.ch)var t=!0;e(n.getRange(t?o:i,t?i:o)),n.replaceRange("",t?o:i,t?i:o),U=0,n.setOption("keyMap","vim-insert")},CodeMirror.keyMap["vim-prefix-y"][r]=function(n){var i=n.getCursor(),o=motions[r](n,U?U:1);if(i.line>o.line||i.line==o.line&&i.ch>o.ch)var t=!0;e(n.getRange(t?o:i,t?i:o)),U=0,n.setOption("keyMap","vim")},CodeMirror.keyMap.vim[r]=function(e){var n=motions[r](e,U?U:1);e.setCursor(n.line,n.ch),U=0}});var J=[1,2,3,4,5,6,7,8,9];J.forEach(function(r){CodeMirror.keyMap.vim[r]=function(){U=10*U+r},CodeMirror.keyMap["vim-prefix-d"][r]=function(){U=10*U+r},CodeMirror.keyMap["vim-prefix-y"][r]=function(){U=10*U+r},CodeMirror.keyMap["vim-prefix-c"][r]=function(){U=10*U+r}});var K=["d","y","c"];K.forEach(function(r){CodeMirror.keyMap["vim-prefix-"+r+"a"]={auto:"vim",nofallthrough:!0,style:"fat-cursor"},CodeMirror.keyMap["vim-prefix-"+r+"i"]={auto:"vim",nofallthrough:!0,style:"fat-cursor"},CodeMirror.keyMap["vim-prefix-"+r].A=function(e){U=0,e.setOption("keyMap","vim-prefix-"+r+"a")},CodeMirror.keyMap["vim-prefix-"+r].I=function(e){U=0,e.setOption("keyMap","vim-prefix-"+r+"i")}});for(var Y=["W","Shift-[","Shift-9","["],H={W:function(r,e){var n=r.getCursor(),i=r.getLine(n.line),o=new String(i.substring(0,n.ch)),t=w(o,/[^a-zA-Z0-9]/)+1,f=motions.E(r,1);return f.ch+=e?1:0,{start:{line:n.line,ch:t},end:f}},"Shift-[":function(r,e){return O(r,"}",e)},"Shift-9":function(r,e){return O(r,")",e)},"[":function(r,e){return O(r,"]",e)}},T=0;T<Y.length;++T){var X=Y[T];!function(r){CodeMirror.keyMap["vim-prefix-di"][r]=function(e){R(e,r,!0,!1,!1)},CodeMirror.keyMap["vim-prefix-da"][r]=function(e){R(e,r,!0,!1,!0)},CodeMirror.keyMap["vim-prefix-yi"][r]=function(e){R(e,r,!1,!1,!1)},CodeMirror.keyMap["vim-prefix-ya"][r]=function(e){R(e,r,!1,!1,!0)},CodeMirror.keyMap["vim-prefix-ci"][r]=function(e){R(e,r,!0,!0,!1)},CodeMirror.keyMap["vim-prefix-ca"][r]=function(e){R(e,r,!0,!0,!0)}}(X)}}();
@@ -0,0 +1,149 @@
1
+ .CodeMirror {
2
+ line-height: 1em;
3
+ font-family: monospace;
4
+
5
+ position: relative;
6
+
7
+ overflow: hidden;
8
+ }
9
+ .CodeMirror-scroll {
10
+ overflow: auto;
11
+ height: 300px;
12
+
13
+ position: relative;
14
+ outline: none;
15
+ }
16
+ .CodeMirror-scrollbar {
17
+ position: absolute;
18
+ right: 0; top: 0;
19
+ overflow-x: hidden;
20
+ overflow-y: scroll;
21
+ z-index: 5;
22
+ }
23
+ .CodeMirror-scrollbar-inner {
24
+
25
+ width: 1px;
26
+ }
27
+ .CodeMirror-scrollbar.cm-sb-overlap {
28
+
29
+ position: absolute;
30
+ z-index: 1;
31
+ float: none;
32
+ right: 0;
33
+ min-width: 12px;
34
+ }
35
+ .CodeMirror-scrollbar.cm-sb-nonoverlap {
36
+ min-width: 12px;
37
+ }
38
+ .CodeMirror-scrollbar.cm-sb-ie7 {
39
+ min-width: 18px;
40
+ }
41
+ .CodeMirror-gutter {
42
+ position: absolute; left: 0; top: 0;
43
+ z-index: 10;
44
+ background-color: #f7f7f7;
45
+ border-right: 1px solid #eee;
46
+ min-width: 2em;
47
+ height: 100%;
48
+ }
49
+ .CodeMirror-gutter-text {
50
+ color: #aaa;
51
+ text-align: right;
52
+ padding: .4em .2em .4em .4em;
53
+ white-space: pre !important;
54
+ cursor: default;
55
+ }
56
+ .CodeMirror-lines {
57
+ padding: .4em;
58
+ white-space: pre;
59
+ cursor: text;
60
+ }
61
+ .CodeMirror pre {
62
+ -moz-border-radius: 0;
63
+ -webkit-border-radius: 0;
64
+ -o-border-radius: 0;
65
+ border-radius: 0;
66
+ border-width: 0; margin: 0; padding: 0; background: transparent;
67
+ font-family: inherit;
68
+ font-size: inherit;
69
+ padding: 0; margin: 0;
70
+ white-space: pre;
71
+ word-wrap: normal;
72
+ line-height: inherit;
73
+ color: inherit;
74
+ }
75
+ .CodeMirror-wrap pre {
76
+ word-wrap: break-word;
77
+ white-space: pre-wrap;
78
+ word-break: normal;
79
+ }
80
+ .CodeMirror-wrap .CodeMirror-scroll {
81
+ overflow-x: hidden;
82
+ }
83
+ .CodeMirror textarea {
84
+ outline: none !important;
85
+ }
86
+ .CodeMirror pre.CodeMirror-cursor {
87
+ z-index: 10;
88
+ position: absolute;
89
+ visibility: hidden;
90
+ border-left: 1px solid black;
91
+ border-right: none;
92
+ width: 0;
93
+ }
94
+ .cm-keymap-fat-cursor pre.CodeMirror-cursor {
95
+ width: auto;
96
+ border: 0;
97
+ background: transparent;
98
+ background: rgba(0, 200, 0, .4);
99
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#6600c800, endColorstr=#4c00c800);
100
+ }
101
+ .cm-keymap-fat-cursor pre.CodeMirror-cursor:not(#nonsense_id) {
102
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
103
+ }
104
+ .CodeMirror pre.CodeMirror-cursor.CodeMirror-overwrite {}
105
+ .CodeMirror-focused pre.CodeMirror-cursor {
106
+ visibility: visible;
107
+ }
108
+ div.CodeMirror-selected { background: #d9d9d9; }
109
+ .CodeMirror-focused div.CodeMirror-selected { background: #d7d4f0; }
110
+ .CodeMirror-searching {
111
+ background: #ffa;
112
+ background: rgba(255, 255, 0, .4);
113
+ }
114
+ .cm-s-default span.cm-keyword {color: #708;}
115
+ .cm-s-default span.cm-atom {color: #219;}
116
+ .cm-s-default span.cm-number {color: #164;}
117
+ .cm-s-default span.cm-def {color: #00f;}
118
+ .cm-s-default span.cm-variable {color: black;}
119
+ .cm-s-default span.cm-variable-2 {color: #05a;}
120
+ .cm-s-default span.cm-variable-3 {color: #085;}
121
+ .cm-s-default span.cm-property {color: black;}
122
+ .cm-s-default span.cm-operator {color: black;}
123
+ .cm-s-default span.cm-comment {color: #a50;}
124
+ .cm-s-default span.cm-string {color: #a11;}
125
+ .cm-s-default span.cm-string-2 {color: #f50;}
126
+ .cm-s-default span.cm-meta {color: #555;}
127
+ .cm-s-default span.cm-error {color: #f00;}
128
+ .cm-s-default span.cm-qualifier {color: #555;}
129
+ .cm-s-default span.cm-builtin {color: #30a;}
130
+ .cm-s-default span.cm-bracket {color: #997;}
131
+ .cm-s-default span.cm-tag {color: #170;}
132
+ .cm-s-default span.cm-attribute {color: #00c;}
133
+ .cm-s-default span.cm-header {color: blue;}
134
+ .cm-s-default span.cm-quote {color: #090;}
135
+ .cm-s-default span.cm-hr {color: #999;}
136
+ .cm-s-default span.cm-link {color: #00c;}
137
+ span.cm-header, span.cm-strong {font-weight: bold;}
138
+ span.cm-em {font-style: italic;}
139
+ span.cm-emstrong {font-style: italic; font-weight: bold;}
140
+ span.cm-link {text-decoration: underline;}
141
+ span.cm-invalidchar {color: #f00;}
142
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
143
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
144
+ @media print {
145
+
146
+ .CodeMirror pre.CodeMirror-cursor {
147
+ visibility: hidden;
148
+ }
149
+ }
@@ -0,0 +1,2 @@
1
+ window.CodeMirror=function(){function e(l,s){function u(e){tr.onDragEvent&&tr.onDragEvent(ri,M(e))||L(e)}function p(e){return e>=0&&e<Mr.size}function g(e){return x(Mr,e)}function w(e,t){Rr=!0;for(var n=t-e.height,r=e;r;r=r.parent)r.height+=n}function A(e,t){return e.styles||e.highlight(br,e.stateAfter=jn(C(e)),tr.tabSize),e.getContent(tr.tabSize,t,tr.lineWrapping)}function H(e){var t={line:0,ch:0};Wt(t,{line:Mr.size-1,ch:g(Mr.size-1).text.length},Ct(e),t,t),Er=!0}function $(e){var t=[];return Mr.iter(0,Mr.size,function(e){t.push(e.text)}),t.join(e||"\n")}function q(){ar.scrollTop!=Kr&&(Kr=yr.scrollTop=ar.scrollTop,Qt([]))}function Q(){tr.fixedGutter&&gr.style.left!=yr.scrollLeft+"px"&&(gr.style.left=yr.scrollLeft+"px"),yr.scrollTop!=Kr&&(Kr=yr.scrollTop,ar.scrollTop!=Kr&&(ar.scrollTop=Kr),Qt([])),tr.onScroll&&tr.onScroll(ri)}function tt(e){function t(t){ut&&(yr.draggable=!1),Wr=!1,h(),d(),Math.abs(e.clientX-t.clientX)+Math.abs(e.clientY-t.clientY)<10&&(T(t),un(l.line,l.ch,!0),Xt())}function n(e){if("single"==s)ln(l,e);else if("double"==s){var t=vn(e);U(e,p)?ln(t.from,g):ln(p,t.to)}else"triple"==s&&(U(e,p)?ln(g,cn({line:e.line,ch:0})):ln(p,cn({line:e.line+1,ch:0})))}function r(e){var t=Vn(e,!0);if(t&&!K(t,c)){Sr||Lt(),c=t,n(t),Er=!1;var i=qt();(t.line>=i.to||t.line<i.from)&&(f=setTimeout(Qn(function(){r(e)}),150))}}function i(e){clearTimeout(f);var t=Vn(e);t&&n(t),T(e),Xt(),Er=!0,v(),h()}on(E(e,"shiftKey"));for(var o=N(e);o!=xr;o=o.parentNode)if(o.parentNode==mr&&o!=vr)return;for(var o=N(e);o!=xr;o=o.parentNode)if(o.parentNode==pr)return tr.onGutterClick&&tr.onGutterClick(ri,j(pr.childNodes,o)+Gr,e),T(e);var l=Vn(e);switch(W(e)){case 3:return it&&Gn(e),void 0;case 2:return l&&un(l.line,l.ch,!0),setTimeout(Xt,20),T(e),void 0}if(!l)return N(e)==yr&&T(e),void 0;Sr||Lt();var a=+new Date,s="single";if(Nr&&Nr.time>a-400&&K(Nr.pos,l))s="triple",T(e),setTimeout(Xt,20),mn(l.line);else if(Lr&&Lr.time>a-400&&K(Lr.pos,l)){s="double",Nr={time:a,pos:l},T(e);var u=vn(l);ln(u.from,u.to)}else Lr={time:a,pos:l};var f,c=l;if(tr.dragDrop&&mt&&!tr.readOnly&&!K(Br.from,Br.to)&&!U(l,Br.from)&&!U(Br.to,l)&&"single"==s){ut&&(yr.draggable=!0);var h=D(document,"mouseup",Qn(t),!0),d=D(yr,"drop",Qn(t),!0);return Wr=!0,yr.dragDrop&&yr.dragDrop(),void 0}T(e),"single"==s&&un(l.line,l.ch,!0);var p=Br.from,g=Br.to,v=D(document,"mousemove",Qn(function(e){clearTimeout(f),T(e),ot||W(e)?r(e):i(e)}),!0),h=D(document,"mouseup",Qn(i),!0)}function ft(e){for(var t=N(e);t!=xr;t=t.parentNode)if(t.parentNode==pr)return T(e);T(e)}function ht(e){if(!tr.onDragEvent||!tr.onDragEvent(ri,M(e))){T(e);var t=Vn(e,!0),n=e.dataTransfer.files;if(t&&!tr.readOnly)if(n&&n.length&&window.FileReader&&window.File)for(var r=n.length,i=Array(r),o=0,l=function(e,n){var l=new FileReader;l.onload=function(){i[n]=l.result,++o==r&&(t=cn(t),Qn(function(){var e=Pt(i.join(""),t,t);ln(t,e)})())},l.readAsText(e)},a=0;r>a;++a)l(n[a],a);else{if(Wr&&!U(t,Br.from)&&!U(Br.to,t))return;try{var i=e.dataTransfer.getData("Text");i&&er(function(){var e=Br.from,n=Br.to;ln(t,t),Wr&&Pt("",e,n),Bt(i),Xt()})}catch(e){}}}}function gt(e){var t=Ft();e.dataTransfer.setData("Text",t),e.dataTransfer.setDragImage&&e.dataTransfer.setDragImage(V("img"),0,0)}function xt(e,t){if("string"==typeof e&&(e=nt[e],!e))return!1;var n=Ar;try{tr.readOnly&&(Fr=!0),t&&(Ar=null),e(ri)}catch(r){if(r!=vt)throw r;return!1}finally{Ar=n,Fr=!1}return!0}function kt(e){function i(){f=!0}var o=t(tr.keyMap),l=o.auto;clearTimeout(ni),l&&!r(e)&&(ni=setTimeout(function(){t(tr.keyMap)==o&&(tr.keyMap=l.call?l.call(null,ri):l)},50));var a=St[E(e,"keyCode")],s=!1,u=ct&&J;if(null==a||e.altGraphKey)return!1;E(e,"altKey")&&(a="Alt-"+a),E(e,u?"metaKey":"ctrlKey")&&(a="Ctrl-"+a),E(e,u?"ctrlKey":"metaKey")&&(a="Cmd-"+a);var f=!1;return s=E(e,"shiftKey")?n("Shift-"+a,tr.extraKeys,tr.keyMap,function(e){return xt(e,!0)},i)||n(a,tr.extraKeys,tr.keyMap,function(e){return"string"==typeof e&&/^go[A-Z]/.test(e)?xt(e):void 0},i):n(a,tr.extraKeys,tr.keyMap,xt,i),f&&(s=!1),s&&(T(e),Yn(),ot&&(e.oldKeyCode=e.keyCode,e.keyCode=0)),s}function wt(e,t){var r=n("'"+t+"'",tr.extraKeys,tr.keyMap,function(e){return xt(e,!0)});return r&&(T(e),Yn()),r}function Mt(e){if(Sr||Lt(),ot&&27==e.keyCode&&(e.returnValue=!1),_r&&Yt()&&(_r=!1),!tr.onKeyEvent||!tr.onKeyEvent(ri,M(e))){var t=E(e,"keyCode");on(16==t||E(e,"shiftKey"));var n=kt(e);ct&&(ii=n?t:null,!n&&88==t&&E(e,J?"metaKey":"ctrlKey")&&Bt(""))}}function Tt(e){if(_r&&Yt(),!tr.onKeyEvent||!tr.onKeyEvent(ri,M(e))){var t=E(e,"keyCode"),n=E(e,"charCode");if(ct&&t==ii)return ii=null,T(e),void 0;if(!(ct&&(!e.which||e.which<10)||dt)||!kt(e)){var r=String.fromCharCode(null==n?t:n);tr.electricChars&&br.electricChars&&tr.smartIndent&&!tr.readOnly&&br.electricChars.indexOf(r)>-1&&setTimeout(Qn(function(){xn(Br.to.line,"smart")}),75),wt(e,r)||Gt()}}}function At(e){tr.onKeyEvent&&tr.onKeyEvent(ri,M(e))||16==E(e,"keyCode")&&(Ar=null)}function Lt(){"nocursor"!=tr.readOnly&&(Sr||(tr.onFocus&&tr.onFocus(ri),Sr=!0,-1==yr.className.search(/\bCodeMirror-focused\b/)&&(yr.className+=" CodeMirror-focused")),Vt(),Yn())}function Nt(){Sr&&(tr.onBlur&&tr.onBlur(ri),Sr=!1,Pr&&Qn(function(){Pr&&(Pr(),Pr=null)})(),yr.className=yr.className.replace(" CodeMirror-focused","")),clearInterval(Cr),setTimeout(function(){Sr||(Ar=null)},150)}function Wt(e,t,n,r,i){if(!Fr){var o=[];if(Mr.iter(e.line,t.line+1,function(e){o.push(d(e.text,e.markedSpans))}),qr)for(qr.addChange(e.line,n.length,o);qr.done.length>tr.undoDepth;)qr.done.shift();var l=f(h(o[0]),h(P(o)),e.ch,t.ch,n);Ht(e,t,l,r,i)}}function Et(e,t){if(e.length){for(var n=e.pop(),r=[],i=n.length-1;i>=0;i-=1){var o=n[i],l=[],a=o.start+o.added;Mr.iter(o.start,a,function(e){l.push(d(e.text,e.markedSpans))}),r.push({start:o.start,added:o.old.length,old:l});var s={line:o.start+o.old.length-1,ch:X(c(P(l)),c(P(o.old)))};Ht({line:o.start,ch:0},{line:a-1,ch:g(a-1).text.length},o.old,s,s)}Er=!0,t.push(r)}}function Dt(){Et(qr.done,qr.undone)}function zt(){Et(qr.undone,qr.done)}function Ht(e,t,n,r,i){function o(e){return e<=Math.min(t.line,t.line+C)?e:e+C}if(!Fr){var l=!1,a=Xr.text.length;tr.lineWrapping||Mr.iter(e.line,t.line+1,function(e){return e.hidden||e.text.length!=a?void 0:(l=!0,!0)}),(e.line!=t.line||n.length>1)&&(Rr=!0);var s=t.line-e.line,u=g(e.line),f=g(t.line),d=P(n);if(0==e.ch&&0==t.ch&&""==c(d)){for(var p=[],m=0,y=n.length-1;y>m;++m)p.push(new v(c(n[m]),h(n[m])));f.update(f.text,h(d)),s&&Mr.remove(e.line,s,Ir),p.length&&Mr.insert(e.line,p)}else if(u==f)if(1==n.length)u.update(u.text.slice(0,e.ch)+c(n[0])+u.text.slice(t.ch),h(n[0]));else{for(var p=[],m=1,y=n.length-1;y>m;++m)p.push(new v(c(n[m]),h(n[m])));p.push(new v(c(d)+u.text.slice(t.ch),h(d))),u.update(u.text.slice(0,e.ch)+c(n[0]),h(n[0])),Mr.insert(e.line+1,p)}else if(1==n.length)u.update(u.text.slice(0,e.ch)+c(n[0])+f.text.slice(t.ch),h(n[0])),Mr.remove(e.line+1,s,Ir);else{var p=[];u.update(u.text.slice(0,e.ch)+c(n[0]),h(n[0])),f.update(c(d)+f.text.slice(t.ch),h(d));for(var m=1,y=n.length-1;y>m;++m)p.push(new v(c(n[m]),h(n[m])));s>1&&Mr.remove(e.line+1,s-1,Ir),Mr.insert(e.line+1,p)}if(tr.lineWrapping){var x=Math.max(5,yr.clientWidth/Kn()-3);Mr.iter(e.line,e.line+n.length,function(e){if(!e.hidden){var t=Math.ceil(e.text.length/x)||1;t!=e.height&&w(e,t)}})}else Mr.iter(e.line,e.line+n.length,function(e){var t=e.text;!e.hidden&&t.length>a&&(Xr=e,a=t.length,Zr=!0,l=!1)}),l&&(jr=!0);Tr=Math.min(Tr,e.line),_n(400);var C=n.length-s-1;if(zr.push({from:e.line,to:t.line+1,diff:C}),tr.onChange){for(var m=0;m<n.length;++m)"string"!=typeof n[m]&&(n[m]=n[m].text);var b={from:e,to:t,text:n};if(Hr){for(var S=Hr;S.next;S=S.next);S.next=b}else Hr=b}an(cn(r),cn(i),o(Br.from.line),o(Br.to.line))}}function Ot(){var e=Mr.height*Bn()+2*Un();return.99*e>yr.offsetHeight?e:!1}function Rt(e){var t=Ot();ar.style.display=t?"block":"none",t?(lr.style.height=mr.style.minHeight=t+"px",ar.style.height=yr.clientHeight+"px",null!=e&&(ar.scrollTop=yr.scrollTop=e,ut&&setTimeout(function(){ar.scrollTop==e&&(ar.scrollTop=e+(e?-1:1),ar.scrollTop=e)},0))):mr.style.minHeight="",vr.style.top=Vr*Bn()+"px"}function It(){Xr=g(0),Zr=!0;var e=Xr.text.length;Mr.iter(1,Mr.size,function(t){var n=t.text;!t.hidden&&n.length>e&&(e=n.length,Xr=t)}),jr=!1}function Pt(e,t,n){function r(r){if(U(r,t))return r;if(!U(n,r))return i;var o=r.line+e.length-(n.line-t.line)-1,l=r.ch;return r.line==n.line&&(l+=P(e).length-(n.ch-(n.line==t.line?t.ch:0))),{line:o,ch:l}}t=cn(t),n=n?cn(n):t,e=Ct(e);var i;return Kt(e,t,n,function(e){return i=e,{from:r(Br.from),to:r(Br.to)}}),i}function Bt(e,t){Kt(Ct(e),Br.from,Br.to,function(e){return"end"==t?{from:e,to:e}:"start"==t?{from:Br.from,to:Br.from}:{from:Br.from,to:e}})}function Kt(e,t,n,r){var i=1==e.length?e[0].length+t.ch:P(e).length,o=r({line:t.line+e.length-1,ch:i});Wt(t,n,e,o.from,o.to)}function Ut(e,t,n){var r=e.line,i=t.line;if(r==i)return g(r).text.slice(e.ch,t.ch);var o=[g(r).text.slice(e.ch)];return Mr.iter(r+1,i,function(e){o.push(e.text)}),o.push(g(i).text.slice(0,t.ch)),o.join(n||"\n")}function Ft(e){return Ut(Br.from,Br.to,e)}function Vt(){_r||kr.set(tr.pollInterval,function(){Yt(),Sr&&Vt()})}function Gt(){function e(){var n=Yt();n||t?(_r=!1,Vt()):(t=!0,kr.set(60,e))}var t=!1;_r=!0,kr.set(20,e)}function Yt(){if(!Sr||bt(ir)||tr.readOnly)return!1;var e=ir.value;if(e==oi)return!1;di||Jn(),Ar=null;for(var t=0,n=Math.min(oi.length,e.length);n>t&&oi[t]==e[t];)++t;return t<oi.length?Br.from={line:Br.from.line,ch:Br.from.ch-(oi.length-t)}:Ur&&K(Br.from,Br.to)&&(Br.to={line:Br.to.line,ch:Math.min(g(Br.to.line).text.length,Br.to.ch+(e.length-t))}),Bt(e.slice(t),"end"),e.length>1e3?ir.value=oi="":oi=e,di||qn(),!0}function $t(e){K(Br.from,Br.to)?e&&(oi=ir.value=""):(oi="",ir.value=Ft(),Sr&&B(ir))}function Xt(){"nocursor"!=tr.readOnly&&ir.focus()}function jt(){var e=Zt();if(_t(e.x,e.y,e.x,e.yBot),Sr){var t=mr.getBoundingClientRect(),n=null;if(e.y+t.top<0?n=!0:e.y+t.top+Bn()>(window.innerHeight||document.documentElement.clientHeight)&&(n=!1),null!=n){var r="none"==fr.style.display;r&&(fr.style.display="",fr.style.left=e.x+"px",fr.style.top=e.y-Vr+"px"),fr.scrollIntoView(n),r&&(fr.style.display="none")}}}function Zt(){var e=Rn(Br.inverted?Br.from:Br.to),t=tr.lineWrapping?Math.min(e.x,dr.offsetWidth):e.x;return{x:t,y:e.y,yBot:e.yBot}}function _t(e,t,n,r){var i=Jt(e,t,n,r);null!=i.scrollLeft&&(yr.scrollLeft=i.scrollLeft),null!=i.scrollTop&&(ar.scrollTop=yr.scrollTop=i.scrollTop)}function Jt(e,t,n,r){var i=Fn(),o=Un();t+=o,r+=o,e+=i,n+=i;var l=yr.clientHeight,a=ar.scrollTop,s={},u=Ot()||1/0,f=o+10>t,c=r+o>u-10;a>t?s.scrollTop=f?0:Math.max(0,t):r>a+l&&(s.scrollTop=(c?u:r)-l);var h=yr.clientWidth,d=yr.scrollLeft,p=tr.fixedGutter?gr.clientWidth:0,g=p+i+10>e;return d+p>e||g?(g&&(e=0),s.scrollLeft=Math.max(0,e-10-p)):n>h+d-3&&(s.scrollLeft=n+10-h),s}function qt(e){var t=Bn(),n=(null!=e?e:ar.scrollTop)-Un(),r=Math.max(0,Math.floor(n/t)),i=Math.ceil((n+yr.clientHeight)/t);return{from:b(Mr,r),to:b(Mr,i)}}function Qt(e,t,n){function r(){var e=sr.firstChild,t=!1;return Mr.iter(Gr,Yr,function(n){if(e){if(!n.hidden){var r=Math.round(e.offsetHeight/c)||1;n.height!=r&&(w(n,r),Rr=t=!0)}e=e.nextSibling}}),t}if(!yr.clientWidth)return Gr=Yr=Vr=0,void 0;var i=qt(n);if(e!==!0&&0==e.length&&i.from>Gr&&i.to<Yr)return Rt(n),void 0;var o=Math.max(i.from-100,0),l=Math.min(Mr.size,i.to+100);o>Gr&&20>o-Gr&&(o=Gr),Yr>l&&20>Yr-l&&(l=Math.min(Mr.size,Yr));for(var a=e===!0?[]:en([{from:Gr,to:Yr,domStart:0}],e),s=0,u=0;u<a.length;++u){var f=a[u];f.from<o&&(f.domStart+=o-f.from,f.from=o),f.to>l&&(f.to=l),f.from>=f.to?a.splice(u--,1):s+=f.to-f.from}if(s==l-o&&o==Gr&&l==Yr)return Rt(n),void 0;a.sort(function(e,t){return e.domStart-t.domStart});var c=Bn(),h=gr.style.display;sr.style.display="none",tn(o,l,a),sr.style.display=gr.style.display="";var d=o!=Gr||l!=Yr||$r!=yr.clientHeight+c;if(d&&($r=yr.clientHeight+c),(o!=Gr||l!=Yr&&tr.onViewportChange)&&setTimeout(function(){tr.onViewportChange&&tr.onViewportChange(ri,o,l)}),Gr=o,Yr=l,Vr=S(Mr,o),_n(100),sr.childNodes.length!=Yr-Gr)throw new Error("BAD PATCH! "+JSON.stringify(a)+" size="+(Yr-Gr)+" nodes="+sr.childNodes.length);return tr.lineWrapping&&r(),gr.style.display=h,(d||Rr)&&nn()&&tr.lineWrapping&&r()&&nn(),Rt(n),rn(),!t&&tr.onUpdate&&tr.onUpdate(ri),!0}function en(e,t){for(var n=0,r=t.length||0;r>n;++n){for(var i=t[n],o=[],l=i.diff||0,a=0,s=e.length;s>a;++a){var u=e[a];i.to<=u.from&&i.diff?o.push({from:u.from+l,to:u.to+l,domStart:u.domStart}):i.to<=u.from||i.from>=u.to?o.push(u):(i.from>u.from&&o.push({from:u.from,to:i.from,domStart:u.domStart}),i.to<u.to&&o.push({from:i.to+l,to:u.to+l,domStart:u.domStart+(i.to-u.from)}))}e=o}return e}function tn(e,t,n){function r(e){var t=e.nextSibling;return e.parentNode.removeChild(e),t}if(n.length){for(var i=0,o=sr.firstChild,l=0;l<n.length;++l){for(var a=n[l];a.domStart>i;)o=r(o),i++;for(var s=0,u=a.to-a.from;u>s;++s)o=o.nextSibling,i++}for(;o;)o=r(o)}else G(sr);var f=n.shift(),o=sr.firstChild,s=e;Mr.iter(e,t,function(e){if(f&&f.to==s&&(f=n.shift()),!f||f.from>s){if(e.hidden)var t=V("pre");else{var t=A(e);if(e.className&&(t.className=e.className),e.bgClassName){var r=V("pre"," ",e.bgClassName,"position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: -2");t=V("div",[r,t],null,"position: relative")}}sr.insertBefore(t,o)}else o=o.nextSibling;++s})}function nn(){if(tr.gutter||tr.lineNumbers){var e=vr.offsetHeight,t=yr.clientHeight;gr.style.height=(2>e-t?t:e)+"px";var n,r=document.createDocumentFragment(),i=Gr;if(Mr.iter(Gr,Math.max(Yr,Gr+1),function(e){if(e.hidden)r.appendChild(V("pre"));else{var t=e.gutterMarker,o=tr.lineNumbers?tr.lineNumberFormatter(i+tr.firstLineNumber):null;t&&t.text?o=t.text.replace("%N%",null!=o?o:""):null==o&&(o=" ");var l=r.appendChild(V("pre",null,t&&t.style));l.innerHTML=o;for(var a=1;a<e.height;++a)l.appendChild(V("br")),l.appendChild(document.createTextNode(" "));t||(n=i)}++i}),gr.style.display="none",Y(pr,r),null!=n&&tr.lineNumbers){for(var o=pr.childNodes[n-Gr],l=String(Mr.size).length,a=R(o.firstChild),s="";a.length+s.length<l;)s+=" ";s&&o.insertBefore(document.createTextNode(s),o.firstChild)}gr.style.display="";var u=Math.abs((parseInt(dr.style.marginLeft)||0)-gr.offsetWidth)>2;return dr.style.marginLeft=gr.offsetWidth+"px",Rr=!1,u}}function rn(){var e=K(Br.from,Br.to),t=Rn(Br.from,!0),n=e?t:Rn(Br.to,!0),r=Br.inverted?t:n,i=Bn(),o=O(xr),l=O(sr);if(or.style.top=Math.max(0,Math.min(yr.offsetHeight,r.y+l.top-o.top))+"px",or.style.left=Math.max(0,Math.min(yr.offsetWidth,r.x+l.left-o.left))+"px",e)fr.style.top=r.y+"px",fr.style.left=(tr.lineWrapping?Math.min(r.x,dr.offsetWidth):r.x)+"px",fr.style.display="",ur.style.display="none";else{var a=t.y==n.y,s=document.createDocumentFragment(),u=dr.clientWidth||dr.offsetWidth,f=dr.clientHeight||dr.offsetHeight,c=function(e,t,n,r){var i=st?"width: "+(n?u-n-e:u)+"px":"right: "+n+"px";s.appendChild(V("div",null,"CodeMirror-selected","position: absolute; left: "+e+"px; top: "+t+"px; "+i+"; height: "+r+"px"))};if(Br.from.ch&&t.y>=0){var h=a?u-n.x:0;c(t.x,t.y,h,i)}var d=Math.max(0,t.y+(Br.from.ch?i:0)),p=Math.min(n.y,f)-d;p>.2*i&&c(0,d,0,p),a&&Br.from.ch||!(n.y<f-.5*i)||c(0,n.y,u-n.x,i),Y(ur,s),fr.style.display="none",ur.style.display=""}}function on(e){Ar=e?Ar||(Br.inverted?Br.to:Br.from):null}function ln(e,t){var n=Ar&&cn(Ar);n&&(U(n,e)?e=n:U(t,n)&&(t=n)),an(e,t),Dr=!0}function an(e,t,n,r){if(Jr=null,null==n&&(n=Br.from.line,r=Br.to.line),!K(Br.from,e)||!K(Br.to,t)){if(U(t,e)){var i=t;t=e,e=i}if(e.line!=n){var o=sn(e,n,Br.from.ch);o?e=o:zn(e.line,!1)}if(t.line!=r&&(t=sn(t,r,Br.to.ch)),K(e,t)?Br.inverted=!1:K(e,Br.to)?Br.inverted=!1:K(t,Br.from)&&(Br.inverted=!0),tr.autoClearEmptyLines&&K(Br.from,Br.to)){var l=Br.inverted?e:t;if(l.line!=Br.from.line&&Br.from.line<Mr.size){var a=g(Br.from.line);/^\s+$/.test(a.text)&&setTimeout(Qn(function(){if(a.parent&&/^\s+$/.test(a.text)){var e=C(a);Pt("",{line:e,ch:0},{line:e,ch:a.text.length})}},10))}}Br.from=e,Br.to=t,Or=!0}}function sn(e,t,n){function r(t){for(var r=e.line+t,i=1==t?Mr.size:-1;r!=i;){var l=g(r);if(!l.hidden){var a=e.ch;return(o||a>n||a>l.text.length)&&(a=l.text.length),{line:r,ch:a}}r+=t}}var i=g(e.line),o=e.ch==i.text.length&&e.ch!=n;return i.hidden?e.line>=t?r(1)||r(-1):r(-1)||r(1):e}function un(e,t,n){var r=cn({line:e,ch:t||0});(n?ln:an)(r,r)}function fn(e){return Math.max(0,Math.min(e,Mr.size-1))}function cn(e){if(e.line<0)return{line:0,ch:0};if(e.line>=Mr.size)return{line:Mr.size-1,ch:g(Mr.size-1).text.length};var t=e.ch,n=g(e.line).text.length;return null==t||t>n?{line:e.line,ch:n}:0>t?{line:e.line,ch:0}:e}function hn(e,t){function n(){for(var t=o+e,n=0>e?-1:Mr.size;t!=n;t+=e){var r=g(t);if(!r.hidden)return o=t,a=r,!0}}function r(t){if(l==(0>e?0:a.text.length)){if(t||!n())return!1;l=0>e?a.text.length:0}else l+=e;return!0}var i=Br.inverted?Br.from:Br.to,o=i.line,l=i.ch,a=g(o);if("char"==t)r();else if("column"==t)r(!0);else if("word"==t)for(var s=!1;!(0>e)||r();){if(Z(a.text.charAt(l)))s=!0;else if(s){0>e&&(e=1,r());break}if(e>0&&!r())break}return{line:o,ch:l}}function dn(e,t){var n=0>e?Br.from:Br.to;(Ar||K(Br.from,Br.to))&&(n=hn(e,t)),un(n.line,n.ch,!0)}function pn(e,t){K(Br.from,Br.to)?0>e?Pt("",hn(e,t),Br.to):Pt("",Br.from,hn(e,t)):Pt("",Br.from,Br.to),Dr=!0}function gn(e,t){var n=Rn(Br.inverted?Br.from:Br.to,!0);if(null!=Jr&&(n.x=Jr),"page"==t)var r=Math.min(yr.clientHeight,window.innerHeight||document.documentElement.clientHeight),i=In(n.x,n.y+r*e);else if("line"==t)var o=Bn(),i=In(n.x,n.y+.5*o+e*o);"page"==t&&(ar.scrollTop+=Rn(i,!0).y-n.y),un(i.line,i.ch,!0),Jr=n.x}function vn(e){var t=g(e.line).text,n=e.ch,r=e.ch;if(t){e.after===!1||r==t.length?--n:++r;for(var i=t.charAt(n),o=Z(i)?Z:/\s/.test(i)?function(e){return/\s/.test(e)}:function(e){return!/\s/.test(e)&&!Z(e)};n>0&&o(t.charAt(n-1));)--n;for(;r<t.length&&o(t.charAt(r));)++r}return{from:{line:e.line,ch:n},to:{line:e.line,ch:r}}}function mn(e){ln({line:e,ch:0},cn({line:e+1,ch:0}))}function yn(e){if(K(Br.from,Br.to))return xn(Br.from.line,e);for(var t=Br.to.line-(Br.to.ch?0:1),n=Br.from.line;t>=n;++n)xn(n,e)}function xn(e,t){if(t||(t="add"),"smart"==t)if(br.indent)var n=jn(e);else t="prev";var r,i=g(e),o=i.indentation(tr.tabSize),l=i.text.match(/^\s*/)[0];"smart"==t&&(r=br.indent(n,i.text.slice(l.length),i.text),r==vt&&(t="prev")),"prev"==t?r=e?g(e-1).indentation(tr.tabSize):0:"add"==t?r=o+tr.indentUnit:"subtract"==t&&(r=o-tr.indentUnit),r=Math.max(0,r);var a="",s=0;if(tr.indentWithTabs)for(var u=Math.floor(r/tr.tabSize);u;--u)s+=tr.tabSize,a+=" ";r>s&&(a+=I(r-s)),a!=l&&Pt(a,{line:e,ch:0},{line:e,ch:l.length})}function Cn(){br=e.getMode(tr,tr.mode),Mr.iter(0,Mr.size,function(e){e.stateAfter=null}),Tr=0,_n(100)}function bn(){var e=tr.gutter||tr.lineNumbers;gr.style.display=e?"":"none",e?Rr=!0:sr.parentNode.style.marginLeft=0}function Sn(){if(tr.lineWrapping){xr.className+=" CodeMirror-wrap";var e=yr.clientWidth/Kn()-3;Mr.iter(0,Mr.size,function(t){if(!t.hidden){var n=Math.ceil(t.text.length/e)||1;1!=n&&w(t,n)}}),dr.style.minWidth=cr.style.left=""}else xr.className=xr.className.replace(" CodeMirror-wrap",""),It(),Mr.iter(0,Mr.size,function(e){1==e.height||e.hidden||w(e,1)});zr.push({from:0,to:Mr.size})}function kn(){yr.className=yr.className.replace(/\s*cm-s-\S+/g,"")+tr.theme.replace(/(^|\s)\s*/g," cm-s-")}function wn(){var e=rt[tr.keyMap].style;xr.className=xr.className.replace(/\s*cm-keymap-\S+/g,"")+(e?" cm-keymap-"+e:"")}function Mn(e,t){this.lines=[],this.type=e,t&&(this.style=t)}function Tn(e,t,n,r){e=cn(e),t=cn(t);var i=new Mn("range",n);if(r)for(var o in r)r.hasOwnProperty(o)&&(i[o]=r[o]);var l=e.line;return Mr.iter(l,t.line+1,function(n){var r={from:l==e.line?e.ch:null,to:l==t.line?t.ch:null,marker:i};(n.markedSpans||(n.markedSpans=[])).push(r),i.lines.push(n),++l}),zr.push({from:e.line,to:t.line+1}),i}function An(e){e=cn(e);var t=new Mn("bookmark"),n=g(e.line),r={from:e.ch,to:e.ch,marker:t};return(n.markedSpans||(n.markedSpans=[])).push(r),t.lines.push(n),t}function Ln(e){e=cn(e);var t=[],n=g(e.line).markedSpans;if(n)for(var r=0;r<n.length;++r){var i=n[r];(null==i.from||i.from<=e.ch)&&(null==i.to||i.to>=e.ch)&&t.push(i.marker)}return t}function Nn(e,t,n){return"number"==typeof e&&(e=g(fn(e))),e.gutterMarker={text:t,style:n},Rr=!0,e}function Wn(e){"number"==typeof e&&(e=g(fn(e))),e.gutterMarker=null,Rr=!0}function En(e,t){var n=e,r=e;return"number"==typeof e?r=g(fn(e)):n=C(e),null==n?null:t(r,n)?(zr.push({from:n,to:n+1}),r):null}function Dn(e,t,n){return En(e,function(e){return e.className!=t||e.bgClassName!=n?(e.className=t,e.bgClassName=n,!0):void 0})}function zn(e,t){return En(e,function(e,n){if(e.hidden!=t){e.hidden=t,tr.lineWrapping||(t&&e.text.length==Xr.text.length?jr=!0:!t&&e.text.length>Xr.text.length&&(Xr=e,jr=!1)),w(e,t?0:1);var r=Br.from.line,i=Br.to.line;if(t&&(r==n||i==n)){var o=r==n?sn({line:r,ch:0},r,0):Br.from,l=i==n?sn({line:i,ch:0},i,0):Br.to;if(!l)return;an(o,l)}return Rr=!0}})}function Hn(e){if("number"==typeof e){if(!p(e))return null;var t=e;if(e=g(e),!e)return null}else{var t=C(e);if(null==t)return null}var n=e.gutterMarker;return{line:t,handle:e,text:e.text,markerText:n&&n.text,markerClass:n&&n.style,lineClass:e.className,bgClass:e.bgClassName}}function On(e,t){if(0==t)return{top:0,left:0};tr.lineWrapping&&t<e.text.length&&yt.test(e.text.slice(t-1,t+1));var n=A(e,t);Y(hr,n);var r=n.anchor,i=r.offsetTop,o=r.offsetLeft;if(ot&&0==i&&0==o){var l=V("span","x");r.parentNode.insertBefore(l,r.nextSibling),i=l.offsetTop}return{top:i,left:o}}function Rn(e,t){var n,r=Bn(),i=r*(S(Mr,e.line)-(t?Vr:0));if(0==e.ch)n=0;else{var o=On(g(e.line),e.ch);n=o.left,tr.lineWrapping&&(i+=Math.max(0,o.top))}return{x:n,y:i,yBot:i+r}}function In(e,t){function n(e){var t=On(a,e);if(u){var n=Math.round(t.top/r);return h=n!=f,Math.max(0,t.left+(n-f)*yr.clientWidth)}return t.left}var r=Bn(),i=Kn(),o=Vr+Math.floor(t/r);if(0>o)return{line:0,ch:0};var l=b(Mr,o);if(l>=Mr.size)return{line:Mr.size-1,ch:g(Mr.size-1).text.length};var a=g(l),s=a.text,u=tr.lineWrapping,f=u?o-S(Mr,l):0;if(0>=e&&0==f)return{line:l,ch:0};for(var c,h=!1,d=0,p=0,v=s.length,m=Math.min(v,Math.ceil((e+.9*f*yr.clientWidth)/i));;){var y=n(m);if(!(e>=y&&v>m)){c=y,v=m;break}m=Math.min(v,Math.ceil(1.2*m))}if(e>c)return{line:l,ch:v};for(m=Math.floor(.8*v),y=n(m),e>y&&(d=m,p=y);;){if(1>=v-d){var x=c-e>e-p;return{line:l,ch:x?d:v,after:x}}var C=Math.ceil((d+v)/2),k=n(C);k>e?(v=C,c=k,h&&(c+=1e3)):(d=C,p=k)}}function Pn(e){var t=Rn(e,!0),n=O(dr);return{x:n.left+t.x,y:n.top+t.y,yBot:n.top+t.yBot}}function Bn(){if(null==si){si=V("pre");for(var e=0;49>e;++e)si.appendChild(document.createTextNode("x")),si.appendChild(V("br"));si.appendChild(document.createTextNode("x"))}var t=sr.clientHeight;return t==ai?li:(ai=t,Y(hr,si.cloneNode(!0)),li=hr.firstChild.offsetHeight/50||1,G(hr),li)}function Kn(){if(yr.clientWidth==ci)return ui;ci=yr.clientWidth;var e=V("span","x"),t=V("pre",[e]);return Y(hr,t),ui=e.offsetWidth||10}function Un(){return dr.offsetTop}function Fn(){return dr.offsetLeft}function Vn(e,t){var n,r,i=O(yr,!0);try{n=e.clientX,r=e.clientY}catch(e){return null}if(!t&&(n-i.left>yr.clientWidth||r-i.top>yr.clientHeight))return null;var o=O(dr,!0);return In(n-o.left,r-o.top)}function Gn(e){function t(){if(or.style.position="relative",ir.style.cssText=i,at&&(ar.scrollTop=r),Vt(),null!=ir.selectionStart){clearTimeout(fi);var e=ir.value=" "+(K(Br.from,Br.to)?"":ir.value),t=0;oi=" ",ir.selectionStart=1,ir.selectionEnd=e.length,fi=setTimeout(function n(){" "==oi&&0==ir.selectionStart?Qn(nt.selectAll)(ri):t++<10?fi=setTimeout(n,500):$t()},200)}}var n=Vn(e),r=ar.scrollTop;if(n&&!ct){(K(Br.from,Br.to)||U(n,Br.from)||!U(n,Br.to))&&Qn(un)(n.line,n.ch);var i=ir.style.cssText;if(or.style.position="absolute",ir.style.cssText="position: fixed; width: 30px; height: 30px; top: "+(e.clientY-5)+"px; left: "+(e.clientX-5)+"px; z-index: 1000; background: white; "+"border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",Xt(),$t(!0),K(Br.from,Br.to)&&(ir.value=oi=" "),it){L(e);var o=D(window,"mouseup",function(){o(),setTimeout(t,20)},!0)}else setTimeout(t,50)}}function Yn(){clearInterval(Cr);var e=!0;fr.style.visibility="",Cr=setInterval(function(){fr.style.visibility=(e=!e)?"":"hidden"},tr.cursorBlinkRate)}function $n(e){function t(e,t,n){if(e.text)for(var r,i=e.styles,o=l?0:e.text.length-1,s=l?0:i.length-2,u=l?i.length:-2;s!=u;s+=2*a){var f=i[s];if(i[s+1]==h){for(var c=l?0:f.length-1,g=l?f.length:-1;c!=g;c+=a,o+=a)if(o>=t&&n>o&&p.test(r=f.charAt(c))){var v=hi[r];if(">"==v.charAt(1)==l)d.push(r);else{if(d.pop()!=v.charAt(0))return{pos:o,match:!1};if(!d.length)return{pos:o,match:!0}}}}else o+=a*f.length}}var n=Br.inverted?Br.from:Br.to,r=g(n.line),i=n.ch-1,o=i>=0&&hi[r.text.charAt(i)]||hi[r.text.charAt(++i)];if(o){for(var l=(o.charAt(0),">"==o.charAt(1)),a=l?1:-1,s=r.styles,u=i+1,f=0,c=s.length;c>f;f+=2)if((u-=s[f].length)<=0){var h=s[f+1];break}for(var d=[r.text.charAt(i)],p=/[(){}[\]]/,f=n.line,c=l?Math.min(f+100,Mr.size):Math.max(-1,f-100);f!=c;f+=a){var r=g(f),v=f==n.line,m=t(r,v&&l?i+1:0,v&&!l?i:r.text.length);if(m)break}m||(m={pos:null,match:!1});var h=m.match?"CodeMirror-matchingbracket":"CodeMirror-nonmatchingbracket",y=Tn({line:n.line,ch:i},{line:n.line,ch:i+1},h),x=null!=m.pos&&Tn({line:f,ch:m.pos},{line:f,ch:m.pos+1},h),C=Qn(function(){y.clear(),x&&x.clear()});e?setTimeout(C,800):Pr=C}}function Xn(e){for(var t,n,r=e,i=e-40;r>i;--r){if(0==r)return 0;var o=g(r-1);if(o.stateAfter)return r;var l=o.indentation(tr.tabSize);(null==n||t>l)&&(n=r-1,t=l)}return n}function jn(e){var t=Xn(e),n=t&&g(t-1).stateAfter;return n=n?i(br,n):o(br),Mr.iter(t,e,function(r){r.process(br,n,tr.tabSize),r.stateAfter=t==e-1||0==t%5?i(br,n):null}),n}function Zn(){if(!(Tr>=Yr)){var e=+new Date+tr.workTime,t=i(br,jn(Tr)),n=Tr;Mr.iter(Tr,Yr,function(n){return Tr>=Gr?(n.highlight(br,t,tr.tabSize),n.stateAfter=i(br,t)):(n.process(br,t,tr.tabSize),n.stateAfter=0==Tr%5?i(br,t):null),++Tr,+new Date>e?(_n(tr.workDelay),!0):void 0}),Yr>n&&Tr>=Gr&&Qn(function(){zr.push({from:n,to:Tr})})()}}function _n(e){Yr>Tr&&wr.set(e,Zn)}function Jn(){Er=Dr=Hr=null,zr=[],Or=!1,Ir=[]}function qn(){if(jr&&It(),Zr&&!tr.lineWrapping){var e=cr.offsetWidth,t=On(Xr,Xr.text.length).left;lt||(cr.style.left=t+"px",dr.style.minWidth=t+e+"px"),Zr=!1}var n,r;if(Or){var i=Zt();n=Jt(i.x,i.y,i.x,i.yBot)}(zr.length||n&&null!=n.scrollTop)&&(r=Qt(zr,!0,n&&n.scrollTop)),r||(Or&&rn(),Rr&&nn()),n&&jt(),Or&&Yn(),Sr&&(Er===!0||Er!==!1&&Or)&&$t(Dr),Or&&tr.matchBrackets&&setTimeout(Qn(function(){Pr&&(Pr(),Pr=null),K(Br.from,Br.to)&&$n(!1)}),20);var o=Or,l=Ir;Hr&&tr.onChange&&ri&&tr.onChange(ri,Hr),o&&tr.onCursorActivity&&tr.onCursorActivity(ri);for(var a=0;a<l.length;++a)l[a](ri);r&&tr.onUpdate&&tr.onUpdate(ri)}function Qn(e){return function(){di++||Jn();try{var t=e.apply(this,arguments)}finally{--di||qn()}return t}}function er(e){qr.startCompound();try{return e()}finally{qr.endCompound()}}var tr={},nr=e.defaults;for(var rr in nr)nr.hasOwnProperty(rr)&&(tr[rr]=(s&&s.hasOwnProperty(rr)?s:nr)[rr]);var ir=V("textarea",null,null,"position: absolute; padding: 0; width: 1px; height: 1em");ir.setAttribute("wrap","off"),ir.setAttribute("autocorrect","off"),ir.setAttribute("autocapitalize","off");var or=V("div",[ir],null,"overflow: hidden; position: relative; width: 3px; height: 0px;"),lr=V("div",null,"CodeMirror-scrollbar-inner"),ar=V("div",[lr],"CodeMirror-scrollbar"),sr=V("div"),ur=V("div",null,null,"position: relative; z-index: -1"),fr=V("pre"," ","CodeMirror-cursor"),cr=V("pre"," ","CodeMirror-cursor","visibility: hidden"),hr=V("div",null,null,"position: absolute; width: 100%; height: 0px; overflow: hidden; visibility: hidden;"),dr=V("div",[hr,fr,cr,ur,sr],null,"position: relative; z-index: 0"),pr=V("div",null,"CodeMirror-gutter-text"),gr=V("div",[pr],"CodeMirror-gutter"),vr=V("div",[gr,V("div",[dr],"CodeMirror-lines")],null,"position: relative"),mr=V("div",[vr],null,"position: relative"),yr=V("div",[mr],"CodeMirror-scroll");yr.setAttribute("tabIndex","-1");var xr=V("div",[or,ar,yr],"CodeMirror"+(tr.lineWrapping?" CodeMirror-wrap":""));l.appendChild?l.appendChild(xr):l(xr),kn(),wn(),_&&(ir.style.width="0px"),ut||(yr.draggable=!0),dr.style.outline="none",null!=tr.tabindex&&(ir.tabIndex=tr.tabindex),tr.autofocus&&Xt(),tr.gutter||tr.lineNumbers||(gr.style.display="none"),dt&&(or.style.height="1px",or.style.position="absolute"),pt?(ar.style.zIndex=-2,ar.style.visibility="hidden"):lt&&(ar.style.minWidth="18px");var Cr,br,Sr,kr=new z,wr=new z,Mr=new y([new m([new v("")])]),Tr=0;Cn();var Ar,Lr,Nr,Wr,Er,Dr,zr,Hr,Or,Rr,Ir,Pr,Br={from:{line:0,ch:0},to:{line:0,ch:0},inverted:!1},Kr=0,Ur=!1,Fr=!1,Vr=0,Gr=0,Yr=0,$r=0,Xr=g(0),jr=!1,Zr=!0,_r=!1,Jr=null;Qn(function(){H(tr.value||""),Er=!1})();var qr=new k;D(yr,"mousedown",Qn(tt)),D(yr,"dblclick",Qn(ft)),D(dr,"selectstart",T),it||D(yr,"contextmenu",Gn),D(yr,"scroll",Q),D(ar,"scroll",q),D(ar,"mousedown",function(){Sr&&setTimeout(Xt,0)});var Qr=D(window,"resize",function(){xr.parentNode?Qt(!0):Qr()},!0);D(ir,"keyup",Qn(At)),D(ir,"input",Gt),D(ir,"keydown",Qn(Mt)),D(ir,"keypress",Qn(Tt)),D(ir,"focus",Lt),D(ir,"blur",Nt),tr.dragDrop&&(D(yr,"dragstart",gt),D(yr,"dragenter",u),D(yr,"dragover",u),D(yr,"drop",Qn(ht))),D(yr,"paste",function(){Xt(),Gt()}),D(ir,"paste",Gt),D(ir,"cut",Qn(function(){tr.readOnly||Bt("")})),dt&&D(mr,"mouseup",function(){document.activeElement==ir&&ir.blur(),Xt()});var ei;try{ei=document.activeElement==ir}catch(ti){}ei||tr.autofocus?setTimeout(Lt,20):Nt();var ni,ri=xr.CodeMirror={getValue:$,setValue:Qn(H),getSelection:Ft,replaceSelection:Qn(Bt),focus:function(){window.focus(),Xt(),Lt(),Gt()},setOption:function(e,t){var n=tr[e];tr[e]=t,"mode"==e||"indentUnit"==e?Cn():"readOnly"==e&&"nocursor"==t?(Nt(),ir.blur()):"readOnly"!=e||t?"theme"==e?kn():"lineWrapping"==e&&n!=t?Qn(Sn)():"tabSize"==e?Qt(!0):"keyMap"==e&&wn():$t(!0),("lineNumbers"==e||"gutter"==e||"firstLineNumber"==e||"theme"==e||"lineNumberFormatter"==e)&&(bn(),Qt(!0))},getOption:function(e){return tr[e]},getMode:function(){return br},undo:Qn(Dt),redo:Qn(zt),indentLine:Qn(function(e,t){"string"!=typeof t&&(t=null==t?tr.smartIndent?"smart":"prev":t?"add":"subtract"),p(e)&&xn(e,t)}),indentSelection:Qn(yn),historySize:function(){return{undo:qr.done.length,redo:qr.undone.length}},clearHistory:function(){qr=new k},setHistory:function(e){qr=new k,qr.done=e.done,qr.undone=e.undone},getHistory:function(){function e(e){for(var t,n=0,r=[];n<e.length;++n){r.push(t=[]);for(var i=0,o=e[n];i<o.length;++i){var l=[],a=o[i];t.push({start:a.start,added:a.added,old:l});for(var s=0;s<a.old.length;++s)l.push(c(a.old[s]))}}return r}return{done:e(qr.done),undone:e(qr.undone)}},matchBrackets:Qn(function(){$n(!0)}),getTokenAt:Qn(function(e){return e=cn(e),g(e.line).getTokenAt(br,jn(e.line),tr.tabSize,e.ch)}),getStateAfter:function(e){return e=fn(null==e?Mr.size-1:e),jn(e+1)},cursorCoords:function(e,t){return null==e&&(e=Br.inverted),this.charCoords(e?Br.from:Br.to,t)},charCoords:function(e,t){return e=cn(e),"local"==t?Rn(e,!1):"div"==t?Rn(e,!0):Pn(e)},coordsChar:function(e){var t=O(dr);return In(e.x-t.left,e.y-t.top)},markText:Qn(Tn),setBookmark:An,findMarksAt:Ln,setMarker:Qn(Nn),clearMarker:Qn(Wn),setLineClass:Qn(Dn),hideLine:Qn(function(e){return zn(e,!0)}),showLine:Qn(function(e){return zn(e,!1)}),onDeleteLine:function(e,t){if("number"==typeof e){if(!p(e))return null;e=g(e)}return(e.handlers||(e.handlers=[])).push(t),e},lineInfo:Hn,getViewport:function(){return{from:Gr,to:Yr}},addWidget:function(e,t,n,r,i){e=Rn(cn(e));var o=e.yBot,l=e.x;if(t.style.position="absolute",mr.appendChild(t),"over"==r)o=e.y;else if("near"==r){var a=Math.max(yr.offsetHeight,Mr.height*Bn()),s=Math.max(mr.clientWidth,dr.clientWidth)-Fn();e.yBot+t.offsetHeight>a&&e.y>t.offsetHeight&&(o=e.y-t.offsetHeight),l+t.offsetWidth>s&&(l=s-t.offsetWidth)}t.style.top=o+Un()+"px",t.style.left=t.style.right="","right"==i?(l=mr.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?l=0:"middle"==i&&(l=(mr.clientWidth-t.offsetWidth)/2),t.style.left=l+Fn()+"px"),n&&_t(l,o,l+t.offsetWidth,o+t.offsetHeight)
2
+ },lineCount:function(){return Mr.size},clipPos:cn,getCursor:function(e){return null==e&&(e=Br.inverted),F(e?Br.from:Br.to)},somethingSelected:function(){return!K(Br.from,Br.to)},setCursor:Qn(function(e,t,n){null==t&&"number"==typeof e.line?un(e.line,e.ch,n):un(e,t,n)}),setSelection:Qn(function(e,t,n){(n?ln:an)(cn(e),cn(t||e))}),getLine:function(e){return p(e)?g(e).text:void 0},getLineHandle:function(e){return p(e)?g(e):void 0},setLine:Qn(function(e,t){p(e)&&Pt(t,{line:e,ch:0},{line:e,ch:g(e).text.length})}),removeLine:Qn(function(e){p(e)&&Pt("",{line:e,ch:0},cn({line:e+1,ch:0}))}),replaceRange:Qn(Pt),getRange:function(e,t,n){return Ut(cn(e),cn(t),n)},triggerOnKeyDown:Qn(Mt),execCommand:function(e){return nt[e](ri)},moveH:Qn(dn),deleteH:Qn(pn),moveV:Qn(gn),toggleOverwrite:function(){Ur?(Ur=!1,fr.className=fr.className.replace(" CodeMirror-overwrite","")):(Ur=!0,fr.className+=" CodeMirror-overwrite")},posFromIndex:function(e){var t,n=0;return Mr.iter(0,Mr.size,function(r){var i=r.text.length+1;return i>e?(t=e,!0):(e-=i,++n,void 0)}),cn({line:n,ch:t})},indexFromPos:function(e){if(e.line<0||e.ch<0)return 0;var t=e.ch;return Mr.iter(0,e.line,function(e){t+=e.text.length+1}),t},scrollTo:function(e,t){null!=e&&(yr.scrollLeft=e),null!=t&&(ar.scrollTop=yr.scrollTop=t),Qt([])},getScrollInfo:function(){return{x:yr.scrollLeft,y:ar.scrollTop,height:ar.scrollHeight,width:yr.scrollWidth}},setSize:function(e,t){function n(e){return e=String(e),/^\d+$/.test(e)?e+"px":e}null!=e&&(xr.style.width=n(e)),null!=t&&(yr.style.height=n(t)),ri.refresh()},operation:function(e){return Qn(e)()},compoundChange:function(e){return er(e)},refresh:function(){Qt(!0,null,Kr),ar.scrollHeight>Kr&&(ar.scrollTop=Kr)},getInputField:function(){return ir},getWrapperElement:function(){return xr},getScrollerElement:function(){return yr},getGutterElement:function(){return gr}},ii=null,oi="";Mn.prototype.clear=Qn(function(){for(var e=1/0,t=-1/0,n=0;n<this.lines.length;++n){var r=this.lines[n],i=a(r.markedSpans,this,!0);if(null!=i.from||null!=i.to){var o=C(r);e=Math.min(e,o),t=Math.max(t,o)}}1/0!=e&&zr.push({from:e,to:t+1}),this.lines.length=0}),Mn.prototype.find=function(){for(var e,t,n=0;n<this.lines.length;++n){var r=this.lines[n],i=a(r.markedSpans,this);if(null!=i.from||null!=i.to){var o=C(r);null!=i.from&&(e={line:o,ch:i.from}),null!=i.to&&(t={line:o,ch:i.to})}}return"bookmark"==this.type?e:e&&{from:e,to:t}};var li,ai,si,ui,fi,ci=0,hi={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<"},di=0;for(var pi in et)et.propertyIsEnumerable(pi)&&!ri.propertyIsEnumerable(pi)&&(ri[pi]=et[pi]);return ri}function t(e){return"string"==typeof e?rt[e]:e}function n(e,n,r,i,o){function l(n){n=t(n);var r=n[e];if(r===!1)return o&&o(),!0;if(null!=r&&i(r))return!0;if(n.nofallthrough)return o&&o(),!0;var a=n.fallthrough;if(null==a)return!1;if("[object Array]"!=Object.prototype.toString.call(a))return l(a);for(var s=0,u=a.length;u>s;++s)if(l(a[s]))return!0;return!1}return n&&l(n)?!0:l(r)}function r(e){var t=St[E(e,"keyCode")];return"Ctrl"==t||"Alt"==t||"Shift"==t||"Mod"==t}function i(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function o(e,t,n){return e.startState?e.startState(t,n):!0}function l(e,t){this.pos=this.start=0,this.string=e,this.tabSize=t||8}function a(e,t,n){if(e)for(var r=0;r<e.length;++r){var i=e[r];if(i.marker==t)return n&&e.splice(r,1),i}}function s(e,t,n){if(e)for(var r,i=0;i<e.length;++i){var o=e[i],l=o.marker,a=null==o.from||(l.inclusiveLeft?o.from<=t:o.from<t);if(a||"bookmark"==l.type&&o.from==t&&o.from!=n){var s=null==o.to||(l.inclusiveRight?o.to>=t:o.to>t);(r||(r=[])).push({from:o.from,to:s?null:o.to,marker:l})}}return r}function u(e,t){if(e)for(var n,r=0;r<e.length;++r){var i=e[r],o=i.marker,l=null==i.to||(o.inclusiveRight?i.to>=t:i.to>t);if(l||"bookmark"==o.type&&i.from==t){var a=null==i.from||(o.inclusiveLeft?i.from<=t:i.from<t);(n||(n=[])).push({from:a?null:i.from-t,to:null==i.to?null:i.to-t,marker:o})}}return n}function f(e,t,n,r,i){if(!e&&!t)return i;var o=s(e,n),l=u(t,r),f=1==i.length,c=P(i).length+(f?n:0);if(o)for(var h=0;h<o.length;++h){var p=o[h];if(null==p.to){var g=a(l,p.marker);g?f&&(p.to=null==g.to?null:g.to+c):p.to=n}}if(l)for(var h=0;h<l.length;++h){var p=l[h];if(null!=p.to&&(p.to+=c),null==p.from){var g=a(o,p.marker);g||(p.from=c,f&&(o||(o=[])).push(p))}else p.from+=c,f&&(o||(o=[])).push(p)}var v=[d(i[0],o)];if(!f){var m,y=i.length-2;if(y>0&&o)for(var h=0;h<o.length;++h)null==o[h].to&&(m||(m=[])).push({from:null,to:null,marker:o[h].marker});for(var h=0;y>h;++h)v.push(d(i[h+1],m));v.push(d(P(i),l))}return v}function c(e){return"string"==typeof e?e:e.text}function h(e){return"string"==typeof e?null:e.markedSpans}function d(e,t){return t?{text:e,markedSpans:t}:e}function p(e){var t=e.markedSpans;if(t){for(var n=0;n<t.length;++n){var r=t[n].marker.lines,i=j(r,e);r.splice(i,1)}e.markedSpans=null}}function g(e,t){if(t){for(var n=0;n<t.length;++n)t[n].marker.lines.push(e);e.markedSpans=t}}function v(e,t){this.text=e,this.height=1,g(this,t)}function m(e){this.lines=e,this.parent=null;for(var t=0,n=e.length,r=0;n>t;++t)e[t].parent=this,r+=e[t].height;this.height=r}function y(e){this.children=e;for(var t=0,n=0,r=0,i=e.length;i>r;++r){var o=e[r];t+=o.chunkSize(),n+=o.height,o.parent=this}this.size=t,this.height=n,this.parent=null}function x(e,t){for(;!e.lines;)for(var n=0;;++n){var r=e.children[n],i=r.chunkSize();if(i>t){e=r;break}t-=i}return e.lines[t]}function C(e){if(null==e.parent)return null;for(var t=e.parent,n=j(t.lines,e),r=t.parent;r;t=r,r=r.parent){var i=0;for(r.children.length;r.children[i]!=t;++i)n+=r.children[i].chunkSize()}return n}function b(e,t){var n=0;e:do{for(var r=0,i=e.children.length;i>r;++r){var o=e.children[r],l=o.height;if(l>t){e=o;continue e}t-=l,n+=o.chunkSize()}return n}while(!e.lines);for(var r=0,i=e.lines.length;i>r;++r){var a=e.lines[r],s=a.height;if(s>t)break;t-=s}return n+r}function S(e,t){var n=0;e:do{for(var r=0,i=e.children.length;i>r;++r){var o=e.children[r],l=o.chunkSize();if(l>t){e=o;continue e}t-=l,n+=o.height}return n}while(!e.lines);for(var r=0;t>r;++r)n+=e.lines[r].height;return n}function k(){this.time=0,this.done=[],this.undone=[],this.compound=0,this.closed=!1}function w(){L(this)}function M(e){return e.stop||(e.stop=w),e}function T(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function A(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function L(e){T(e),A(e)}function N(e){return e.target||e.srcElement}function W(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),J&&e.ctrlKey&&1==t&&(t=3),t}function E(e,t){var n=e.override&&e.override.hasOwnProperty(t);return n?e.override[t]:e[t]}function D(e,t,n,r){if("function"==typeof e.addEventListener){if(e.addEventListener(t,n,!1),r)return function(){e.removeEventListener(t,n,!1)}}else{var i=function(e){n(e||window.event)};if(e.attachEvent("on"+t,i),r)return function(){e.detachEvent("on"+t,i)}}}function z(){this.id=null}function H(e,t,n){null==t&&(t=e.search(/[^\s\u00a0]/),-1==t&&(t=e.length));for(var r=0,i=0;t>r;++r)" "==e.charAt(r)?i+=n-i%n:++i;return i}function O(e,t){try{var n=e.getBoundingClientRect();n={top:n.top,left:n.left}}catch(r){n={top:0,left:0}}if(!t)if(null==window.pageYOffset){var i=document.documentElement||document.body.parentNode;null==i.scrollTop&&(i=document.body),n.top+=i.scrollTop,n.left+=i.scrollLeft}else n.top+=window.pageYOffset,n.left+=window.pageXOffset;return n}function R(e){return e.textContent||e.innerText||e.nodeValue||""}function I(e){for(;xt.length<=e;)xt.push(P(xt)+" ");return xt[e]}function P(e){return e[e.length-1]}function B(e){_?(e.selectionStart=0,e.selectionEnd=e.value.length):e.select()}function K(e,t){return e.line==t.line&&e.ch==t.ch}function U(e,t){return e.line<t.line||e.line==t.line&&e.ch<t.ch}function F(e){return{line:e.line,ch:e.ch}}function V(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)$(i,t);else if(t)for(var o=0;o<t.length;++o)i.appendChild(t[o]);return i}function G(e){return e.innerHTML="",e}function Y(e,t){G(e).appendChild(t)}function $(e,t){at?(e.innerHTML="",e.appendChild(document.createTextNode(t))):e.textContent=t}function X(e,t){if(!t)return 0;if(!e)return t.length;for(var n=e.length,r=t.length;n>=0&&r>=0&&e.charAt(n)==t.charAt(r);--n,--r);return r+1}function j(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;r>n;++n)if(e[n]==t)return n;return-1}function Z(e){return/\w/.test(e)||e.toUpperCase()!=e.toLowerCase()}e.defaults={value:"",mode:null,theme:"default",indentUnit:2,indentWithTabs:!1,smartIndent:!0,tabSize:4,keyMap:"default",extraKeys:null,electricChars:!0,autoClearEmptyLines:!1,onKeyEvent:null,onDragEvent:null,lineWrapping:!1,lineNumbers:!1,gutter:!1,fixedGutter:!1,firstLineNumber:1,readOnly:!1,dragDrop:!0,onChange:null,onCursorActivity:null,onViewportChange:null,onGutterClick:null,onUpdate:null,onFocus:null,onBlur:null,onScroll:null,matchBrackets:!1,cursorBlinkRate:530,workTime:100,workDelay:200,pollInterval:100,undoDepth:40,tabindex:null,autofocus:null,lineNumberFormatter:function(e){return e}};var _=/AppleWebKit/.test(navigator.userAgent)&&/Mobile\/\w+/.test(navigator.userAgent),J=_||/Mac/.test(navigator.platform);/Win/.test(navigator.platform);var q=e.modes={},Q=e.mimeModes={};e.defineMode=function(t,n){if(e.defaults.mode||"null"==t||(e.defaults.mode=t),arguments.length>2){n.dependencies=[];for(var r=2;r<arguments.length;++r)n.dependencies.push(arguments[r])}q[t]=n},e.defineMIME=function(e,t){Q[e]=t},e.resolveMode=function(t){if("string"==typeof t&&Q.hasOwnProperty(t))t=Q[t];else if("string"==typeof t&&/^[\w\-]+\/[\w\-]+\+xml$/.test(t))return e.resolveMode("application/xml");return"string"==typeof t?{name:t}:t||{name:"null"}},e.getMode=function(t,n){var n=e.resolveMode(n),r=q[n.name];if(!r)return e.getMode(t,"text/plain");var i=r(t,n);if(tt.hasOwnProperty(n.name)){var o=tt[n.name];for(var l in o)o.hasOwnProperty(l)&&(i[l]=o[l])}return i.name=n.name,i},e.listModes=function(){var e=[];for(var t in q)q.propertyIsEnumerable(t)&&e.push(t);return e},e.listMIMEs=function(){var e=[];for(var t in Q)Q.propertyIsEnumerable(t)&&e.push({mime:t,mode:Q[t]});return e};var et=e.extensions={};e.defineExtension=function(e,t){et[e]=t};var tt=e.modeExtensions={};e.extendMode=function(e,t){var n=tt.hasOwnProperty(e)?tt[e]:tt[e]={};for(var r in t)t.hasOwnProperty(r)&&(n[r]=t[r])};var nt=e.commands={selectAll:function(e){e.setSelection({line:0,ch:0},{line:e.lineCount()-1})},killLine:function(e){var t=e.getCursor(!0),n=e.getCursor(!1),r=!K(t,n);r||e.getLine(t.line).length!=t.ch?e.replaceRange("",t,r?n:{line:t.line}):e.replaceRange("",t,{line:t.line+1,ch:0})},deleteLine:function(e){var t=e.getCursor().line;e.replaceRange("",{line:t,ch:0},{line:t})},undo:function(e){e.undo()},redo:function(e){e.redo()},goDocStart:function(e){e.setCursor(0,0,!0)},goDocEnd:function(e){e.setSelection({line:e.lineCount()-1},null,!0)},goLineStart:function(e){e.setCursor(e.getCursor().line,0,!0)},goLineStartSmart:function(e){var t=e.getCursor(),n=e.getLine(t.line),r=Math.max(0,n.search(/\S/));e.setCursor(t.line,t.ch<=r&&t.ch?0:r,!0)},goLineEnd:function(e){e.setSelection({line:e.getCursor().line},null,!0)},goLineUp:function(e){e.moveV(-1,"line")},goLineDown:function(e){e.moveV(1,"line")},goPageUp:function(e){e.moveV(-1,"page")},goPageDown:function(e){e.moveV(1,"page")},goCharLeft:function(e){e.moveH(-1,"char")},goCharRight:function(e){e.moveH(1,"char")},goColumnLeft:function(e){e.moveH(-1,"column")},goColumnRight:function(e){e.moveH(1,"column")},goWordLeft:function(e){e.moveH(-1,"word")},goWordRight:function(e){e.moveH(1,"word")},delCharLeft:function(e){e.deleteH(-1,"char")},delCharRight:function(e){e.deleteH(1,"char")},delWordLeft:function(e){e.deleteH(-1,"word")},delWordRight:function(e){e.deleteH(1,"word")},indentAuto:function(e){e.indentSelection("smart")},indentMore:function(e){e.indentSelection("add")},indentLess:function(e){e.indentSelection("subtract")},insertTab:function(e){e.replaceSelection(" ","end")},defaultTab:function(e){e.somethingSelected()?e.indentSelection("add"):e.replaceSelection(" ","end")},transposeChars:function(e){var t=e.getCursor(),n=e.getLine(t.line);t.ch>0&&t.ch<n.length-1&&e.replaceRange(n.charAt(t.ch)+n.charAt(t.ch-1),{line:t.line,ch:t.ch-1},{line:t.line,ch:t.ch+1})},newlineAndIndent:function(e){e.replaceSelection("\n","end"),e.indentLine(e.getCursor().line)},toggleOverwrite:function(e){e.toggleOverwrite()}},rt=e.keyMap={};rt.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharRight",Backspace:"delCharLeft",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite"},rt.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Alt-Up":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Down":"goDocEnd","Ctrl-Left":"goWordLeft","Ctrl-Right":"goWordRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delWordLeft","Ctrl-Delete":"delWordRight","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore",fallthrough:"basic"},rt.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goWordLeft","Alt-Right":"goWordRight","Cmd-Left":"goLineStart","Cmd-Right":"goLineEnd","Alt-Backspace":"delWordLeft","Ctrl-Alt-Backspace":"delWordRight","Alt-Delete":"delWordRight","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore",fallthrough:["basic","emacsy"]},rt["default"]=J?rt.macDefault:rt.pcDefault,rt.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageUp","Shift-Ctrl-V":"goPageDown","Ctrl-D":"delCharRight","Ctrl-H":"delCharLeft","Alt-D":"delWordRight","Alt-Backspace":"delWordLeft","Ctrl-K":"killLine","Ctrl-T":"transposeChars"},e.fromTextArea=function(t,n){function r(){t.value=s.getValue()}if(n||(n={}),n.value=t.value,!n.tabindex&&t.tabindex&&(n.tabindex=t.tabindex),null==n.autofocus){var i=document.body;try{i=document.activeElement}catch(o){}n.autofocus=i==t||null!=t.getAttribute("autofocus")&&i==document.body}if(t.form){var l=D(t.form,"submit",r,!0);if("function"==typeof t.form.submit){var a=t.form.submit;t.form.submit=function u(){r(),t.form.submit=a,t.form.submit(),t.form.submit=u}}}t.style.display="none";var s=e(function(e){t.parentNode.insertBefore(e,t.nextSibling)},n);return s.save=r,s.getTextArea=function(){return t},s.toTextArea=function(){r(),t.parentNode.removeChild(s.getWrapperElement()),t.style.display="",t.form&&(l(),"function"==typeof t.form.submit&&(t.form.submit=a))},s};var it=/gecko\/\d{7}/i.test(navigator.userAgent),ot=/MSIE \d/.test(navigator.userAgent),lt=/MSIE [1-7]\b/.test(navigator.userAgent),at=/MSIE [1-8]\b/.test(navigator.userAgent),st=ot&&5==document.documentMode,ut=/WebKit\//.test(navigator.userAgent),ft=/Chrome\//.test(navigator.userAgent),ct=/Opera\//.test(navigator.userAgent),ht=/Apple Computer/.test(navigator.vendor),dt=/KHTML\//.test(navigator.userAgent),pt=/Mac OS X 10\D([7-9]|\d\d)\D/.test(navigator.userAgent);e.copyState=i,e.startState=o,e.innerMode=function(e,t){for(;e.innerMode;){var n=e.innerMode(t);t=n.state,e=n.mode}return n||{mode:e,state:t}},l.prototype={eol:function(){return this.pos>=this.string.length},sol:function(){return 0==this.pos},peek:function(){return this.string.charAt(this.pos)||void 0},next:function(){return this.pos<this.string.length?this.string.charAt(this.pos++):void 0},eat:function(e){var t=this.string.charAt(this.pos);if("string"==typeof e)var n=t==e;else var n=t&&(e.test?e.test(t):e(t));return n?(++this.pos,t):void 0},eatWhile:function(e){for(var t=this.pos;this.eat(e););return this.pos>t},eatSpace:function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},skipToEnd:function(){this.pos=this.string.length},skipTo:function(e){var t=this.string.indexOf(e,this.pos);return t>-1?(this.pos=t,!0):void 0},backUp:function(e){this.pos-=e},column:function(){return H(this.string,this.start,this.tabSize)},indentation:function(){return H(this.string,null,this.tabSize)},match:function(e,t,n){if("string"!=typeof e){var r=this.string.slice(this.pos).match(e);return r&&r.index>0?null:(r&&t!==!1&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e};return i(this.string).indexOf(i(e),this.pos)==this.pos?(t!==!1&&(this.pos+=e.length),!0):void 0},current:function(){return this.string.slice(this.start,this.pos)}},e.StringStream=l;var gt=" ";it||ot&&!lt?gt="​":ct&&(gt=""),v.prototype={update:function(e,t){this.text=e,this.stateAfter=this.styles=null,p(this),g(this,t)},highlight:function(e,t,n){var r=new l(this.text,n),i=this.styles||(this.styles=[]),o=i.length=0;for(""==this.text&&e.blankLine&&e.blankLine(t);!r.eol();){var a=e.token(r,t),s=r.current();if(r.start=r.pos,o&&i[o-1]==a?i[o-2]+=s:s&&(i[o++]=s,i[o++]=a),r.pos>5e3){i[o++]=this.text.slice(r.pos),i[o++]=null;break}}},process:function(e,t,n){var r=new l(this.text,n);for(""==this.text&&e.blankLine&&e.blankLine(t);!r.eol()&&r.pos<=5e3;)e.token(r,t),r.start=r.pos},getTokenAt:function(e,t,n,r){for(var i=this.text,o=new l(i,n);o.pos<r&&!o.eol();){o.start=o.pos;var a=e.token(o,t)}return{start:o.start,end:o.pos,string:o.current(),className:a||null,state:t}},indentation:function(e){return H(this.text,null,e)},getContent:function(e,t,n){function r(t,n,r){if(n){if(o&&ot&&" "==n.charAt(0)&&(n=" "+n.slice(1)),o=!1,a.test(n))for(var i=document.createDocumentFragment(),s=0;;){a.lastIndex=s;var u=a.exec(n),f=u?u.index-s:n.length-s;if(f&&(i.appendChild(document.createTextNode(n.slice(s,s+f))),l+=f),!u)break;if(s+=f+1," "==u[0]){var c=e-l%e;i.appendChild(V("span",I(c),"cm-tab")),l+=c}else{var h=V("span","•","cm-invalidchar");h.title="\\u"+u[0].charCodeAt(0).toString(16),i.appendChild(h),l+=1}}else{l+=n.length;var i=document.createTextNode(n)}r?t.appendChild(V("span",[i],r)):t.appendChild(i)}}function i(e){return e?"cm-"+e.replace(/ +/g," cm-"):null}var o=!0,l=0,a=/[\t\u0000-\u0019\u200b\u2028\u2029\uFEFF]/g,s=V("pre"),u=r;if(null!=t){var f=0,c=s.anchor=V("span");u=function(e,i,o){var l=i.length;if(t>=f&&f+l>t){t>f&&(r(e,i.slice(0,t-f),o),n&&e.appendChild(V("wbr"))),e.appendChild(c);var a=t-f;r(c,ct?i.slice(a,a+1):i.slice(a),o),ct&&r(e,i.slice(a+1),o),t--,f+=l}else f+=l,r(e,i,o),f==t&&f==g?($(c,gt),e.appendChild(c)):f>t+10&&/\s/.test(i)&&(u=function(){})}}var h=this.styles,d=this.text,p=this.markedSpans,g=d.length;if(d||null!=t)if(p&&p.length){p.sort(function(e,t){return e.from-t.from});for(var v,m=0,y=0,x="",C=p[0].from||0,b=[],S=0,k=function(){for(var e;S<p.length&&((e=p[S]).from==m||null==e.from);)"range"==e.marker.type&&b.push(e),++S;C=S<p.length?p[S].from:1/0;for(var t=0;t<b.length;++t){var n=b[t].to;null==n&&(n=1/0),n==m?b.splice(t--,1):C=Math.min(n,C)}};g>m;){C==m&&k();for(var w=Math.min(g,C);;){if(x){for(var M=m+x.length,T=v,A=0;A<b.length;++A){var L=b[A];T=(T?T+" ":"")+L.marker.style,L.marker.endStyle&&L.to===Math.min(M,w)&&(T+=" "+L.marker.endStyle),L.marker.startStyle&&L.from===m&&(T+=" "+L.marker.startStyle)}if(u(s,M>w?x.slice(0,w-m):x,T),M>=w){x=x.slice(w-m),m=w;break}m=M}x=h[y++],v=i(h[y++])}}}else for(var y=0,N=0;g>N;y+=2){var W=h[y],v=h[y+1],E=W.length;N+E>g&&(W=W.slice(0,g-N)),N+=E,u(s,W,i(v))}else u(s," ");return s},cleanUp:function(){this.parent=null,p(this)}},m.prototype={chunkSize:function(){return this.lines.length},remove:function(e,t,n){for(var r=e,i=e+t;i>r;++r){var o=this.lines[r];if(this.height-=o.height,o.cleanUp(),o.handlers)for(var l=0;l<o.handlers.length;++l)n.push(o.handlers[l])}this.lines.splice(e,t)},collapse:function(e){e.splice.apply(e,[e.length,0].concat(this.lines))},insertHeight:function(e,t,n){this.height+=n,this.lines=this.lines.slice(0,e).concat(t).concat(this.lines.slice(e));for(var r=0,i=t.length;i>r;++r)t[r].parent=this},iterN:function(e,t,n){for(var r=e+t;r>e;++e)if(n(this.lines[e]))return!0}},y.prototype={chunkSize:function(){return this.size},remove:function(e,t,n){this.size-=t;for(var r=0;r<this.children.length;++r){var i=this.children[r],o=i.chunkSize();if(o>e){var l=Math.min(t,o-e),a=i.height;if(i.remove(e,l,n),this.height-=a-i.height,o==l&&(this.children.splice(r--,1),i.parent=null),0==(t-=l))break;e=0}else e-=o}if(this.size-t<25){var s=[];this.collapse(s),this.children=[new m(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0,n=this.children.length;n>t;++t)this.children[t].collapse(e)},insert:function(e,t){for(var n=0,r=0,i=t.length;i>r;++r)n+=t[r].height;this.insertHeight(e,t,n)},insertHeight:function(e,t,n){this.size+=t.length,this.height+=n;for(var r=0,i=this.children.length;i>r;++r){var o=this.children[r],l=o.chunkSize();if(l>=e){if(o.insertHeight(e,t,n),o.lines&&o.lines.length>50){for(;o.lines.length>50;){var a=o.lines.splice(o.lines.length-25,25),s=new m(a);o.height-=s.height,this.children.splice(r+1,0,s),s.parent=this}this.maybeSpill()}break}e-=l}},maybeSpill:function(){if(!(this.children.length<=10)){var e=this;do{var t=e.children.splice(e.children.length-5,5),n=new y(t);if(e.parent){e.size-=n.size,e.height-=n.height;var r=j(e.parent.children,e);e.parent.children.splice(r+1,0,n)}else{var i=new y(e.children);i.parent=e,e.children=[i,n],e=i}n.parent=e.parent}while(e.children.length>10);e.parent.maybeSpill()}},iter:function(e,t,n){this.iterN(e,t-e,n)},iterN:function(e,t,n){for(var r=0,i=this.children.length;i>r;++r){var o=this.children[r],l=o.chunkSize();if(l>e){var a=Math.min(t,l-e);if(o.iterN(e,a,n))return!0;if(0==(t-=a))break;e=0}else e-=l}}},k.prototype={addChange:function(e,t,n){this.undone.length=0;var r=+new Date,i=P(this.done),o=i&&P(i),l=r-this.time;if(this.compound&&i&&!this.closed)i.push({start:e,added:t,old:n});else if(l>400||!o||this.closed||o.start>e+n.length||o.start+o.added<e)this.done.push([{start:e,added:t,old:n}]),this.closed=!1;else{for(var a=Math.max(0,o.start-e),s=Math.max(0,e+n.length-(o.start+o.added)),u=a;u>0;--u)o.old.unshift(n[u-1]);for(var u=s;u>0;--u)o.old.push(n[n.length-u]);a&&(o.start=e),o.added+=t-(n.length-a-s)}this.time=r},startCompound:function(){this.compound++||(this.closed=!0)},endCompound:function(){--this.compound||(this.closed=!0)}},e.e_stop=L,e.e_preventDefault=T,e.e_stopPropagation=A,e.connect=D,z.prototype={set:function(e,t){clearTimeout(this.id),this.id=setTimeout(t,e)}};var vt=e.Pass={toString:function(){return"CodeMirror.Pass"}},mt=function(){if(at)return!1;var e=V("div");return"draggable"in e||"dragDrop"in e}();!function(){var e=V("textarea");return e.value="foo\nbar",e.value.indexOf("\r")>-1?"\r\n":"\n"}();var yt=/^$/;it?yt=/$'/:ht?yt=/\-[^ \-?]|\?[^ !'\"\),.\-\/:;\?\]\}]/:ft&&(yt=/\-[^ \-\.?]|\?[^ \-\.?\]\}:;!'\"\),\/]|[\.!\"#&%\)*+,:;=>\]|\}~][\(\{\[<]|\$'/);var xt=[""],Ct=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;r>=t;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),l=o.indexOf("\r");-1!=l?(n.push(o.slice(0,l)),t+=l+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)};e.splitLines=Ct;var bt=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(t){return!1}}:function(e){try{var t=e.ownerDocument.selection.createRange()}catch(n){}return t&&t.parentElement()==e?0!=t.compareEndPoints("StartToEnd",t):!1};e.defineMode("null",function(){return{token:function(e){e.skipToEnd()}}}),e.defineMIME("text/plain","null");var St={3:"Enter",8:"Backspace",9:"Tab",13:"Enter",16:"Shift",17:"Ctrl",18:"Alt",19:"Pause",20:"CapsLock",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"PrintScrn",45:"Insert",46:"Delete",59:";",91:"Mod",92:"Mod",93:"Mod",109:"-",107:"=",127:"Delete",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'",63276:"PageUp",63277:"PageDown",63275:"End",63273:"Home",63234:"Left",63232:"Up",63235:"Right",63233:"Down",63302:"Insert",63272:"Delete"};return e.keyNames=St,function(){for(var e=0;10>e;e++)St[e+48]=String(e);for(var e=65;90>=e;e++)St[e]=String.fromCharCode(e);for(var e=1;12>=e;e++)St[e+111]=St[e+63235]="F"+e}(),e.version="2.34",e}();
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Tag-closer extension for CodeMirror.
3
+ *
4
+ * This extension adds a "closeTag" utility function that can be used with key bindings to
5
+ * insert a matching end tag after the ">" character of a start tag has been typed. It can
6
+ * also complete "</" if a matching start tag is found. It will correctly ignore signal
7
+ * characters for empty tags, comments, CDATA, etc.
8
+ *
9
+ * The function depends on internal parser state to identify tags. It is compatible with the
10
+ * following CodeMirror modes and will ignore all others:
11
+ * - htmlmixed
12
+ * - xml
13
+ *
14
+ * See demos/closetag.html for a usage example.
15
+ *
16
+ * @author Nathan Williams <nathan@nlwillia.net>
17
+ * Contributed under the same license terms as CodeMirror.
18
+ */
19
+
20
+ !function(){function e(e,t){return CodeMirror.innerMode(e.getMode(),t).state}function t(e,t,r,o){n(e,t,o)?(e.replaceSelection("\n\n</"+o+">","end"),e.indentLine(r.line+1),e.indentLine(r.line+2),e.setCursor({line:r.line+1,ch:e.getLine(r.line+1).length})):(e.replaceSelection("</"+o+">"),e.setCursor(r))}function n(e,t,n){return("undefined"==typeof t||null==t||1==t)&&(t=e.getOption("closeTagIndent")),t||(t=[]),-1!=o(t,n.toLowerCase())}function r(e,t,n){return"xml"==e.getOption("mode")?!0:(("undefined"==typeof t||null==t)&&(t=e.getOption("closeTagVoid")),t||(t=[]),-1==o(t,n.toLowerCase()))}function o(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;r>n;++n)if(e[n]==t)return n;return-1}function i(e,t,n){e.replaceSelection("/"+n+">"),e.setCursor({line:t.line,ch:t.ch+n.length+2})}CodeMirror.defaults.closeTagEnabled=!0,CodeMirror.defaults.closeTagIndent=["applet","blockquote","body","button","div","dl","fieldset","form","frameset","h1","h2","h3","h4","h5","h6","head","html","iframe","layer","legend","object","ol","p","select","table","ul"],CodeMirror.defaults.closeTagVoid=["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"],CodeMirror.defineExtension("closeTag",function(n,o,l,a){if(!n.getOption("closeTagEnabled"))throw CodeMirror.Pass;var s=n.getCursor(),c=n.getTokenAt(s),d=e(n,c.state);if(d)if(">"==o){var f=d.type;if("tag"==c.className&&"closeTag"==f)throw CodeMirror.Pass;if(n.replaceSelection(">"),s={line:s.line,ch:s.ch+1},n.setCursor(s),c=n.getTokenAt(n.getCursor()),d=e(n,c.state),!d)throw CodeMirror.Pass;var f=d.type;if("tag"==c.className&&"selfcloseTag"!=f){var u=d.tagName;return u.length>0&&r(n,a,u)&&t(n,l,s,u),void 0}n.setSelection({line:s.line,ch:s.ch-1},s),n.replaceSelection("")}else if("/"==o&&"tag"==c.className&&"<"==c.string){var g=d.context,u=g?g.tagName:"";if(u.length>0)return i(n,s,u),void 0}throw CodeMirror.Pass})}();
@@ -0,0 +1,24 @@
1
+ .CodeMirror-dialog {
2
+ position: relative;
3
+ }
4
+ .CodeMirror-dialog > div {
5
+ position: absolute;
6
+ top: 0; left: 0; right: 0;
7
+ background: white;
8
+ border-bottom: 1px solid #eee;
9
+ z-index: 15;
10
+ padding: .1em .8em;
11
+ overflow: hidden;
12
+ color: #333;
13
+ }
14
+ .CodeMirror-dialog input {
15
+ border: none;
16
+ outline: none;
17
+ background: transparent;
18
+ width: 20em;
19
+ color: inherit;
20
+ font-family: monospace;
21
+ }
22
+ .CodeMirror-dialog button {
23
+ font-size: 70%;
24
+ }
@@ -0,0 +1 @@
1
+ !function(){function e(e,o){var n=e.getWrapperElement(),r=n.insertBefore(document.createElement("div"),n.firstChild);return r.className="CodeMirror-dialog",r.innerHTML="<div>"+o+"</div>",r}CodeMirror.defineExtension("openDialog",function(o,n){function r(){c||(c=!0,i.parentNode.removeChild(i))}var t,i=e(this,o),c=!1,u=this,d=i.getElementsByTagName("input")[0];return d?(CodeMirror.connect(d,"keydown",function(e){(13==e.keyCode||27==e.keyCode)&&(CodeMirror.e_stop(e),r(),u.focus(),13==e.keyCode&&n(d.value))}),d.focus(),CodeMirror.connect(d,"blur",r)):(t=i.getElementsByTagName("button")[0])&&(CodeMirror.connect(t,"click",function(){r(),u.focus()}),t.focus(),CodeMirror.connect(t,"blur",r)),r}),CodeMirror.defineExtension("openConfirm",function(o,n){function r(){c||(c=!0,t.parentNode.removeChild(t),u.focus())}var t=e(this,o),i=t.getElementsByTagName("button"),c=!1,u=this,d=1;i[0].focus();for(var f=0;f<i.length;++f){var s=i[f];!function(e){CodeMirror.connect(s,"click",function(o){CodeMirror.e_preventDefault(o),r(),e&&e(u)})}(n[f]),CodeMirror.connect(s,"blur",function(){--d,setTimeout(function(){0>=d&&r()},200)}),CodeMirror.connect(s,"focus",function(){++d})}})}();
@@ -0,0 +1,5 @@
1
+ // the tagRangeFinder function is
2
+ // Copyright (C) 2011 by Daniel Glazman <daniel@glazman.org>
3
+ // released under the MIT license (../../LICENSE) like the rest of CodeMirror
4
+
5
+ CodeMirror.tagRangeFinder=function(e,n,r){for(var i="A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",t=i+"-:.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040",a=new RegExp("^["+i+"]["+t+"]*"),u=e.getLine(n),f=!1,o=null,l=0;!f;){if(l=u.indexOf("<",l),-1==l)return;if(l+1<u.length&&"/"==u[l+1])l++;else if(u.substr(l+1).match(a)){var s=u.indexOf(">",l+1);if(-1==s){for(var d=n+1,v=!1,g=e.lineCount();g>d&&!v;){var F=e.getLine(d),c=F.indexOf(">");if(-1!=c){v=!0;var h=F.lastIndexOf("/",c);if(-1!=h&&c>h){var x=u.substr(h,c-h+1);if(!x.match(/\/\s*\>/))return r===!0&&d++,d}}d++}f=!0}else{var b=u.lastIndexOf("/",s);if(-1==b)f=!0;else{var x=u.substr(b,s-b+1);x.match(/\/\s*\>/)||(f=!0)}}if(f){var p=u.substr(l+1);o=p.match(a),o?(o=o[0],-1!=u.indexOf("</"+o+">",l)&&(f=!1)):f=!1}f||l++}else l++}if(f)for(var C="(\\<\\/"+o+"\\>)|(\\<"+o+"\\>)|(\\<"+o+"\\s)|(\\<"+o+"$)",O=new RegExp(C,"g"),m="</"+o+">",L=1,d=n+1,g=e.lineCount();g>d;){u=e.getLine(d);var k=u.match(O);if(k)for(var D=0;D<k.length;D++)if(k[D]==m?L--:L++,!L)return r===!0&&d++,d;d++}else;},CodeMirror.braceRangeFinder=function(e,n,r){for(var i,t,a=e.getLine(n),u=a.length;;){var f=a.lastIndexOf("{",u);if(0>f)break;if(t=e.getTokenAt({line:n,ch:f}).className,!/^(comment|string)/.test(t)){i=f;break}u=f-1}if(!(null==i||a.lastIndexOf("}")>i)){var o,l=1,s=e.lineCount();e:for(var d=n+1;s>d;++d)for(var v=e.getLine(d),g=0;;){var F=v.indexOf("{",g),c=v.indexOf("}",g);if(0>F&&(F=v.length),0>c&&(c=v.length),g=Math.min(F,c),g==v.length)break;if(e.getTokenAt({line:d,ch:g+1}).className==t)if(g==F)++l;else if(!--l){o=d;break e}++g}if(null!=o&&o!=n+1)return r===!0&&o++,o}},CodeMirror.indentRangeFinder=function(e,n){for(var r,i=e.getOption("tabSize"),t=e.getLineHandle(n).indentation(i),a=n+1,u=e.lineCount();u>a;++a){var f=e.getLineHandle(a);if(!/^\s*$/.test(f.text)){if(f.indentation(i)<=t)break;r=a}}return r?r+1:null},CodeMirror.newFoldFunction=function(e,n,r){function i(e,n){for(var r=0;r<a.length;++r){var i=e.lineInfo(a[r].start);if(i){if(i.line==n)return{pos:r,region:a[r]}}else a.splice(r--,1)}}function t(e,n){e.clearMarker(n.start);for(var r=0;r<n.hidden.length;++r)e.showLine(n.hidden[r])}var a=[];return null==n&&(n='<div style="position: absolute; left: 2px; color:#600">&#x25bc;</div>%N%'),function(u,f){u.operation(function(){var o=i(u,f);if(o)a.splice(o.pos,1),t(u,o.region);else{var l=e(u,f,r);if(null==l)return;for(var s=[],d=f+1;l>d;++d){var v=u.hideLine(d);v&&s.push(v)}var g=u.setMarker(f,n),F={start:g,hidden:s};u.onDeleteLine(g,function(){t(u,F)}),a.push(F)}})}};
@@ -0,0 +1 @@
1
+ !function(){function e(e){for(var n=[/for\s*?\((.*?)\)/,/\"(.*?)(\"|$)/,/\'(.*?)(\'|$)/,/\/\*(.*?)(\*\/|$)/,/\/\/.*/],r=[],t=0;t<n.length;t++)for(var o=0;o<e.length;){var a=e.substr(o).match(n[t]);if(null==a)break;r.push({start:o+a.index,end:o+a.index+a[0].length}),o+=a.index+Math.max(1,a[0].length)}return r.sort(function(e,n){return e.start-n.start}),r}function n(e,n){return CodeMirror.innerMode(e.getMode(),e.getTokenAt(n).state).mode}function r(e,n,r,t){var o=e.getMode(),a=e.getLine(n);if(null==t&&(t=a.length),!o.innerMode)return[{from:r,to:t,mode:o}];var i=e.getTokenAt({line:n,ch:r}).state,s=CodeMirror.innerMode(o,i).mode,d=[],c=new CodeMirror.StringStream(a);for(c.pos=c.start=r;;){o.token(c,i);var m=CodeMirror.innerMode(o,i).mode;if(m!=s){var l=c.start;"xml"==s.name&&">"==a.charAt(c.pos-1)&&(l=c.pos),d.push({from:r,to:l,mode:s}),r=l,s=m}if(c.pos>=t)break;c.start=c.pos}return t>r&&d.push({from:r,to:t,mode:s}),d}CodeMirror.extendMode("css",{commentStart:"/*",commentEnd:"*/",wordWrapChars:[";","\\{","\\}"],autoFormatLineBreaks:function(e){return e.replace(new RegExp("(;|\\{|\\})([^\r\n])","g"),"$1\n$2")}}),CodeMirror.extendMode("javascript",{commentStart:"/*",commentEnd:"*/",wordWrapChars:[";","\\{","\\}"],autoFormatLineBreaks:function(n){var r=0,t=/(;|\{|\})([^\r\n;])/g,o=e(n);if(null!=o){for(var a="",i=0;i<o.length;i++)o[i].start>r&&(a+=n.substring(r,o[i].start).replace(t,"$1\n$2"),r=o[i].start),o[i].start<=r&&o[i].end>=r&&(a+=n.substring(r,o[i].end),r=o[i].end);return r<n.length&&(a+=n.substr(r).replace(t,"$1\n$2")),a}return n.replace(t,"$1\n$2")}}),CodeMirror.extendMode("xml",{commentStart:"<!--",commentEnd:"-->",wordWrapChars:[">"],autoFormatLineBreaks:function(e){for(var n=e.split("\n"),r=new RegExp("(^\\s*?<|^[^<]*?)(.+)(>\\s*?$|[^>]*?$)"),t=new RegExp("<","g"),o=new RegExp("(>)([^\r\n])","g"),a=0;a<n.length;a++){var i=n[a].match(r);null!=i&&i.length>3&&(n[a]=i[1]+i[2].replace(t,"\n$&").replace(o,"$1\n$2")+i[3])}return n.join("\n")}}),CodeMirror.defineExtension("commentRange",function(e,r,t){var o=n(this,r),a=this;this.operation(function(){if(e)a.replaceRange(o.commentEnd,t),a.replaceRange(o.commentStart,r),r.line==t.line&&r.ch==t.ch&&a.setCursor(r.line,r.ch+o.commentStart.length);else{var n=a.getRange(r,t),i=n.indexOf(o.commentStart),s=n.lastIndexOf(o.commentEnd);i>-1&&s>-1&&s>i&&(n=n.substr(0,i)+n.substring(i+o.commentStart.length,s)+n.substr(s+o.commentEnd.length)),a.replaceRange(n,r,t)}})}),CodeMirror.defineExtension("autoIndentRange",function(e,n){var r=this;this.operation(function(){for(var t=e.line;t<=n.line;t++)r.indentLine(t,"smart")})}),CodeMirror.defineExtension("autoFormatRange",function(e,n){var t=this;t.operation(function(){for(var o=e.line,a=n.line;a>=o;++o){for(var i={line:o,ch:o==e.line?e.ch:0},s={line:o,ch:o==a?n.ch:null},d=r(t,o,i.ch,s.ch),c="",m=t.getRange(i,s),l=0;l<d.length;++l){var u=d.length>1?m.slice(d[l].from,d[l].to):m;c&&(c+="\n"),c+=d[l].mode.autoFormatLineBreaks?d[l].mode.autoFormatLineBreaks(u):m}if(c!=m){for(var f=0,g=c.indexOf("\n");-1!=g;g=c.indexOf("\n",g+1),++f);t.replaceRange(c,i,s),o+=f,a+=f}}for(var o=e.line+1;a>=o;++o)t.indentLine(o,"smart");t.setSelection(e,t.getCursor(!1))})})}();
@@ -0,0 +1 @@
1
+ !function(){function t(t,e){for(var n=0,r=t.length;r>n;++n)e(t[n])}function e(t,e){if(!Array.prototype.indexOf){for(var n=t.length;n--;)if(t[n]===e)return!0;return!1}return-1!=t.indexOf(e)}function n(t,e,n){var r=t.getCursor(),s=n(t,r),a=s;for(/^[\w$_]*$/.test(s.string)||(s=a={start:r.ch,end:r.ch,string:"",state:s.state,className:"."==s.string?"property":null});"property"==a.className;){if(a=n(t,{line:r.line,ch:a.start}),"."!=a.string)return;if(a=n(t,{line:r.line,ch:a.start}),")"==a.string){var o=1;do switch(a=n(t,{line:r.line,ch:a.start}),a.string){case")":o++;break;case"(":o--}while(o>0);if(a=n(t,{line:r.line,ch:a.start}),"variable"!=a.className)return;a.className="function"}if(!l)var l=[];l.push(a)}return{list:i(s,l,e),from:{line:r.line,ch:s.start},to:{line:r.line,ch:s.end}}}function r(t,e){var n=t.getTokenAt(e);return e.ch==n.start+1&&"."==n.string.charAt(0)?(n.end=n.start,n.string=".",n.className="property"):/^\.[\w$_]*$/.test(n.string)&&(n.className="property",n.start++,n.string=n.string.replace(/\./,"")),n}function i(n,r,i){function l(t){0!=t.indexOf(u)||e(f,t)||f.push(t)}function c(e){"string"==typeof e?t(s,l):e instanceof Array?t(a,l):e instanceof Function&&t(o,l);for(var n in e)l(n)}var f=[],u=n.string;if(r){var p,h=r.pop();for("variable"==h.className?p=window[h.string]:"string"==h.className?p="":"atom"==h.className?p=1:"function"==h.className&&(null==window.jQuery||"$"!=h.string&&"jQuery"!=h.string||"function"!=typeof window.jQuery?null!=window._&&"_"==h.string&&"function"==typeof window._&&(p=window._()):p=window.jQuery());null!=p&&r.length;)p=p[r.pop().string];null!=p&&c(p)}else{for(var d=n.state.localVars;d;d=d.next)l(d.name);c(window),t(i,l)}return f}CodeMirror.javascriptHint=function(t){return n(t,l,function(t,e){return t.getTokenAt(e)})},CodeMirror.coffeescriptHint=function(t){return n(t,c,r)};var s="charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight toUpperCase toLowerCase split concat match replace search".split(" "),a="length concat join splice push pop shift unshift slice reverse sort indexOf lastIndexOf every some filter forEach map reduce reduceRight ".split(" "),o="prototype apply call bind".split(" "),l="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".split(" "),c="and break catch class continue delete do else extends false finally for if in instanceof isnt new no not null of off on or return switch then throw true try typeof until void while with yes".split(" ")}();
@@ -0,0 +1 @@
1
+ !function(){function r(r,e){var o=e;return function(){0==--o&&r()}}function e(e,o){var n=CodeMirror.modes[e].dependencies;if(!n)return o();for(var t=[],i=0;i<n.length;++i)CodeMirror.modes.hasOwnProperty(n[i])||t.push(n[i]);if(!t.length)return o();for(var d=r(o,t.length),i=0;i<t.length;++i)CodeMirror.requireMode(t[i],d)}CodeMirror.modeURL||(CodeMirror.modeURL="../mode/%N/%N.js");var o={};CodeMirror.requireMode=function(r,n){if("string"!=typeof r&&(r=r.name),CodeMirror.modes.hasOwnProperty(r))return e(r,n);if(o.hasOwnProperty(r))return o[r].push(n);var t=document.createElement("script");t.src=CodeMirror.modeURL.replace(/%N/g,r);var i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(t,i);var d=o[r]=[n],a=0,u=setInterval(function(){return++a>100?clearInterval(u):(CodeMirror.modes.hasOwnProperty(r)&&(clearInterval(u),o[r]=null,e(r,function(){for(var r=0;r<d.length;++r)d[r]()})),void 0)},200)},CodeMirror.autoLoadMode=function(r,e){CodeMirror.modes.hasOwnProperty(e)||CodeMirror.requireMode(e,function(){r.setOption("mode",r.getOption("mode"))})}}();
@@ -0,0 +1 @@
1
+ !function(){function e(){this.marked=[]}function t(t){return t._matchHighlightState||(t._matchHighlightState=new e)}function n(e){for(var n=t(e),r=0;r<n.marked.length;++r)n.marked[r].clear();n.marked=[]}function r(e,r,o){if(n(e),o="undefined"!=typeof o?o:i,e.somethingSelected()&&e.getSelection().replace(/^\s+|\s+$/g,"").length>=o){var a=t(e),c=e.getSelection();e.operation(function(){if(e.lineCount()<2e3)for(var t=e.getSearchCursor(c);t.findNext();)(t.from().line!==e.getCursor(!0).line||t.from().ch!==e.getCursor(!0).ch)&&a.marked.push(e.markText(t.from(),t.to(),r))})}}var i=2;CodeMirror.defineExtension("matchHighlight",function(e,t){r(this,e,t)})}();
@@ -0,0 +1 @@
1
+ CodeMirror.multiplexingMode=function(e){function n(e,n,r){if("string"==typeof n)return e.indexOf(n,r);var t=n.exec(r?e.slice(r):e);return t?t.index+r:-1}var r=Array.prototype.slice.call(arguments,1),t=r.length;return{startState:function(){return{outer:CodeMirror.startState(e),innerActive:null,inner:null}},copyState:function(n){return{outer:CodeMirror.copyState(e,n.outer),innerActive:n.innerActive,inner:n.innerActive&&CodeMirror.copyState(n.innerActive.mode,n.inner)}},token:function(i,o){if(o.innerActive){var c=o.innerActive,u=i.string,a=n(u,c.close,i.pos);if(a==i.pos)return i.match(c.close),o.innerActive=o.inner=null,c.delimStyle;a>-1&&(i.string=u.slice(0,a));var s=c.mode.token(i,o.inner);a>-1&&(i.string=u);var d=i.current(),a=d.indexOf(c.close);return a>-1&&i.backUp(d.length-a),s}for(var l=1/0,u=i.string,v=0;t>v;++v){var f=r[v],a=n(u,f.open,i.pos);if(a==i.pos)return i.match(f.open),o.innerActive=f,o.inner=CodeMirror.startState(f.mode,e.indent?e.indent(o.outer,""):0),f.delimStyle;-1!=a&&l>a&&(l=a)}1/0!=l&&(i.string=u.slice(0,l));var p=e.token(i,o.outer);return 1/0!=l&&(i.string=u),p},indent:function(n,r){var t=n.innerActive?n.innerActive.mode:e;return t.indent?t.indent(n.innerActive?n.inner:n.outer,r):CodeMirror.Pass},electricChars:e.electricChars,innerMode:function(n){return n.inner?{state:n.inner,mode:n.innerActive.mode}:{state:n.outer,mode:e}}}};
@@ -0,0 +1 @@
1
+ CodeMirror.overlayMode=CodeMirror.overlayParser=function(r,e,o){return{startState:function(){return{base:CodeMirror.startState(r),overlay:CodeMirror.startState(e),basePos:0,baseCur:null,overlayPos:0,overlayCur:null}},copyState:function(o){return{base:CodeMirror.copyState(r,o.base),overlay:CodeMirror.copyState(e,o.overlay),basePos:o.basePos,baseCur:null,overlayPos:o.overlayPos,overlayCur:null}},token:function(a,s){return a.start==s.basePos&&(s.baseCur=r.token(a,s.base),s.basePos=a.pos),a.start==s.overlayPos&&(a.pos=a.start,s.overlayCur=e.token(a,s.overlay),s.overlayPos=a.pos),a.pos=Math.min(s.basePos,s.overlayPos),a.eol()&&(s.basePos=s.overlayPos=0),null==s.overlayCur?s.baseCur:null!=s.baseCur&&o?s.baseCur+" "+s.overlayCur:s.overlayCur},indent:r.indent&&function(e,o){return r.indent(e.base,o)},electricChars:r.electricChars,innerMode:function(e){return{state:e.base,mode:r}}}};
@@ -0,0 +1 @@
1
+ !function(){function O(O,T){for(var n=0,t=O.length;t>n;++n)T(O[n])}function T(O,T){if(!Array.prototype.indexOf){for(var n=O.length;n--;)if(O[n]===T)return!0;return!1}return-1!=O.indexOf(T)}function n(O,T,n){var E=O.getCursor(),I=n(O,E),A=I;if(/^[\w$_]*$/.test(I.string)||(I=A={start:E.ch,end:E.ch,string:"",state:I.state,className:":"==I.string?"pig-type":null}),!S)var S=[];S.push(A);var N=t(I,S);return N=N.sort(),1==N.length&&N.push(" "),{list:N,from:{line:E.line,ch:I.start},to:{line:E.line,ch:I.end}}}function t(n,t){function E(O){0!=O.indexOf(L)||T(e,O)||e.push(O)}function S(T){":"==T?O(o,E):(O(R,E),O(i,E),O(r,E),O(N,E),O(o,E),O(I,E),O(A,E))}var e=[],L=n.string;if(t){var M,a=t.pop();for("pig-word"==a.className?M=a.string:"pig-type"==a.className&&(M=":"+a.string);null!=M&&t.length;)M=M[t.pop().string];null!=M&&S(M)}return e}CodeMirror.pigHint=function(O){return n(O,I,function(O,T){return O.getTokenAt(T)})};var E="VOID IMPORT RETURNS DEFINE LOAD FILTER FOREACH ORDER CUBE DISTINCT COGROUP JOIN CROSS UNION SPLIT INTO IF OTHERWISE ALL AS BY USING INNER OUTER ONSCHEMA PARALLEL PARTITION GROUP AND OR NOT GENERATE FLATTEN ASC DESC IS STREAM THROUGH STORE MAPREDUCE SHIP CACHE INPUT OUTPUT STDERROR STDIN STDOUT LIMIT SAMPLE LEFT RIGHT FULL EQ GT LT GTE LTE NEQ MATCHES TRUE FALSE",I=E.split(" "),A=E.toLowerCase().split(" "),S="BOOLEAN INT LONG FLOAT DOUBLE CHARARRAY BYTEARRAY BAG TUPLE MAP",N=S.split(" "),o=S.toLowerCase().split(" "),e="ABS ACOS ARITY ASIN ATAN AVG BAGSIZE BINSTORAGE BLOOM BUILDBLOOM CBRT CEIL CONCAT COR COS COSH COUNT COUNT_STAR COV CONSTANTSIZE CUBEDIMENSIONS DIFF DISTINCT DOUBLEABS DOUBLEAVG DOUBLEBASE DOUBLEMAX DOUBLEMIN DOUBLEROUND DOUBLESUM EXP FLOOR FLOATABS FLOATAVG FLOATMAX FLOATMIN FLOATROUND FLOATSUM GENERICINVOKER INDEXOF INTABS INTAVG INTMAX INTMIN INTSUM INVOKEFORDOUBLE INVOKEFORFLOAT INVOKEFORINT INVOKEFORLONG INVOKEFORSTRING INVOKER ISEMPTY JSONLOADER JSONMETADATA JSONSTORAGE LAST_INDEX_OF LCFIRST LOG LOG10 LOWER LONGABS LONGAVG LONGMAX LONGMIN LONGSUM MAX MIN MAPSIZE MONITOREDUDF NONDETERMINISTIC OUTPUTSCHEMA PIGSTORAGE PIGSTREAMING RANDOM REGEX_EXTRACT REGEX_EXTRACT_ALL REPLACE ROUND SIN SINH SIZE SQRT STRSPLIT SUBSTRING SUM STRINGCONCAT STRINGMAX STRINGMIN STRINGSIZE TAN TANH TOBAG TOKENIZE TOMAP TOP TOTUPLE TRIM TEXTLOADER TUPLESIZE UCFIRST UPPER UTF8STORAGECONVERTER",R=e.split(" ").join("() ").split(" "),i=e.toLowerCase().split(" ").join("() ").split(" "),r="BagSize BinStorage Bloom BuildBloom ConstantSize CubeDimensions DoubleAbs DoubleAvg DoubleBase DoubleMax DoubleMin DoubleRound DoubleSum FloatAbs FloatAvg FloatMax FloatMin FloatRound FloatSum GenericInvoker IntAbs IntAvg IntMax IntMin IntSum InvokeForDouble InvokeForFloat InvokeForInt InvokeForLong InvokeForString Invoker IsEmpty JsonLoader JsonMetadata JsonStorage LongAbs LongAvg LongMax LongMin LongSum MapSize MonitoredUDF Nondeterministic OutputSchema PigStorage PigStreaming StringConcat StringMax StringMin StringSize TextLoader TupleSize Utf8StorageConverter".split(" ").join("() ").split(" ")}();
@@ -0,0 +1 @@
1
+ function splitLines(t){return t.split(/\r?\n|\r/)}function StringStream(t){this.pos=this.start=0,this.string=t}StringStream.prototype={eol:function(){return this.pos>=this.string.length},sol:function(){return 0==this.pos},peek:function(){return this.string.charAt(this.pos)||null},next:function(){return this.pos<this.string.length?this.string.charAt(this.pos++):void 0},eat:function(t){var s=this.string.charAt(this.pos);if("string"==typeof t)var n=s==t;else var n=s&&(t.test?t.test(s):t(s));return n?(++this.pos,s):void 0},eatWhile:function(t){for(var s=this.pos;this.eat(t););return this.pos>s},eatSpace:function(){for(var t=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>t},skipToEnd:function(){this.pos=this.string.length},skipTo:function(t){var s=this.string.indexOf(t,this.pos);return s>-1?(this.pos=s,!0):void 0},backUp:function(t){this.pos-=t},column:function(){return this.start},indentation:function(){return 0},match:function(t,s,n){function r(t){return n?t.toLowerCase():t}if("string"!=typeof t){var i=this.string.slice(this.pos).match(t);return i&&s!==!1&&(this.pos+=i[0].length),i}return r(this.string).indexOf(r(t),this.pos)==this.pos?(s!==!1&&(this.pos+=t.length),!0):void 0},current:function(){return this.string.slice(this.start,this.pos)}},exports.StringStream=StringStream,exports.startState=function(t,s,n){return t.startState?t.startState(s,n):!0};var modes=exports.modes={},mimeModes=exports.mimeModes={};exports.defineMode=function(t,s){modes[t]=s},exports.defineMIME=function(t,s){mimeModes[t]=s},exports.getMode=function(t,s){if("string"==typeof s&&mimeModes.hasOwnProperty(s)&&(s=mimeModes[s]),"string"==typeof s)var n=s,r={};else if(null!=s)var n=s.name,r=s;var i=modes[n];if(!i)throw new Error("Unknown mode: "+s);return i(t,r||{})},exports.runMode=function(t,s,n){for(var r=exports.getMode({indentUnit:2},s),i=splitLines(t),e=exports.startState(r),o=0,h=i.length;h>o;++o){o&&n("\n");for(var p=new exports.StringStream(i[o]);!p.eol();){var a=r.token(p,e);n(p.current(),a,o,p.start),p.start=p.pos}}};
@@ -0,0 +1 @@
1
+ CodeMirror.runMode=function(r,e,o,n){function t(r){return r.replace(/[<&]/,function(r){return"<"==r?"&lt;":"&amp;"})}var i=CodeMirror.getMode(CodeMirror.defaults,e),a=1==o.nodeType,s=n&&n.tabSize||CodeMirror.defaults.tabSize;if(a){var d=o,f=[],u=0;o=function(r,e){if("\n"==r)return f.push("<br>"),u=0,void 0;for(var o="",n=0;;){var i=r.indexOf(" ",n);if(-1==i){o+=t(r.slice(n)),u+=r.length-n;break}u+=i-n,o+=t(r.slice(n,i));var a=s-u%s;u+=a;for(var d=0;a>d;++d)o+=" ";n=i+1}e?f.push('<span class="cm-'+t(e)+'">'+o+"</span>"):f.push(o)}}for(var l=CodeMirror.splitLines(r),c=CodeMirror.startState(i),p=0,v=l.length;v>p;++p){p&&o("\n");for(var M=new CodeMirror.StringStream(l[p]);!M.eol();){var C=i.token(M,c);o(M.current(),C,p,M.start),M.start=M.pos}}a&&(d.innerHTML=f.join(""))};
@@ -0,0 +1 @@
1
+ !function(){function e(){this.posFrom=this.posTo=this.query=null,this.marked=[]}function o(o){return o._searchState||(o._searchState=new e)}function n(e,o,n){return e.getSearchCursor(o,n,"string"==typeof o&&o==o.toLowerCase())}function r(e,o,n,r){e.openDialog?e.openDialog(o,r):r(prompt(n,""))}function t(e,o,n,r){e.openConfirm?e.openConfirm(o,r):confirm(n)&&r[0]()}function i(e){var o=e.match(/^\/(.*)\/([a-z]*)$/);return o?new RegExp(o[1],-1==o[2].indexOf("i")?"":"i"):e}function c(e,t){var c=o(e);return c.query?a(e,t):(r(e,p,"Search for:",function(o){e.operation(function(){if(o&&!c.query){if(c.query=i(o),e.lineCount()<2e3)for(var r=n(e,c.query);r.findNext();)c.marked.push(e.markText(r.from(),r.to(),"CodeMirror-searching"));c.posFrom=c.posTo=e.getCursor(),a(e,t)}})}),void 0)}function a(e,r){e.operation(function(){var t=o(e),i=n(e,t.query,r?t.posFrom:t.posTo);(i.find(r)||(i=n(e,t.query,r?{line:e.lineCount()-1}:{line:0,ch:0}),i.find(r)))&&(e.setSelection(i.from(),i.to()),t.posFrom=i.from(),t.posTo=i.to())})}function f(e){e.operation(function(){var n=o(e);if(n.query){n.query=null;for(var r=0;r<n.marked.length;++r)n.marked[r].clear();n.marked.length=0}})}function u(e,o){r(e,s,"Replace:",function(c){c&&(c=i(c),r(e,l,"Replace with:",function(r){function i(){var o,r=u.from();!(o=u.findNext())&&(u=n(e,c),!(o=u.findNext())||r&&u.from().line==r.line&&u.from().ch==r.ch)||(e.setSelection(u.from(),u.to()),t(e,m,"Replace?",[function(){a(o)},i]))}function a(e){u.replace("string"==typeof c?r:r.replace(/\$(\d)/,function(o,n){return e[n]})),i()}if(o)e.compoundChange(function(){e.operation(function(){for(var o=n(e,c);o.findNext();)if("string"!=typeof c){var t=e.getRange(o.from(),o.to()).match(c);o.replace(r.replace(/\$(\d)/,function(e,o){return t[o]}))}else o.replace(r)})});else{f(e);var u=n(e,c,e.getCursor());i()}}))})}var p='Search: <input type="text" style="width: 10em"/> <span style="color: #888">(Use /re/ syntax for regexp search)</span>',s='Replace: <input type="text" style="width: 10em"/> <span style="color: #888">(Use /re/ syntax for regexp search)</span>',l='With: <input type="text" style="width: 10em"/>',m="Replace? <button>Yes</button> <button>No</button> <button>Stop</button>";CodeMirror.commands.find=function(e){f(e),c(e)},CodeMirror.commands.findNext=c,CodeMirror.commands.findPrev=function(e){c(e,!0)},CodeMirror.commands.clearSearch=f,CodeMirror.commands.replace=u,CodeMirror.commands.replaceAll=function(e){u(e,!0)}}();
@@ -0,0 +1 @@
1
+ !function(){function e(e,n,t,i){if(this.atOccurrence=!1,this.cm=e,null==i&&"string"==typeof n&&(i=!1),t=t?e.clipPos(t):{line:0,ch:0},this.pos={from:t,to:t},"string"!=typeof n)n.global||(n=new RegExp(n.source,n.ignoreCase?"ig":"g")),this.matches=function(t,i){if(t){n.lastIndex=0;for(var r=e.getLine(i.line).slice(0,i.ch),o=n.exec(r),c=0;o;){c+=o.index,r=r.slice(o.index),n.lastIndex=0;var h=n.exec(r);if(!h)break;o=h,c++}}else{n.lastIndex=i.ch;var r=e.getLine(i.line),o=n.exec(r),c=o&&o.index}return o?{from:{line:i.line,ch:c},to:{line:i.line,ch:c+o[0].length},match:o}:void 0};else{i&&(n=n.toLowerCase());var r=i?function(e){return e.toLowerCase()}:function(e){return e},o=n.split("\n");this.matches=1==o.length?function(t,i){var o,c=r(e.getLine(i.line)),h=n.length;return(t?i.ch>=h&&-1!=(o=c.lastIndexOf(n,i.ch-h)):-1!=(o=c.indexOf(n,i.ch)))?{from:{line:i.line,ch:o},to:{line:i.line,ch:o+h}}:void 0}:function(n,t){var i=t.line,c=n?o.length-1:0,h=o[c],s=r(e.getLine(i)),l=n?s.indexOf(h)+h.length:s.lastIndexOf(h);if(!(n?l>=t.ch||l!=h.length:l<=t.ch||l!=s.length-h.length))for(;;){if(n?!i:i==e.lineCount()-1)return;if(s=r(e.getLine(i+=n?-1:1)),h=o[n?--c:++c],!(c>0&&c<o.length-1)){var f=n?s.lastIndexOf(h):s.indexOf(h)+h.length;if(n?f!=s.length-h.length:f!=h.length)return;var u={line:t.line,ch:l},a={line:i,ch:f};return{from:n?a:u,to:n?u:a}}if(s!=h)return}}}}e.prototype={findNext:function(){return this.find(!1)},findPrevious:function(){return this.find(!0)},find:function(e){function n(e){var n={line:e,ch:0};return t.pos={from:n,to:n},t.atOccurrence=!1,!1}for(var t=this,i=this.cm.clipPos(e?this.pos.from:this.pos.to);;){if(this.pos=this.matches(e,i))return this.atOccurrence=!0,this.pos.match||!0;if(e){if(!i.line)return n(0);i={line:i.line-1,ch:this.cm.getLine(i.line-1).length}}else{var r=this.cm.lineCount();if(i.line==r-1)return n(r);i={line:i.line+1,ch:0}}}},from:function(){return this.atOccurrence?this.pos.from:void 0},to:function(){return this.atOccurrence?this.pos.to:void 0},replace:function(e){var n=this;this.atOccurrence&&(n.pos.to=this.cm.replaceRange(e,n.pos.from,n.pos.to))}},CodeMirror.defineExtension("getSearchCursor",function(n,t,i){return new e(this,n,t,i)})}();
@@ -0,0 +1,16 @@
1
+ .CodeMirror-completions {
2
+ position: absolute;
3
+ z-index: 10;
4
+ overflow: hidden;
5
+ -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
6
+ -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
7
+ box-shadow: 2px 3px 5px rgba(0,0,0,.2);
8
+ }
9
+ .CodeMirror-completions select {
10
+ background: #fafafa;
11
+ outline: none;
12
+ border: none;
13
+ padding: 0;
14
+ margin: 0;
15
+ font-family: monospace;
16
+ }
@@ -0,0 +1 @@
1
+ !function(){CodeMirror.simpleHint=function(e,t,o){function n(o){function i(t){e.replaceRange(t,s.from,s.to)}function c(){v||(v=!0,u.parentNode.removeChild(u))}function d(){i(a[f.selectedIndex]),c(),setTimeout(function(){e.focus()},50)}if(!e.somethingSelected()){var l=e.getTokenAt(e.getCursor());if(!r.closeOnTokenChange||null==o||l.start==o.start&&l.className==o.className){var s=t(e);if(s&&s.list.length){var a=s.list;if(1==a.length)return i(a[0]),!0;var u=document.createElement("div");u.className="CodeMirror-completions";var f=u.appendChild(document.createElement("select"));window.opera||(f.multiple=!0);for(var p=0;p<a.length;++p){var m=f.appendChild(document.createElement("option"));m.appendChild(document.createTextNode(a[p]))}f.firstChild.selected=!0,f.size=Math.min(10,a.length);var h=e.cursorCoords();u.style.left=h.x+"px",u.style.top=h.yBot+"px",document.body.appendChild(u);var C=window.innerWidth||Math.max(document.body.offsetWidth,document.documentElement.offsetWidth);C-h.x<f.clientWidth&&(u.style.left=h.x-f.clientWidth+"px"),a.length<=10&&(u.style.width=f.clientWidth-1+"px");var v=!1;return CodeMirror.connect(f,"blur",c),CodeMirror.connect(f,"keydown",function(t){var o=t.keyCode;13==o?(CodeMirror.e_stop(t),d()):27==o?(CodeMirror.e_stop(t),c(),e.focus()):38!=o&&40!=o&&33!=o&&34!=o&&(c(),e.focus(),e.triggerOnKeyDown(t),r.closeOnBackspace&&8==o||setTimeout(function(){n(l)},50))}),CodeMirror.connect(f,"dblclick",d),f.focus(),window.opera&&setTimeout(function(){v||f.focus()},100),!0}}}}var r={},i=CodeMirror.simpleHint.defaults;for(var c in i)i.hasOwnProperty(c)&&(r[c]=(o&&o.hasOwnProperty(c)?o:i)[c]);return n()},CodeMirror.simpleHint.defaults={closeOnBackspace:!0,closeOnTokenChange:!1}}();
@@ -0,0 +1 @@
1
+ !function(){CodeMirror.xmlHints=[],CodeMirror.xmlHint=function(n,r){if(r.length>0){var t=n.getCursor();n.replaceSelection(r),t={line:t.line,ch:t.ch+1},n.setCursor(t)}var i=editor.getTokenAt;editor.getTokenAt=function(){return"disabled"},CodeMirror.simpleHint(n,e),editor.getTokenAt=i};var e=function(e){var r=e.getCursor();if(r.ch>0){for(var t=e.getRange({line:0,ch:0},r),i="",l="",o=t.length-1;o>=0;o--){if(" "==t[o]||"<"==t[o]){l=t[o];break}i=t[o]+i}t=t.slice(0,t.length-i.length);var f=n(e,t)+l,s=CodeMirror.xmlHints[f];if("undefined"==typeof s)s=[""];else{s=s.slice(0);for(var o=s.length-1;o>=0;o--)0!=s[o].indexOf(i)&&s.splice(o,1)}return{list:s,from:{line:r.line,ch:r.ch-i.length},to:r}}},n=function(e,n){var t="";if(n.length>=0){for(var i,l=new RegExp("<([^!?][^\\s/>]*).*?>","g"),o=[];null!=(i=l.exec(n));)o.push({tag:i[1],selfclose:"/>"===i[0].slice(i[0].length-2)});for(var f=o.length-1,s=0;f>=0;f--){var c=o[f];"/"==c.tag[0]?s++:0==c.selfclose&&(s>0?s--:t="<"+c.tag+">"+t)}t+=r(n)}return t},r=function(e){var n=e.lastIndexOf("<"),r=e.lastIndexOf(">");if(n>r&&(e=e.slice(n),"<"!=e)){var t=e.indexOf(" ");return 0>t&&(t=e.indexOf(" ")),0>t&&(t=e.indexOf("\n")),0>t&&(t=e.length),e.slice(0,t)}return""}}();
@@ -0,0 +1 @@
1
+ CodeMirror.defineMode("clike",function(e,t){function r(e,t){var r=e.next();if(h[r]){var i=h[r](e,t);if(i!==!1)return i}if('"'==r||"'"==r)return t.tokenize=n(r),t.tokenize(e,t);if(/[\[\]{}\(\),;\:\.]/.test(r))return s=r,null;if(/\d/.test(r))return e.eatWhile(/[\w\.]/),"number";if("/"==r){if(e.eat("*"))return t.tokenize=a,a(e,t);if(e.eat("/"))return e.skipToEnd(),"comment"}if(y.test(r))return e.eatWhile(y),"operator";e.eatWhile(/[\w\$_]/);var o=e.current();return u.propertyIsEnumerable(o)?(f.propertyIsEnumerable(o)&&(s="newstatement"),"keyword"):d.propertyIsEnumerable(o)?(f.propertyIsEnumerable(o)&&(s="newstatement"),"builtin"):p.propertyIsEnumerable(o)?"atom":"variable"}function n(e){return function(t,r){for(var n,a=!1,i=!1;null!=(n=t.next());){if(n==e&&!a){i=!0;break}a=!a&&"\\"==n}return(i||!a&&!m)&&(r.tokenize=null),"string"}}function a(e,t){for(var r,n=!1;r=e.next();){if("/"==r&&n){t.tokenize=null;break}n="*"==r}return"comment"}function i(e,t,r,n,a){this.indented=e,this.column=t,this.type=r,this.align=n,this.prev=a}function o(e,t,r){return e.context=new i(e.indented,t,r,null,e.context)}function l(e){var t=e.context.type;return(")"==t||"]"==t||"}"==t)&&(e.indented=e.context.indented),e.context=e.context.prev}var s,c=e.indentUnit,u=t.keywords||{},d=t.builtin||{},f=t.blockKeywords||{},p=t.atoms||{},h=t.hooks||{},m=t.multiLineStrings,y=/[+\-*&%=<>!?|\/]/;return{startState:function(e){return{tokenize:null,context:new i((e||0)-c,0,"top",!1),indented:0,startOfLine:!0}},token:function(e,t){var n=t.context;if(e.sol()&&(null==n.align&&(n.align=!1),t.indented=e.indentation(),t.startOfLine=!0),e.eatSpace())return null;s=null;var a=(t.tokenize||r)(e,t);if("comment"==a||"meta"==a)return a;if(null==n.align&&(n.align=!0),";"!=s&&":"!=s||"statement"!=n.type)if("{"==s)o(t,e.column(),"}");else if("["==s)o(t,e.column(),"]");else if("("==s)o(t,e.column(),")");else if("}"==s){for(;"statement"==n.type;)n=l(t);for("}"==n.type&&(n=l(t));"statement"==n.type;)n=l(t)}else s==n.type?l(t):("}"==n.type||"top"==n.type||"statement"==n.type&&"newstatement"==s)&&o(t,e.column(),"statement");else l(t);return t.startOfLine=!1,a},indent:function(e,t){if(e.tokenize!=r&&null!=e.tokenize)return 0;var n=e.context,a=t&&t.charAt(0);"statement"==n.type&&"}"==a&&(n=n.prev);var i=a==n.type;return"statement"==n.type?n.indented+("{"==a?0:c):n.align?n.column+(i?0:1):n.indented+(i?0:c)},electricChars:"{}"}}),function(){function e(e){for(var t={},r=e.split(" "),n=0;n<r.length;++n)t[r[n]]=!0;return t}function t(e,t){return t.startOfLine?(e.skipToEnd(),"meta"):!1}function r(e,t){for(var r;null!=(r=e.next());)if('"'==r&&!e.eat('"')){t.tokenize=null;break}return"string"}function n(e,t){for(var r=0;r<e.length;++r)CodeMirror.defineMIME(e[r],t)}var a="auto if break int case long char register continue return default short do sizeof double static else struct entry switch extern typedef float union for unsigned goto while enum void const signed volatile";n(["text/x-csrc","text/x-c","text/x-chdr"],{name:"clike",keywords:e(a),blockKeywords:e("case do else for if switch while struct"),atoms:e("null"),hooks:{"#":t}}),n(["text/x-c++src","text/x-c++hdr"],{name:"clike",keywords:e(a+" asm dynamic_cast namespace reinterpret_cast try bool explicit new "+"static_cast typeid catch operator template typename class friend private "+"this using const_cast inline public throw virtual delete mutable protected "+"wchar_t"),blockKeywords:e("catch class do else finally for if struct switch try while"),atoms:e("true false null"),hooks:{"#":t}}),CodeMirror.defineMIME("text/x-java",{name:"clike",keywords:e("abstract assert boolean break byte case catch char class const continue default do double else enum extends final finally float for goto if implements import instanceof int interface long native new package private protected public return short static strictfp super switch synchronized this throw throws transient try void volatile while"),blockKeywords:e("catch class do else finally for if switch try while"),atoms:e("true false null"),hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"}}}),CodeMirror.defineMIME("text/x-csharp",{name:"clike",keywords:e("abstract as base break case catch checked class const continue default delegate do else enum event explicit extern finally fixed for foreach goto if implicit in interface internal is lock namespace new operator out override params private protected public readonly ref return sealed sizeof stackalloc static struct switch this throw try typeof unchecked unsafe using virtual void volatile while add alias ascending descending dynamic from get global group into join let orderby partial remove select set value var yield"),blockKeywords:e("catch class do else finally for foreach if struct switch try while"),builtin:e("Boolean Byte Char DateTime DateTimeOffset Decimal Double Guid Int16 Int32 Int64 Object SByte Single String TimeSpan UInt16 UInt32 UInt64 bool byte char decimal double short int long object sbyte float string ushort uint ulong"),atoms:e("true false null"),hooks:{"@":function(e,t){return e.eat('"')?(t.tokenize=r,r(e,t)):(e.eatWhile(/[\w\$_]/),"meta")}}}),CodeMirror.defineMIME("text/x-scala",{name:"clike",keywords:e("abstract case catch class def do else extends false final finally for forSome if implicit import lazy match new null object override package private protected return sealed super this throw trait try trye type val var while with yield _ : = => <- <: <% >: # @ assert assume require print println printf readLine readBoolean readByte readShort readChar readInt readLong readFloat readDouble AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either Enumeration Equiv Error Exception Fractional Function IndexedSeq Integral Iterable Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector :: #:: Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void"),blockKeywords:e("catch class do else finally for forSome if match switch try while"),atoms:e("true false null"),hooks:{"@":function(e){return e.eatWhile(/[\w\$_]/),"meta"}}})}();
@@ -0,0 +1,102 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>CodeMirror: C-like mode</title>
6
+ <link rel="stylesheet" href="../../lib/codemirror.css">
7
+ <script src="../../lib/codemirror.js"></script>
8
+ <script src="clike.js"></script>
9
+ <link rel="stylesheet" href="../../doc/docs.css">
10
+ <style>.CodeMirror {border: 2px inset #dee;}</style>
11
+ </head>
12
+ <body>
13
+ <h1>CodeMirror: C-like mode</h1>
14
+
15
+ <form><textarea id="code" name="code">
16
+ /* C demo code */
17
+
18
+ #include <zmq.h>
19
+ #include <pthread.h>
20
+ #include <semaphore.h>
21
+ #include <time.h>
22
+ #include <stdio.h>
23
+ #include <fcntl.h>
24
+ #include <malloc.h>
25
+
26
+ typedef struct {
27
+ void* arg_socket;
28
+ zmq_msg_t* arg_msg;
29
+ char* arg_string;
30
+ unsigned long arg_len;
31
+ int arg_int, arg_command;
32
+
33
+ int signal_fd;
34
+ int pad;
35
+ void* context;
36
+ sem_t sem;
37
+ } acl_zmq_context;
38
+
39
+ #define p(X) (context->arg_##X)
40
+
41
+ void* zmq_thread(void* context_pointer) {
42
+ acl_zmq_context* context = (acl_zmq_context*)context_pointer;
43
+ char ok = 'K', err = 'X';
44
+ int res;
45
+
46
+ while (1) {
47
+ while ((res = sem_wait(&amp;context->sem)) == EINTR);
48
+ if (res) {write(context->signal_fd, &amp;err, 1); goto cleanup;}
49
+ switch(p(command)) {
50
+ case 0: goto cleanup;
51
+ case 1: p(socket) = zmq_socket(context->context, p(int)); break;
52
+ case 2: p(int) = zmq_close(p(socket)); break;
53
+ case 3: p(int) = zmq_bind(p(socket), p(string)); break;
54
+ case 4: p(int) = zmq_connect(p(socket), p(string)); break;
55
+ case 5: p(int) = zmq_getsockopt(p(socket), p(int), (void*)p(string), &amp;p(len)); break;
56
+ case 6: p(int) = zmq_setsockopt(p(socket), p(int), (void*)p(string), p(len)); break;
57
+ case 7: p(int) = zmq_send(p(socket), p(msg), p(int)); break;
58
+ case 8: p(int) = zmq_recv(p(socket), p(msg), p(int)); break;
59
+ case 9: p(int) = zmq_poll(p(socket), p(int), p(len)); break;
60
+ }
61
+ p(command) = errno;
62
+ write(context->signal_fd, &amp;ok, 1);
63
+ }
64
+ cleanup:
65
+ close(context->signal_fd);
66
+ free(context_pointer);
67
+ return 0;
68
+ }
69
+
70
+ void* zmq_thread_init(void* zmq_context, int signal_fd) {
71
+ acl_zmq_context* context = malloc(sizeof(acl_zmq_context));
72
+ pthread_t thread;
73
+
74
+ context->context = zmq_context;
75
+ context->signal_fd = signal_fd;
76
+ sem_init(&amp;context->sem, 1, 0);
77
+ pthread_create(&amp;thread, 0, &amp;zmq_thread, context);
78
+ pthread_detach(thread);
79
+ return context;
80
+ }
81
+ </textarea></form>
82
+
83
+ <script>
84
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
85
+ lineNumbers: true,
86
+ matchBrackets: true,
87
+ mode: "text/x-csrc"
88
+ });
89
+ </script>
90
+
91
+ <p>Simple mode that tries to handle C-like languages as well as it
92
+ can. Takes two configuration parameters: <code>keywords</code>, an
93
+ object whose property names are the keywords in the language,
94
+ and <code>useCPP</code>, which determines whether C preprocessor
95
+ directives are recognized.</p>
96
+
97
+ <p><strong>MIME types defined:</strong> <code>text/x-csrc</code>
98
+ (C code), <code>text/x-c++src</code> (C++
99
+ code), <code>text/x-java</code> (Java
100
+ code), <code>text/x-csharp</code> (C#).</p>
101
+ </body>
102
+ </html>
@@ -0,0 +1,766 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>CodeMirror: C-like mode</title>
6
+ <link rel="stylesheet" href="../../lib/codemirror.css">
7
+ <link rel="stylesheet" href="../../theme/ambiance.css">
8
+ <script src="../../lib/codemirror.js"></script>
9
+ <script src="clike.js"></script>
10
+ <link rel="stylesheet" href="../../doc/docs.css">
11
+ <style>
12
+ body
13
+ {
14
+ margin: 0;
15
+ padding: 0;
16
+ max-width:inherit;
17
+ height: 100%;
18
+ }
19
+ html, form, .CodeMirror, .CodeMirror-scroll
20
+ {
21
+ height: 100%;
22
+ }
23
+ </style>
24
+ </head>
25
+ <body>
26
+ <form>
27
+ <textarea id="code" name="code">
28
+
29
+ /* __ *\
30
+ ** ________ ___ / / ___ Scala API **
31
+ ** / __/ __// _ | / / / _ | (c) 2003-2011, LAMP/EPFL **
32
+ ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
33
+ ** /____/\___/_/ |_/____/_/ | | **
34
+ ** |/ **
35
+ \* */
36
+
37
+ package scala.collection
38
+
39
+ import generic._
40
+ import mutable.{ Builder, ListBuffer }
41
+ import annotation.{tailrec, migration, bridge}
42
+ import annotation.unchecked.{ uncheckedVariance => uV }
43
+ import parallel.ParIterable
44
+
45
+ /** A template trait for traversable collections of type `Traversable[A]`.
46
+ *
47
+ * $traversableInfo
48
+ * @define mutability
49
+ * @define traversableInfo
50
+ * This is a base trait of all kinds of $mutability Scala collections. It
51
+ * implements the behavior common to all collections, in terms of a method
52
+ * `foreach` with signature:
53
+ * {{{
54
+ * def foreach[U](f: Elem => U): Unit
55
+ * }}}
56
+ * Collection classes mixing in this trait provide a concrete
57
+ * `foreach` method which traverses all the
58
+ * elements contained in the collection, applying a given function to each.
59
+ * They also need to provide a method `newBuilder`
60
+ * which creates a builder for collections of the same kind.
61
+ *
62
+ * A traversable class might or might not have two properties: strictness
63
+ * and orderedness. Neither is represented as a type.
64
+ *
65
+ * The instances of a strict collection class have all their elements
66
+ * computed before they can be used as values. By contrast, instances of
67
+ * a non-strict collection class may defer computation of some of their
68
+ * elements until after the instance is available as a value.
69
+ * A typical example of a non-strict collection class is a
70
+ * <a href="../immutable/Stream.html" target="ContentFrame">
71
+ * `scala.collection.immutable.Stream`</a>.
72
+ * A more general class of examples are `TraversableViews`.
73
+ *
74
+ * If a collection is an instance of an ordered collection class, traversing
75
+ * its elements with `foreach` will always visit elements in the
76
+ * same order, even for different runs of the program. If the class is not
77
+ * ordered, `foreach` can visit elements in different orders for
78
+ * different runs (but it will keep the same order in the same run).'
79
+ *
80
+ * A typical example of a collection class which is not ordered is a
81
+ * `HashMap` of objects. The traversal order for hash maps will
82
+ * depend on the hash codes of its elements, and these hash codes might
83
+ * differ from one run to the next. By contrast, a `LinkedHashMap`
84
+ * is ordered because it's `foreach` method visits elements in the
85
+ * order they were inserted into the `HashMap`.
86
+ *
87
+ * @author Martin Odersky
88
+ * @version 2.8
89
+ * @since 2.8
90
+ * @tparam A the element type of the collection
91
+ * @tparam Repr the type of the actual collection containing the elements.
92
+ *
93
+ * @define Coll Traversable
94
+ * @define coll traversable collection
95
+ */
96
+ trait TraversableLike[+A, +Repr] extends HasNewBuilder[A, Repr]
97
+ with FilterMonadic[A, Repr]
98
+ with TraversableOnce[A]
99
+ with GenTraversableLike[A, Repr]
100
+ with Parallelizable[A, ParIterable[A]]
101
+ {
102
+ self =>
103
+
104
+ import Traversable.breaks._
105
+
106
+ /** The type implementing this traversable */
107
+ protected type Self = Repr
108
+
109
+ /** The collection of type $coll underlying this `TraversableLike` object.
110
+ * By default this is implemented as the `TraversableLike` object itself,
111
+ * but this can be overridden.
112
+ */
113
+ def repr: Repr = this.asInstanceOf[Repr]
114
+
115
+ /** The underlying collection seen as an instance of `$Coll`.
116
+ * By default this is implemented as the current collection object itself,
117
+ * but this can be overridden.
118
+ */
119
+ protected[this] def thisCollection: Traversable[A] = this.asInstanceOf[Traversable[A]]
120
+
121
+ /** A conversion from collections of type `Repr` to `$Coll` objects.
122
+ * By default this is implemented as just a cast, but this can be overridden.
123
+ */
124
+ protected[this] def toCollection(repr: Repr): Traversable[A] = repr.asInstanceOf[Traversable[A]]
125
+
126
+ /** Creates a new builder for this collection type.
127
+ */
128
+ protected[this] def newBuilder: Builder[A, Repr]
129
+
130
+ protected[this] def parCombiner = ParIterable.newCombiner[A]
131
+
132
+ /** Applies a function `f` to all elements of this $coll.
133
+ *
134
+ * Note: this method underlies the implementation of most other bulk operations.
135
+ * It's important to implement this method in an efficient way.
136
+ *
137
+ *
138
+ * @param f the function that is applied for its side-effect to every element.
139
+ * The result of function `f` is discarded.
140
+ *
141
+ * @tparam U the type parameter describing the result of function `f`.
142
+ * This result will always be ignored. Typically `U` is `Unit`,
143
+ * but this is not necessary.
144
+ *
145
+ * @usecase def foreach(f: A => Unit): Unit
146
+ */
147
+ def foreach[U](f: A => U): Unit
148
+
149
+ /** Tests whether this $coll is empty.
150
+ *
151
+ * @return `true` if the $coll contain no elements, `false` otherwise.
152
+ */
153
+ def isEmpty: Boolean = {
154
+ var result = true
155
+ breakable {
156
+ for (x <- this) {
157
+ result = false
158
+ break
159
+ }
160
+ }
161
+ result
162
+ }
163
+
164
+ /** Tests whether this $coll is known to have a finite size.
165
+ * All strict collections are known to have finite size. For a non-strict collection
166
+ * such as `Stream`, the predicate returns `true` if all elements have been computed.
167
+ * It returns `false` if the stream is not yet evaluated to the end.
168
+ *
169
+ * Note: many collection methods will not work on collections of infinite sizes.
170
+ *
171
+ * @return `true` if this collection is known to have finite size, `false` otherwise.
172
+ */
173
+ def hasDefiniteSize = true
174
+
175
+ def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
176
+ val b = bf(repr)
177
+ if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.seq.size)
178
+ b ++= thisCollection
179
+ b ++= that.seq
180
+ b.result
181
+ }
182
+
183
+ @bridge
184
+ def ++[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =
185
+ ++(that: GenTraversableOnce[B])(bf)
186
+
187
+ /** Concatenates this $coll with the elements of a traversable collection.
188
+ * It differs from ++ in that the right operand determines the type of the
189
+ * resulting collection rather than the left one.
190
+ *
191
+ * @param that the traversable to append.
192
+ * @tparam B the element type of the returned collection.
193
+ * @tparam That $thatinfo
194
+ * @param bf $bfinfo
195
+ * @return a new collection of type `That` which contains all elements
196
+ * of this $coll followed by all elements of `that`.
197
+ *
198
+ * @usecase def ++:[B](that: TraversableOnce[B]): $Coll[B]
199
+ *
200
+ * @return a new $coll which contains all elements of this $coll
201
+ * followed by all elements of `that`.
202
+ */
203
+ def ++:[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
204
+ val b = bf(repr)
205
+ if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.size)
206
+ b ++= that
207
+ b ++= thisCollection
208
+ b.result
209
+ }
210
+
211
+ /** This overload exists because: for the implementation of ++: we should reuse
212
+ * that of ++ because many collections override it with more efficient versions.
213
+ * Since TraversableOnce has no '++' method, we have to implement that directly,
214
+ * but Traversable and down can use the overload.
215
+ */
216
+ def ++:[B >: A, That](that: Traversable[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =
217
+ (that ++ seq)(breakOut)
218
+
219
+ def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
220
+ val b = bf(repr)
221
+ b.sizeHint(this)
222
+ for (x <- this) b += f(x)
223
+ b.result
224
+ }
225
+
226
+ def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
227
+ val b = bf(repr)
228
+ for (x <- this) b ++= f(x).seq
229
+ b.result
230
+ }
231
+
232
+ /** Selects all elements of this $coll which satisfy a predicate.
233
+ *
234
+ * @param p the predicate used to test elements.
235
+ * @return a new $coll consisting of all elements of this $coll that satisfy the given
236
+ * predicate `p`. The order of the elements is preserved.
237
+ */
238
+ def filter(p: A => Boolean): Repr = {
239
+ val b = newBuilder
240
+ for (x <- this)
241
+ if (p(x)) b += x
242
+ b.result
243
+ }
244
+
245
+ /** Selects all elements of this $coll which do not satisfy a predicate.
246
+ *
247
+ * @param p the predicate used to test elements.
248
+ * @return a new $coll consisting of all elements of this $coll that do not satisfy the given
249
+ * predicate `p`. The order of the elements is preserved.
250
+ */
251
+ def filterNot(p: A => Boolean): Repr = filter(!p(_))
252
+
253
+ def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
254
+ val b = bf(repr)
255
+ for (x <- this) if (pf.isDefinedAt(x)) b += pf(x)
256
+ b.result
257
+ }
258
+
259
+ /** Builds a new collection by applying an option-valued function to all
260
+ * elements of this $coll on which the function is defined.
261
+ *
262
+ * @param f the option-valued function which filters and maps the $coll.
263
+ * @tparam B the element type of the returned collection.
264
+ * @tparam That $thatinfo
265
+ * @param bf $bfinfo
266
+ * @return a new collection of type `That` resulting from applying the option-valued function
267
+ * `f` to each element and collecting all defined results.
268
+ * The order of the elements is preserved.
269
+ *
270
+ * @usecase def filterMap[B](f: A => Option[B]): $Coll[B]
271
+ *
272
+ * @param pf the partial function which filters and maps the $coll.
273
+ * @return a new $coll resulting from applying the given option-valued function
274
+ * `f` to each element and collecting all defined results.
275
+ * The order of the elements is preserved.
276
+ def filterMap[B, That](f: A => Option[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
277
+ val b = bf(repr)
278
+ for (x <- this)
279
+ f(x) match {
280
+ case Some(y) => b += y
281
+ case _ =>
282
+ }
283
+ b.result
284
+ }
285
+ */
286
+
287
+ /** Partitions this $coll in two ${coll}s according to a predicate.
288
+ *
289
+ * @param p the predicate on which to partition.
290
+ * @return a pair of ${coll}s: the first $coll consists of all elements that
291
+ * satisfy the predicate `p` and the second $coll consists of all elements
292
+ * that don't. The relative order of the elements in the resulting ${coll}s
293
+ * is the same as in the original $coll.
294
+ */
295
+ def partition(p: A => Boolean): (Repr, Repr) = {
296
+ val l, r = newBuilder
297
+ for (x <- this) (if (p(x)) l else r) += x
298
+ (l.result, r.result)
299
+ }
300
+
301
+ def groupBy[K](f: A => K): immutable.Map[K, Repr] = {
302
+ val m = mutable.Map.empty[K, Builder[A, Repr]]
303
+ for (elem <- this) {
304
+ val key = f(elem)
305
+ val bldr = m.getOrElseUpdate(key, newBuilder)
306
+ bldr += elem
307
+ }
308
+ val b = immutable.Map.newBuilder[K, Repr]
309
+ for ((k, v) <- m)
310
+ b += ((k, v.result))
311
+
312
+ b.result
313
+ }
314
+
315
+ /** Tests whether a predicate holds for all elements of this $coll.
316
+ *
317
+ * $mayNotTerminateInf
318
+ *
319
+ * @param p the predicate used to test elements.
320
+ * @return `true` if the given predicate `p` holds for all elements
321
+ * of this $coll, otherwise `false`.
322
+ */
323
+ def forall(p: A => Boolean): Boolean = {
324
+ var result = true
325
+ breakable {
326
+ for (x <- this)
327
+ if (!p(x)) { result = false; break }
328
+ }
329
+ result
330
+ }
331
+
332
+ /** Tests whether a predicate holds for some of the elements of this $coll.
333
+ *
334
+ * $mayNotTerminateInf
335
+ *
336
+ * @param p the predicate used to test elements.
337
+ * @return `true` if the given predicate `p` holds for some of the
338
+ * elements of this $coll, otherwise `false`.
339
+ */
340
+ def exists(p: A => Boolean): Boolean = {
341
+ var result = false
342
+ breakable {
343
+ for (x <- this)
344
+ if (p(x)) { result = true; break }
345
+ }
346
+ result
347
+ }
348
+
349
+ /** Finds the first element of the $coll satisfying a predicate, if any.
350
+ *
351
+ * $mayNotTerminateInf
352
+ * $orderDependent
353
+ *
354
+ * @param p the predicate used to test elements.
355
+ * @return an option value containing the first element in the $coll
356
+ * that satisfies `p`, or `None` if none exists.
357
+ */
358
+ def find(p: A => Boolean): Option[A] = {
359
+ var result: Option[A] = None
360
+ breakable {
361
+ for (x <- this)
362
+ if (p(x)) { result = Some(x); break }
363
+ }
364
+ result
365
+ }
366
+
367
+ def scan[B >: A, That](z: B)(op: (B, B) => B)(implicit cbf: CanBuildFrom[Repr, B, That]): That = scanLeft(z)(op)
368
+
369
+ def scanLeft[B, That](z: B)(op: (B, A) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
370
+ val b = bf(repr)
371
+ b.sizeHint(this, 1)
372
+ var acc = z
373
+ b += acc
374
+ for (x <- this) { acc = op(acc, x); b += acc }
375
+ b.result
376
+ }
377
+
378
+ @migration(2, 9,
379
+ "This scanRight definition has changed in 2.9.\n" +
380
+ "The previous behavior can be reproduced with scanRight.reverse."
381
+ )
382
+ def scanRight[B, That](z: B)(op: (A, B) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
383
+ var scanned = List(z)
384
+ var acc = z
385
+ for (x <- reversed) {
386
+ acc = op(x, acc)
387
+ scanned ::= acc
388
+ }
389
+ val b = bf(repr)
390
+ for (elem <- scanned) b += elem
391
+ b.result
392
+ }
393
+
394
+ /** Selects the first element of this $coll.
395
+ * $orderDependent
396
+ * @return the first element of this $coll.
397
+ * @throws `NoSuchElementException` if the $coll is empty.
398
+ */
399
+ def head: A = {
400
+ var result: () => A = () => throw new NoSuchElementException
401
+ breakable {
402
+ for (x <- this) {
403
+ result = () => x
404
+ break
405
+ }
406
+ }
407
+ result()
408
+ }
409
+
410
+ /** Optionally selects the first element.
411
+ * $orderDependent
412
+ * @return the first element of this $coll if it is nonempty, `None` if it is empty.
413
+ */
414
+ def headOption: Option[A] = if (isEmpty) None else Some(head)
415
+
416
+ /** Selects all elements except the first.
417
+ * $orderDependent
418
+ * @return a $coll consisting of all elements of this $coll
419
+ * except the first one.
420
+ * @throws `UnsupportedOperationException` if the $coll is empty.
421
+ */
422
+ override def tail: Repr = {
423
+ if (isEmpty) throw new UnsupportedOperationException("empty.tail")
424
+ drop(1)
425
+ }
426
+
427
+ /** Selects the last element.
428
+ * $orderDependent
429
+ * @return The last element of this $coll.
430
+ * @throws NoSuchElementException If the $coll is empty.
431
+ */
432
+ def last: A = {
433
+ var lst = head
434
+ for (x <- this)
435
+ lst = x
436
+ lst
437
+ }
438
+
439
+ /** Optionally selects the last element.
440
+ * $orderDependent
441
+ * @return the last element of this $coll$ if it is nonempty, `None` if it is empty.
442
+ */
443
+ def lastOption: Option[A] = if (isEmpty) None else Some(last)
444
+
445
+ /** Selects all elements except the last.
446
+ * $orderDependent
447
+ * @return a $coll consisting of all elements of this $coll
448
+ * except the last one.
449
+ * @throws `UnsupportedOperationException` if the $coll is empty.
450
+ */
451
+ def init: Repr = {
452
+ if (isEmpty) throw new UnsupportedOperationException("empty.init")
453
+ var lst = head
454
+ var follow = false
455
+ val b = newBuilder
456
+ b.sizeHint(this, -1)
457
+ for (x <- this.seq) {
458
+ if (follow) b += lst
459
+ else follow = true
460
+ lst = x
461
+ }
462
+ b.result
463
+ }
464
+
465
+ def take(n: Int): Repr = slice(0, n)
466
+
467
+ def drop(n: Int): Repr =
468
+ if (n <= 0) {
469
+ val b = newBuilder
470
+ b.sizeHint(this)
471
+ b ++= thisCollection result
472
+ }
473
+ else sliceWithKnownDelta(n, Int.MaxValue, -n)
474
+
475
+ def slice(from: Int, until: Int): Repr = sliceWithKnownBound(math.max(from, 0), until)
476
+
477
+ // Precondition: from >= 0, until > 0, builder already configured for building.
478
+ private[this] def sliceInternal(from: Int, until: Int, b: Builder[A, Repr]): Repr = {
479
+ var i = 0
480
+ breakable {
481
+ for (x <- this.seq) {
482
+ if (i >= from) b += x
483
+ i += 1
484
+ if (i >= until) break
485
+ }
486
+ }
487
+ b.result
488
+ }
489
+ // Precondition: from >= 0
490
+ private[scala] def sliceWithKnownDelta(from: Int, until: Int, delta: Int): Repr = {
491
+ val b = newBuilder
492
+ if (until <= from) b.result
493
+ else {
494
+ b.sizeHint(this, delta)
495
+ sliceInternal(from, until, b)
496
+ }
497
+ }
498
+ // Precondition: from >= 0
499
+ private[scala] def sliceWithKnownBound(from: Int, until: Int): Repr = {
500
+ val b = newBuilder
501
+ if (until <= from) b.result
502
+ else {
503
+ b.sizeHintBounded(until - from, this)
504
+ sliceInternal(from, until, b)
505
+ }
506
+ }
507
+
508
+ def takeWhile(p: A => Boolean): Repr = {
509
+ val b = newBuilder
510
+ breakable {
511
+ for (x <- this) {
512
+ if (!p(x)) break
513
+ b += x
514
+ }
515
+ }
516
+ b.result
517
+ }
518
+
519
+ def dropWhile(p: A => Boolean): Repr = {
520
+ val b = newBuilder
521
+ var go = false
522
+ for (x <- this) {
523
+ if (!p(x)) go = true
524
+ if (go) b += x
525
+ }
526
+ b.result
527
+ }
528
+
529
+ def span(p: A => Boolean): (Repr, Repr) = {
530
+ val l, r = newBuilder
531
+ var toLeft = true
532
+ for (x <- this) {
533
+ toLeft = toLeft && p(x)
534
+ (if (toLeft) l else r) += x
535
+ }
536
+ (l.result, r.result)
537
+ }
538
+
539
+ def splitAt(n: Int): (Repr, Repr) = {
540
+ val l, r = newBuilder
541
+ l.sizeHintBounded(n, this)
542
+ if (n >= 0) r.sizeHint(this, -n)
543
+ var i = 0
544
+ for (x <- this) {
545
+ (if (i < n) l else r) += x
546
+ i += 1
547
+ }
548
+ (l.result, r.result)
549
+ }
550
+
551
+ /** Iterates over the tails of this $coll. The first value will be this
552
+ * $coll and the final one will be an empty $coll, with the intervening
553
+ * values the results of successive applications of `tail`.
554
+ *
555
+ * @return an iterator over all the tails of this $coll
556
+ * @example `List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)`
557
+ */
558
+ def tails: Iterator[Repr] = iterateUntilEmpty(_.tail)
559
+
560
+ /** Iterates over the inits of this $coll. The first value will be this
561
+ * $coll and the final one will be an empty $coll, with the intervening
562
+ * values the results of successive applications of `init`.
563
+ *
564
+ * @return an iterator over all the inits of this $coll
565
+ * @example `List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)`
566
+ */
567
+ def inits: Iterator[Repr] = iterateUntilEmpty(_.init)
568
+
569
+ /** Copies elements of this $coll to an array.
570
+ * Fills the given array `xs` with at most `len` elements of
571
+ * this $coll, starting at position `start`.
572
+ * Copying will stop once either the end of the current $coll is reached,
573
+ * or the end of the array is reached, or `len` elements have been copied.
574
+ *
575
+ * $willNotTerminateInf
576
+ *
577
+ * @param xs the array to fill.
578
+ * @param start the starting index.
579
+ * @param len the maximal number of elements to copy.
580
+ * @tparam B the type of the elements of the array.
581
+ *
582
+ *
583
+ * @usecase def copyToArray(xs: Array[A], start: Int, len: Int): Unit
584
+ */
585
+ def copyToArray[B >: A](xs: Array[B], start: Int, len: Int) {
586
+ var i = start
587
+ val end = (start + len) min xs.length
588
+ breakable {
589
+ for (x <- this) {
590
+ if (i >= end) break
591
+ xs(i) = x
592
+ i += 1
593
+ }
594
+ }
595
+ }
596
+
597
+ def toTraversable: Traversable[A] = thisCollection
598
+ def toIterator: Iterator[A] = toStream.iterator
599
+ def toStream: Stream[A] = toBuffer.toStream
600
+
601
+ /** Converts this $coll to a string.
602
+ *
603
+ * @return a string representation of this collection. By default this
604
+ * string consists of the `stringPrefix` of this $coll,
605
+ * followed by all elements separated by commas and enclosed in parentheses.
606
+ */
607
+ override def toString = mkString(stringPrefix + "(", ", ", ")")
608
+
609
+ /** Defines the prefix of this object's `toString` representation.
610
+ *
611
+ * @return a string representation which starts the result of `toString`
612
+ * applied to this $coll. By default the string prefix is the
613
+ * simple name of the collection class $coll.
614
+ */
615
+ def stringPrefix : String = {
616
+ var string = repr.asInstanceOf[AnyRef].getClass.getName
617
+ val idx1 = string.lastIndexOf('.' : Int)
618
+ if (idx1 != -1) string = string.substring(idx1 + 1)
619
+ val idx2 = string.indexOf('$')
620
+ if (idx2 != -1) string = string.substring(0, idx2)
621
+ string
622
+ }
623
+
624
+ /** Creates a non-strict view of this $coll.
625
+ *
626
+ * @return a non-strict view of this $coll.
627
+ */
628
+ def view = new TraversableView[A, Repr] {
629
+ protected lazy val underlying = self.repr
630
+ override def foreach[U](f: A => U) = self foreach f
631
+ }
632
+
633
+ /** Creates a non-strict view of a slice of this $coll.
634
+ *
635
+ * Note: the difference between `view` and `slice` is that `view` produces
636
+ * a view of the current $coll, whereas `slice` produces a new $coll.
637
+ *
638
+ * Note: `view(from, to)` is equivalent to `view.slice(from, to)`
639
+ * $orderDependent
640
+ *
641
+ * @param from the index of the first element of the view
642
+ * @param until the index of the element following the view
643
+ * @return a non-strict view of a slice of this $coll, starting at index `from`
644
+ * and extending up to (but not including) index `until`.
645
+ */
646
+ def view(from: Int, until: Int): TraversableView[A, Repr] = view.slice(from, until)
647
+
648
+ /** Creates a non-strict filter of this $coll.
649
+ *
650
+ * Note: the difference between `c filter p` and `c withFilter p` is that
651
+ * the former creates a new collection, whereas the latter only
652
+ * restricts the domain of subsequent `map`, `flatMap`, `foreach`,
653
+ * and `withFilter` operations.
654
+ * $orderDependent
655
+ *
656
+ * @param p the predicate used to test elements.
657
+ * @return an object of class `WithFilter`, which supports
658
+ * `map`, `flatMap`, `foreach`, and `withFilter` operations.
659
+ * All these operations apply to those elements of this $coll which
660
+ * satisfy the predicate `p`.
661
+ */
662
+ def withFilter(p: A => Boolean): FilterMonadic[A, Repr] = new WithFilter(p)
663
+
664
+ /** A class supporting filtered operations. Instances of this class are
665
+ * returned by method `withFilter`.
666
+ */
667
+ class WithFilter(p: A => Boolean) extends FilterMonadic[A, Repr] {
668
+
669
+ /** Builds a new collection by applying a function to all elements of the
670
+ * outer $coll containing this `WithFilter` instance that satisfy predicate `p`.
671
+ *
672
+ * @param f the function to apply to each element.
673
+ * @tparam B the element type of the returned collection.
674
+ * @tparam That $thatinfo
675
+ * @param bf $bfinfo
676
+ * @return a new collection of type `That` resulting from applying
677
+ * the given function `f` to each element of the outer $coll
678
+ * that satisfies predicate `p` and collecting the results.
679
+ *
680
+ * @usecase def map[B](f: A => B): $Coll[B]
681
+ *
682
+ * @return a new $coll resulting from applying the given function
683
+ * `f` to each element of the outer $coll that satisfies
684
+ * predicate `p` and collecting the results.
685
+ */
686
+ def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
687
+ val b = bf(repr)
688
+ for (x <- self)
689
+ if (p(x)) b += f(x)
690
+ b.result
691
+ }
692
+
693
+ /** Builds a new collection by applying a function to all elements of the
694
+ * outer $coll containing this `WithFilter` instance that satisfy
695
+ * predicate `p` and concatenating the results.
696
+ *
697
+ * @param f the function to apply to each element.
698
+ * @tparam B the element type of the returned collection.
699
+ * @tparam That $thatinfo
700
+ * @param bf $bfinfo
701
+ * @return a new collection of type `That` resulting from applying
702
+ * the given collection-valued function `f` to each element
703
+ * of the outer $coll that satisfies predicate `p` and
704
+ * concatenating the results.
705
+ *
706
+ * @usecase def flatMap[B](f: A => TraversableOnce[B]): $Coll[B]
707
+ *
708
+ * @return a new $coll resulting from applying the given collection-valued function
709
+ * `f` to each element of the outer $coll that satisfies predicate `p` and concatenating the results.
710
+ */
711
+ def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
712
+ val b = bf(repr)
713
+ for (x <- self)
714
+ if (p(x)) b ++= f(x).seq
715
+ b.result
716
+ }
717
+
718
+ /** Applies a function `f` to all elements of the outer $coll containing
719
+ * this `WithFilter` instance that satisfy predicate `p`.
720
+ *
721
+ * @param f the function that is applied for its side-effect to every element.
722
+ * The result of function `f` is discarded.
723
+ *
724
+ * @tparam U the type parameter describing the result of function `f`.
725
+ * This result will always be ignored. Typically `U` is `Unit`,
726
+ * but this is not necessary.
727
+ *
728
+ * @usecase def foreach(f: A => Unit): Unit
729
+ */
730
+ def foreach[U](f: A => U): Unit =
731
+ for (x <- self)
732
+ if (p(x)) f(x)
733
+
734
+ /** Further refines the filter for this $coll.
735
+ *
736
+ * @param q the predicate used to test elements.
737
+ * @return an object of class `WithFilter`, which supports
738
+ * `map`, `flatMap`, `foreach`, and `withFilter` operations.
739
+ * All these operations apply to those elements of this $coll which
740
+ * satisfy the predicate `q` in addition to the predicate `p`.
741
+ */
742
+ def withFilter(q: A => Boolean): WithFilter =
743
+ new WithFilter(x => p(x) && q(x))
744
+ }
745
+
746
+ // A helper for tails and inits.
747
+ private def iterateUntilEmpty(f: Traversable[A @uV] => Traversable[A @uV]): Iterator[Repr] = {
748
+ val it = Iterator.iterate(thisCollection)(f) takeWhile (x => !x.isEmpty)
749
+ it ++ Iterator(Nil) map (newBuilder ++= _ result)
750
+ }
751
+ }
752
+
753
+
754
+ </textarea>
755
+ </form>
756
+
757
+ <script>
758
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
759
+ lineNumbers: true,
760
+ matchBrackets: true,
761
+ theme: "ambiance",
762
+ mode: "text/x-scala"
763
+ });
764
+ </script>
765
+ </body>
766
+ </html>