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.
- checksums.yaml +4 -4
- data/bin/rails +8 -0
- data/lib/rearview/version.rb +1 -1
- data/public/favicon.ico +0 -0
- data/public/help/alert.html +20 -0
- data/public/help/quick.html +34 -0
- data/public/monitors/index.json +3 -0
- data/public/monitors/outage.rb +2 -0
- data/public/rearview-src/css/rearview.css +1 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
- data/public/rearview-src/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
- data/public/rearview-src/img/livingsocial-logo-white.svg +107 -0
- data/public/rearview-src/img/login/company-logo.svg +107 -0
- data/public/rearview-src/img/noise-light.png +0 -0
- data/public/rearview-src/img/noise.png +0 -0
- data/public/rearview-src/img/rearview.svg +19 -0
- data/public/rearview-src/img/rearviewlogo.png +0 -0
- data/public/rearview-src/img/rearviewlogo_small.png +0 -0
- data/public/rearview-src/img/sample-monitor.png +0 -0
- data/public/rearview-src/js/app.build.js +15 -0
- data/public/rearview-src/js/app.js +295 -0
- data/public/rearview-src/js/collection/dashboard.js +41 -0
- data/public/rearview-src/js/collection/monitor.js +53 -0
- data/public/rearview-src/js/main.js +89 -0
- data/public/rearview-src/js/model/base.js +34 -0
- data/public/rearview-src/js/model/dashboard.js +47 -0
- data/public/rearview-src/js/model/monitor.js +67 -0
- data/public/rearview-src/js/model/user.js +81 -0
- data/public/rearview-src/js/route/index.js +47 -0
- data/public/rearview-src/js/util/highcharts-gray-theme.js +266 -0
- data/public/rearview-src/js/util/templar.js +178 -0
- data/public/rearview-src/js/view/addcategory.js +250 -0
- data/public/rearview-src/js/view/adddashboard.js +166 -0
- data/public/rearview-src/js/view/addmonitor.js +679 -0
- data/public/rearview-src/js/view/alert.js +47 -0
- data/public/rearview-src/js/view/alerttimeline.js +340 -0
- data/public/rearview-src/js/view/base.js +535 -0
- data/public/rearview-src/js/view/dashboard.js +493 -0
- data/public/rearview-src/js/view/dashboardtile.js +146 -0
- data/public/rearview-src/js/view/deletemonitor.js +68 -0
- data/public/rearview-src/js/view/ecosystem.js +90 -0
- data/public/rearview-src/js/view/expandedmonitor.js +706 -0
- data/public/rearview-src/js/view/header.js +43 -0
- data/public/rearview-src/js/view/primarynav.js +63 -0
- data/public/rearview-src/js/view/resetmonitor.js +101 -0
- data/public/rearview-src/js/view/secondarynav.js +45 -0
- data/public/rearview-src/js/view/smallmonitor.js +416 -0
- data/public/rearview-src/less/alert.less +45 -0
- data/public/rearview-src/less/dashboard.less +173 -0
- data/public/rearview-src/less/ecosystem.less +221 -0
- data/public/rearview-src/less/elements.less +168 -0
- data/public/rearview-src/less/expandedmonitor.less +283 -0
- data/public/rearview-src/less/header.less +76 -0
- data/public/rearview-src/less/login.less +1050 -0
- data/public/rearview-src/less/primarynav.less +151 -0
- data/public/rearview-src/less/rearview.less +1207 -0
- data/public/rearview-src/login/icons/rearview.svg +19 -0
- data/public/rearview-src/templates/addcategory.hbs +38 -0
- data/public/rearview-src/templates/adddashboard.hbs +26 -0
- data/public/rearview-src/templates/addmonitor.hbs +10 -0
- data/public/rearview-src/templates/alert.hbs +4 -0
- data/public/rearview-src/templates/alerttimeline.hbs +15 -0
- data/public/rearview-src/templates/dashboard.hbs +35 -0
- data/public/rearview-src/templates/dashboardtile.hbs +22 -0
- data/public/rearview-src/templates/deletemonitor.hbs +16 -0
- data/public/rearview-src/templates/expandedmonitor.hbs +191 -0
- data/public/rearview-src/templates/header.hbs +9 -0
- data/public/rearview-src/templates/primarynav.hbs +50 -0
- data/public/rearview-src/templates/resetmonitor.hbs +16 -0
- data/public/rearview-src/templates/schedulemonitor.hbs +78 -0
- data/public/rearview-src/templates/secondarynav.hbs +11 -0
- data/public/rearview-src/templates/setmetrics.hbs +53 -0
- data/public/rearview-src/templates/smallmonitor.hbs +52 -0
- data/public/rearview-src/templates/test.txt +1 -0
- data/public/rearview-src/test/spec/model/application.js +60 -0
- data/public/rearview-src/test/spec/model/job.js +109 -0
- data/public/rearview-src/test/spec/model/user.js +50 -0
- data/public/rearview-src/test/spec/view/base.js +58 -0
- data/public/rearview-src/vendor/backbone/js/backbone.js +1431 -0
- data/public/rearview-src/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +130 -0
- data/public/rearview-src/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +221 -0
- data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.css +1109 -0
- data/public/rearview-src/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
- data/public/rearview-src/vendor/bootstrap/css/bootstrap.css +6167 -0
- data/public/rearview-src/vendor/bootstrap/css/bootstrap.min.css +9 -0
- data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
- data/public/rearview-src/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
- data/public/rearview-src/vendor/bootstrap/js/bootstrap.js +2280 -0
- data/public/rearview-src/vendor/bootstrap/js/bootstrap.min.js +6 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +274 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +841 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +13 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +13 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +13 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +15 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +16 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +15 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +13 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +48 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +4 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +26 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +29 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +235 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +1669 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +21 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +157 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +157 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +80 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +195 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +86 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +410 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +26 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +66 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +251 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +33 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +264 -0
- data/public/rearview-src/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1479 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
- data/public/rearview-src/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
- data/public/rearview-src/vendor/codemirror/LICENSE +23 -0
- data/public/rearview-src/vendor/codemirror/README.md +8 -0
- data/public/rearview-src/vendor/codemirror/demo/activeline.html +73 -0
- data/public/rearview-src/vendor/codemirror/demo/changemode.html +51 -0
- data/public/rearview-src/vendor/codemirror/demo/closetag.html +66 -0
- data/public/rearview-src/vendor/codemirror/demo/complete.html +71 -0
- data/public/rearview-src/vendor/codemirror/demo/emacs.html +60 -0
- data/public/rearview-src/vendor/codemirror/demo/folding.html +62 -0
- data/public/rearview-src/vendor/codemirror/demo/formatting.html +81 -0
- data/public/rearview-src/vendor/codemirror/demo/fullscreen.html +147 -0
- data/public/rearview-src/vendor/codemirror/demo/loadmode.html +40 -0
- data/public/rearview-src/vendor/codemirror/demo/marker.html +53 -0
- data/public/rearview-src/vendor/codemirror/demo/matchhighlighter.html +38 -0
- data/public/rearview-src/vendor/codemirror/demo/multiplex.html +60 -0
- data/public/rearview-src/vendor/codemirror/demo/mustache.html +58 -0
- data/public/rearview-src/vendor/codemirror/demo/preview.html +76 -0
- data/public/rearview-src/vendor/codemirror/demo/resize.html +42 -0
- data/public/rearview-src/vendor/codemirror/demo/runmode.html +50 -0
- data/public/rearview-src/vendor/codemirror/demo/search.html +85 -0
- data/public/rearview-src/vendor/codemirror/demo/theme.html +79 -0
- data/public/rearview-src/vendor/codemirror/demo/vim.html +53 -0
- data/public/rearview-src/vendor/codemirror/demo/visibletabs.html +53 -0
- data/public/rearview-src/vendor/codemirror/demo/xmlcomplete.html +71 -0
- data/public/rearview-src/vendor/codemirror/doc/baboon.png +0 -0
- data/public/rearview-src/vendor/codemirror/doc/baboon_vector.svg +153 -0
- data/public/rearview-src/vendor/codemirror/doc/compress.html +163 -0
- data/public/rearview-src/vendor/codemirror/doc/docs.css +165 -0
- data/public/rearview-src/vendor/codemirror/doc/internals.html +497 -0
- data/public/rearview-src/vendor/codemirror/doc/manual.html +1224 -0
- data/public/rearview-src/vendor/codemirror/doc/oldrelease.html +305 -0
- data/public/rearview-src/vendor/codemirror/doc/reporting.html +60 -0
- data/public/rearview-src/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
- data/public/rearview-src/vendor/codemirror/index.html +472 -0
- data/public/rearview-src/vendor/codemirror/keymap/emacs.js +29 -0
- data/public/rearview-src/vendor/codemirror/keymap/vim.js +789 -0
- data/public/rearview-src/vendor/codemirror/lib/codemirror.css +173 -0
- data/public/rearview-src/vendor/codemirror/lib/codemirror.js +3143 -0
- data/public/rearview-src/vendor/codemirror/lib/util/closetag.js +164 -0
- data/public/rearview-src/vendor/codemirror/lib/util/dialog.css +27 -0
- data/public/rearview-src/vendor/codemirror/lib/util/dialog.js +70 -0
- data/public/rearview-src/vendor/codemirror/lib/util/foldcode.js +196 -0
- data/public/rearview-src/vendor/codemirror/lib/util/formatting.js +193 -0
- data/public/rearview-src/vendor/codemirror/lib/util/javascript-hint.js +134 -0
- data/public/rearview-src/vendor/codemirror/lib/util/loadmode.js +51 -0
- data/public/rearview-src/vendor/codemirror/lib/util/match-highlighter.js +44 -0
- data/public/rearview-src/vendor/codemirror/lib/util/multiplex.js +77 -0
- data/public/rearview-src/vendor/codemirror/lib/util/overlay.js +54 -0
- data/public/rearview-src/vendor/codemirror/lib/util/pig-hint.js +123 -0
- data/public/rearview-src/vendor/codemirror/lib/util/runmode-standalone.js +90 -0
- data/public/rearview-src/vendor/codemirror/lib/util/runmode.js +53 -0
- data/public/rearview-src/vendor/codemirror/lib/util/search.js +118 -0
- data/public/rearview-src/vendor/codemirror/lib/util/searchcursor.js +119 -0
- data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.css +16 -0
- data/public/rearview-src/vendor/codemirror/lib/util/simple-hint.js +97 -0
- data/public/rearview-src/vendor/codemirror/lib/util/xml-hint.js +137 -0
- data/public/rearview-src/vendor/codemirror/mode/clike/clike.js +284 -0
- data/public/rearview-src/vendor/codemirror/mode/clike/index.html +102 -0
- data/public/rearview-src/vendor/codemirror/mode/clike/scala.html +766 -0
- data/public/rearview-src/vendor/codemirror/mode/clojure/clojure.js +206 -0
- data/public/rearview-src/vendor/codemirror/mode/clojure/index.html +67 -0
- data/public/rearview-src/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
- data/public/rearview-src/vendor/codemirror/mode/coffeescript/coffeescript.js +346 -0
- data/public/rearview-src/vendor/codemirror/mode/coffeescript/index.html +728 -0
- data/public/rearview-src/vendor/codemirror/mode/commonlisp/commonlisp.js +101 -0
- data/public/rearview-src/vendor/codemirror/mode/commonlisp/index.html +165 -0
- data/public/rearview-src/vendor/codemirror/mode/css/css.js +448 -0
- data/public/rearview-src/vendor/codemirror/mode/css/index.html +58 -0
- data/public/rearview-src/vendor/codemirror/mode/css/test.js +501 -0
- data/public/rearview-src/vendor/codemirror/mode/diff/diff.js +32 -0
- data/public/rearview-src/vendor/codemirror/mode/diff/index.html +105 -0
- data/public/rearview-src/vendor/codemirror/mode/ecl/ecl.js +203 -0
- data/public/rearview-src/vendor/codemirror/mode/ecl/index.html +42 -0
- data/public/rearview-src/vendor/codemirror/mode/erlang/erlang.js +463 -0
- data/public/rearview-src/vendor/codemirror/mode/erlang/index.html +63 -0
- data/public/rearview-src/vendor/codemirror/mode/gfm/gfm.js +150 -0
- data/public/rearview-src/vendor/codemirror/mode/gfm/index.html +48 -0
- data/public/rearview-src/vendor/codemirror/mode/go/go.js +170 -0
- data/public/rearview-src/vendor/codemirror/mode/go/index.html +73 -0
- data/public/rearview-src/vendor/codemirror/mode/groovy/groovy.js +210 -0
- data/public/rearview-src/vendor/codemirror/mode/groovy/index.html +72 -0
- data/public/rearview-src/vendor/codemirror/mode/haskell/haskell.js +242 -0
- data/public/rearview-src/vendor/codemirror/mode/haskell/index.html +61 -0
- data/public/rearview-src/vendor/codemirror/mode/haxe/haxe.js +429 -0
- data/public/rearview-src/vendor/codemirror/mode/haxe/index.html +91 -0
- data/public/rearview-src/vendor/codemirror/mode/htmlembedded/htmlembedded.js +72 -0
- data/public/rearview-src/vendor/codemirror/mode/htmlembedded/index.html +50 -0
- data/public/rearview-src/vendor/codemirror/mode/htmlmixed/htmlmixed.js +84 -0
- data/public/rearview-src/vendor/codemirror/mode/htmlmixed/index.html +52 -0
- data/public/rearview-src/vendor/codemirror/mode/javascript/index.html +78 -0
- data/public/rearview-src/vendor/codemirror/mode/javascript/javascript.js +361 -0
- data/public/rearview-src/vendor/codemirror/mode/jinja2/index.html +38 -0
- data/public/rearview-src/vendor/codemirror/mode/jinja2/jinja2.js +42 -0
- data/public/rearview-src/vendor/codemirror/mode/less/index.html +740 -0
- data/public/rearview-src/vendor/codemirror/mode/less/less.js +266 -0
- data/public/rearview-src/vendor/codemirror/mode/lua/index.html +73 -0
- data/public/rearview-src/vendor/codemirror/mode/lua/lua.js +140 -0
- data/public/rearview-src/vendor/codemirror/mode/markdown/index.html +343 -0
- data/public/rearview-src/vendor/codemirror/mode/markdown/markdown.js +382 -0
- data/public/rearview-src/vendor/codemirror/mode/markdown/test.js +1084 -0
- data/public/rearview-src/vendor/codemirror/mode/mysql/index.html +42 -0
- data/public/rearview-src/vendor/codemirror/mode/mysql/mysql.js +186 -0
- data/public/rearview-src/vendor/codemirror/mode/ntriples/index.html +33 -0
- data/public/rearview-src/vendor/codemirror/mode/ntriples/ntriples.js +172 -0
- data/public/rearview-src/vendor/codemirror/mode/ocaml/index.html +130 -0
- data/public/rearview-src/vendor/codemirror/mode/ocaml/ocaml.js +114 -0
- data/public/rearview-src/vendor/codemirror/mode/pascal/LICENSE +7 -0
- data/public/rearview-src/vendor/codemirror/mode/pascal/index.html +49 -0
- data/public/rearview-src/vendor/codemirror/mode/pascal/pascal.js +94 -0
- data/public/rearview-src/vendor/codemirror/mode/perl/LICENSE +19 -0
- data/public/rearview-src/vendor/codemirror/mode/perl/index.html +63 -0
- data/public/rearview-src/vendor/codemirror/mode/perl/perl.js +816 -0
- data/public/rearview-src/vendor/codemirror/mode/php/index.html +49 -0
- data/public/rearview-src/vendor/codemirror/mode/php/php.js +148 -0
- data/public/rearview-src/vendor/codemirror/mode/pig/index.html +43 -0
- data/public/rearview-src/vendor/codemirror/mode/pig/pig.js +172 -0
- data/public/rearview-src/vendor/codemirror/mode/plsql/index.html +63 -0
- data/public/rearview-src/vendor/codemirror/mode/plsql/plsql.js +217 -0
- data/public/rearview-src/vendor/codemirror/mode/properties/index.html +41 -0
- data/public/rearview-src/vendor/codemirror/mode/properties/properties.js +63 -0
- data/public/rearview-src/vendor/codemirror/mode/python/LICENSE.txt +21 -0
- data/public/rearview-src/vendor/codemirror/mode/python/index.html +123 -0
- data/public/rearview-src/vendor/codemirror/mode/python/python.js +338 -0
- data/public/rearview-src/vendor/codemirror/mode/r/LICENSE +24 -0
- data/public/rearview-src/vendor/codemirror/mode/r/index.html +74 -0
- data/public/rearview-src/vendor/codemirror/mode/r/r.js +141 -0
- data/public/rearview-src/vendor/codemirror/mode/rpm/changes/changes.js +19 -0
- data/public/rearview-src/vendor/codemirror/mode/rpm/changes/index.html +54 -0
- data/public/rearview-src/vendor/codemirror/mode/rpm/spec/index.html +100 -0
- data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
- data/public/rearview-src/vendor/codemirror/mode/rpm/spec/spec.js +66 -0
- data/public/rearview-src/vendor/codemirror/mode/rst/index.html +526 -0
- data/public/rearview-src/vendor/codemirror/mode/rst/rst.js +326 -0
- data/public/rearview-src/vendor/codemirror/mode/ruby/LICENSE +24 -0
- data/public/rearview-src/vendor/codemirror/mode/ruby/index.html +172 -0
- data/public/rearview-src/vendor/codemirror/mode/ruby/ruby.js +195 -0
- data/public/rearview-src/vendor/codemirror/mode/rust/index.html +49 -0
- data/public/rearview-src/vendor/codemirror/mode/rust/rust.js +432 -0
- data/public/rearview-src/vendor/codemirror/mode/scheme/index.html +65 -0
- data/public/rearview-src/vendor/codemirror/mode/scheme/scheme.js +230 -0
- data/public/rearview-src/vendor/codemirror/mode/shell/index.html +50 -0
- data/public/rearview-src/vendor/codemirror/mode/shell/shell.js +118 -0
- data/public/rearview-src/vendor/codemirror/mode/sieve/LICENSE +23 -0
- data/public/rearview-src/vendor/codemirror/mode/sieve/index.html +81 -0
- data/public/rearview-src/vendor/codemirror/mode/sieve/sieve.js +156 -0
- data/public/rearview-src/vendor/codemirror/mode/smalltalk/index.html +56 -0
- data/public/rearview-src/vendor/codemirror/mode/smalltalk/smalltalk.js +139 -0
- data/public/rearview-src/vendor/codemirror/mode/smarty/index.html +83 -0
- data/public/rearview-src/vendor/codemirror/mode/smarty/smarty.js +148 -0
- data/public/rearview-src/vendor/codemirror/mode/sparql/index.html +41 -0
- data/public/rearview-src/vendor/codemirror/mode/sparql/sparql.js +143 -0
- data/public/rearview-src/vendor/codemirror/mode/stex/index.html +98 -0
- data/public/rearview-src/vendor/codemirror/mode/stex/stex.js +182 -0
- data/public/rearview-src/vendor/codemirror/mode/stex/test.js +343 -0
- data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
- data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/public/rearview-src/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +384 -0
- data/public/rearview-src/vendor/codemirror/mode/tiki/index.html +83 -0
- data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.css +26 -0
- data/public/rearview-src/vendor/codemirror/mode/tiki/tiki.js +309 -0
- data/public/rearview-src/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
- data/public/rearview-src/vendor/codemirror/mode/vb/index.html +89 -0
- data/public/rearview-src/vendor/codemirror/mode/vb/vb.js +260 -0
- data/public/rearview-src/vendor/codemirror/mode/vbscript/index.html +43 -0
- data/public/rearview-src/vendor/codemirror/mode/vbscript/vbscript.js +26 -0
- data/public/rearview-src/vendor/codemirror/mode/velocity/index.html +104 -0
- data/public/rearview-src/vendor/codemirror/mode/velocity/velocity.js +146 -0
- data/public/rearview-src/vendor/codemirror/mode/verilog/index.html +211 -0
- data/public/rearview-src/vendor/codemirror/mode/verilog/verilog.js +194 -0
- data/public/rearview-src/vendor/codemirror/mode/xml/index.html +45 -0
- data/public/rearview-src/vendor/codemirror/mode/xml/xml.js +318 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/LICENSE +20 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/index.html +223 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/index.html +27 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testBase.js +42 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +16 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testMultiAttr.js +16 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testNamespaces.js +91 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +16 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/test/testQuotes.js +19 -0
- data/public/rearview-src/vendor/codemirror/mode/xquery/xquery.js +451 -0
- data/public/rearview-src/vendor/codemirror/mode/yaml/index.html +68 -0
- data/public/rearview-src/vendor/codemirror/mode/yaml/yaml.js +95 -0
- data/public/rearview-src/vendor/codemirror/package.json +21 -0
- data/public/rearview-src/vendor/codemirror/test/driver.js +129 -0
- data/public/rearview-src/vendor/codemirror/test/index.html +168 -0
- data/public/rearview-src/vendor/codemirror/test/lint/lint.js +120 -0
- data/public/rearview-src/vendor/codemirror/test/lint/parse-js.js +1372 -0
- data/public/rearview-src/vendor/codemirror/test/mode_test.css +10 -0
- data/public/rearview-src/vendor/codemirror/test/mode_test.js +203 -0
- data/public/rearview-src/vendor/codemirror/test/phantom_driver.js +30 -0
- data/public/rearview-src/vendor/codemirror/test/run.js +32 -0
- data/public/rearview-src/vendor/codemirror/test/test.js +672 -0
- data/public/rearview-src/vendor/codemirror/theme/ambiance.css +81 -0
- data/public/rearview-src/vendor/codemirror/theme/blackboard.css +25 -0
- data/public/rearview-src/vendor/codemirror/theme/cobalt.css +18 -0
- data/public/rearview-src/vendor/codemirror/theme/eclipse.css +25 -0
- data/public/rearview-src/vendor/codemirror/theme/elegant.css +10 -0
- data/public/rearview-src/vendor/codemirror/theme/erlang-dark.css +21 -0
- data/public/rearview-src/vendor/codemirror/theme/lesser-dark.css +44 -0
- data/public/rearview-src/vendor/codemirror/theme/monokai.css +28 -0
- data/public/rearview-src/vendor/codemirror/theme/neat.css +9 -0
- data/public/rearview-src/vendor/codemirror/theme/night.css +21 -0
- data/public/rearview-src/vendor/codemirror/theme/rubyblue.css +21 -0
- data/public/rearview-src/vendor/codemirror/theme/vibrant-ink.css +27 -0
- data/public/rearview-src/vendor/codemirror/theme/xq-dark.css +46 -0
- data/public/rearview-src/vendor/handlebars/js/handlebars.js +1920 -0
- data/public/rearview-src/vendor/highcharts/examples/area-basic/index.htm +94 -0
- data/public/rearview-src/vendor/highcharts/examples/area-inverted/index.htm +91 -0
- data/public/rearview-src/vendor/highcharts/examples/area-missing/index.htm +85 -0
- data/public/rearview-src/vendor/highcharts/examples/area-negative/index.htm +55 -0
- data/public/rearview-src/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
- data/public/rearview-src/vendor/highcharts/examples/area-stacked/index.htm +86 -0
- data/public/rearview-src/vendor/highcharts/examples/arearange/index.htm +62 -0
- data/public/rearview-src/vendor/highcharts/examples/areaspline/index.htm +85 -0
- data/public/rearview-src/vendor/highcharts/examples/bar-basic/index.htm +89 -0
- data/public/rearview-src/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
- data/public/rearview-src/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
- data/public/rearview-src/vendor/highcharts/examples/column-basic/index.htm +97 -0
- data/public/rearview-src/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
- data/public/rearview-src/vendor/highcharts/examples/column-negative/index.htm +55 -0
- data/public/rearview-src/vendor/highcharts/examples/column-parsed/index.htm +120 -0
- data/public/rearview-src/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
- data/public/rearview-src/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
- data/public/rearview-src/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
- data/public/rearview-src/vendor/highcharts/examples/column-stacked/index.htm +86 -0
- data/public/rearview-src/vendor/highcharts/examples/columnrange/index.htm +87 -0
- data/public/rearview-src/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
- data/public/rearview-src/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
- data/public/rearview-src/vendor/highcharts/examples/combo-regression/index.htm +60 -0
- data/public/rearview-src/vendor/highcharts/examples/combo/index.htm +102 -0
- data/public/rearview-src/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
- data/public/rearview-src/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
- data/public/rearview-src/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
- data/public/rearview-src/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
- data/public/rearview-src/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
- data/public/rearview-src/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
- data/public/rearview-src/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
- data/public/rearview-src/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
- data/public/rearview-src/vendor/highcharts/examples/line-ajax/index.htm +188 -0
- data/public/rearview-src/vendor/highcharts/examples/line-basic/index.htm +81 -0
- data/public/rearview-src/vendor/highcharts/examples/line-labels/index.htm +66 -0
- data/public/rearview-src/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
- data/public/rearview-src/vendor/highcharts/examples/line-time-series/index.htm +206 -0
- data/public/rearview-src/vendor/highcharts/examples/pie-basic/index.htm +70 -0
- data/public/rearview-src/vendor/highcharts/examples/pie-donut/index.htm +146 -0
- data/public/rearview-src/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
- data/public/rearview-src/vendor/highcharts/examples/pie-legend/index.htm +69 -0
- data/public/rearview-src/vendor/highcharts/examples/polar-spider/index.htm +75 -0
- data/public/rearview-src/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
- data/public/rearview-src/vendor/highcharts/examples/polar/index.htm +79 -0
- data/public/rearview-src/vendor/highcharts/examples/scatter/index.htm +197 -0
- data/public/rearview-src/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
- data/public/rearview-src/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
- data/public/rearview-src/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
- data/public/rearview-src/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/java/install.txt +10 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
- data/public/rearview-src/vendor/highcharts/exporting-server/php/index.php +112 -0
- data/public/rearview-src/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
- data/public/rearview-src/vendor/highcharts/graphics/skies.jpg +0 -0
- data/public/rearview-src/vendor/highcharts/graphics/snow.png +0 -0
- data/public/rearview-src/vendor/highcharts/graphics/sun.png +0 -0
- data/public/rearview-src/vendor/highcharts/index.htm +79 -0
- data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.js +13 -0
- data/public/rearview-src/vendor/highcharts/js/adapters/mootools-adapter.src.js +327 -0
- data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.js +16 -0
- data/public/rearview-src/vendor/highcharts/js/adapters/prototype-adapter.src.js +385 -0
- data/public/rearview-src/vendor/highcharts/js/highcharts-more.js +35 -0
- data/public/rearview-src/vendor/highcharts/js/highcharts.js +249 -0
- data/public/rearview-src/vendor/highcharts/js/highcharts.src.js +15111 -0
- data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.js +133 -0
- data/public/rearview-src/vendor/highcharts/js/modules/canvas-tools.src.js +3113 -0
- data/public/rearview-src/vendor/highcharts/js/modules/data.js +11 -0
- data/public/rearview-src/vendor/highcharts/js/modules/data.src.js +277 -0
- data/public/rearview-src/vendor/highcharts/js/modules/exporting.js +23 -0
- data/public/rearview-src/vendor/highcharts/js/modules/exporting.src.js +736 -0
- data/public/rearview-src/vendor/highcharts/js/themes/dark-blue.js +263 -0
- data/public/rearview-src/vendor/highcharts/js/themes/dark-green.js +263 -0
- data/public/rearview-src/vendor/highcharts/js/themes/gray.js +262 -0
- data/public/rearview-src/vendor/highcharts/js/themes/grid.js +95 -0
- data/public/rearview-src/vendor/highcharts/js/themes/skies.js +89 -0
- data/public/rearview-src/vendor/jasmine/SpecRunner.html +53 -0
- data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
- data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +680 -0
- data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +82 -0
- data/public/rearview-src/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2600 -0
- data/public/rearview-src/vendor/jasmine/spec/PlayerSpec.js +58 -0
- data/public/rearview-src/vendor/jasmine/spec/SpecHelper.js +9 -0
- data/public/rearview-src/vendor/jasmine/src/Player.js +22 -0
- data/public/rearview-src/vendor/jasmine/src/Song.js +7 -0
- data/public/rearview-src/vendor/jquery/js/jquery.js +9440 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +785 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +378 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +25 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +19 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +81 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +100 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +1573 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +101 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +4835 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +244 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +2152 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +9597 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +648 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +12 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +25 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +93 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +178 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +406 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- 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
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- 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
- 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
- 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
- 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
- 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
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +649 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +12 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +25 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +93 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +178 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +406 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1645 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +59 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +21 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +24 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +22 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +22 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +24 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +6562 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +320 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +2038 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +958 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +372 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +82 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +113 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +67 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +65 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +97 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +30 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +76 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +50 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +63 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +318 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +74 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +64 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +47 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +1289 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +169 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +521 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +7935 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +7 -0
- data/public/rearview-src/vendor/jquery/plugins/jquery.validate.js +51 -0
- data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
- data/public/rearview-src/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +2162 -0
- data/public/rearview-src/vendor/less/js/less.js +11 -0
- data/public/rearview-src/vendor/parsley/js/parsley.js +421 -0
- data/public/rearview-src/vendor/parsley/js/parsley.min.js +27 -0
- data/public/rearview-src/vendor/require/js/require.js +11408 -0
- data/public/rearview-src/vendor/require/plugins/domready/domready.js +129 -0
- data/public/rearview-src/vendor/timeline/examples/example.json +38 -0
- data/public/rearview-src/vendor/timeline/examples/timeline_json.html +143 -0
- data/public/rearview-src/vendor/timeline/timeline.css +130 -0
- data/public/rearview-src/vendor/timeline/timeline.js +5055 -0
- data/public/rearview-src/vendor/underscore/js/underscore.js +1227 -0
- data/public/rearview-src/vendor/underscore/plugins/underscore-string/js/underscore.string.js +644 -0
- data/public/rearview-src/vendor/xdate/js/xdate.js +802 -0
- data/public/rearview/build.txt +295 -0
- data/public/rearview/css/rearview.css +1 -0
- data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.eot +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.svg +249 -0
- data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.ttf +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold-webfont.woff +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Bold/ProximaNovaSoft-Bold.otf +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.eot +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.svg +250 -0
- data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.ttf +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular-webfont.woff +0 -0
- data/public/rearview/fonts/ProximaNovaSoft-Regular/ProximaNovaSoft-Regular.otf +0 -0
- data/public/rearview/img/livingsocial-logo-white.svg +107 -0
- data/public/rearview/img/login/company-logo.svg +107 -0
- data/public/rearview/img/noise-light.png +0 -0
- data/public/rearview/img/noise.png +0 -0
- data/public/rearview/img/rearview.svg +19 -0
- data/public/rearview/img/rearviewlogo.png +0 -0
- data/public/rearview/img/rearviewlogo_small.png +0 -0
- data/public/rearview/img/sample-monitor.png +0 -0
- data/public/rearview/js/app.build.js +0 -0
- data/public/rearview/js/app.js +1 -0
- data/public/rearview/js/collection/dashboard.js +1 -0
- data/public/rearview/js/collection/monitor.js +1 -0
- data/public/rearview/js/main.js +402 -0
- data/public/rearview/js/model/base.js +1 -0
- data/public/rearview/js/model/dashboard.js +1 -0
- data/public/rearview/js/model/monitor.js +1 -0
- data/public/rearview/js/model/user.js +1 -0
- data/public/rearview/js/route/index.js +1 -0
- data/public/rearview/js/util/highcharts-gray-theme.js +1 -0
- data/public/rearview/js/util/templar.js +1 -0
- data/public/rearview/js/view/addcategory.js +1 -0
- data/public/rearview/js/view/adddashboard.js +1 -0
- data/public/rearview/js/view/addmonitor.js +1 -0
- data/public/rearview/js/view/alert.js +1 -0
- data/public/rearview/js/view/alerttimeline.js +1 -0
- data/public/rearview/js/view/base.js +1 -0
- data/public/rearview/js/view/dashboard.js +1 -0
- data/public/rearview/js/view/dashboardtile.js +1 -0
- data/public/rearview/js/view/deletemonitor.js +1 -0
- data/public/rearview/js/view/ecosystem.js +1 -0
- data/public/rearview/js/view/expandedmonitor.js +1 -0
- data/public/rearview/js/view/header.js +1 -0
- data/public/rearview/js/view/primarynav.js +1 -0
- data/public/rearview/js/view/resetmonitor.js +1 -0
- data/public/rearview/js/view/secondarynav.js +1 -0
- data/public/rearview/js/view/smallmonitor.js +1 -0
- data/public/rearview/less/alert.less +45 -0
- data/public/rearview/less/dashboard.less +173 -0
- data/public/rearview/less/ecosystem.less +221 -0
- data/public/rearview/less/elements.less +168 -0
- data/public/rearview/less/expandedmonitor.less +283 -0
- data/public/rearview/less/header.less +76 -0
- data/public/rearview/less/login.less +1050 -0
- data/public/rearview/less/primarynav.less +151 -0
- data/public/rearview/less/rearview.less +1207 -0
- data/public/rearview/login/icons/rearview.svg +19 -0
- data/public/rearview/templates/addcategory.hbs +38 -0
- data/public/rearview/templates/adddashboard.hbs +26 -0
- data/public/rearview/templates/addmonitor.hbs +10 -0
- data/public/rearview/templates/alert.hbs +4 -0
- data/public/rearview/templates/alerttimeline.hbs +15 -0
- data/public/rearview/templates/dashboard.hbs +35 -0
- data/public/rearview/templates/dashboardtile.hbs +22 -0
- data/public/rearview/templates/deletemonitor.hbs +16 -0
- data/public/rearview/templates/expandedmonitor.hbs +191 -0
- data/public/rearview/templates/header.hbs +9 -0
- data/public/rearview/templates/primarynav.hbs +50 -0
- data/public/rearview/templates/resetmonitor.hbs +16 -0
- data/public/rearview/templates/schedulemonitor.hbs +78 -0
- data/public/rearview/templates/secondarynav.hbs +11 -0
- data/public/rearview/templates/setmetrics.hbs +53 -0
- data/public/rearview/templates/smallmonitor.hbs +52 -0
- data/public/rearview/templates/test.txt +1 -0
- data/public/rearview/test/spec/model/application.js +1 -0
- data/public/rearview/test/spec/model/job.js +1 -0
- data/public/rearview/test/spec/model/user.js +1 -0
- data/public/rearview/test/spec/view/base.js +1 -0
- data/public/rearview/vendor/backbone/js/backbone.js +6 -0
- data/public/rearview/vendor/backbone/plugins/backbone-localStorage/js/backbone-localStorage.js +1 -0
- data/public/rearview/vendor/backbone/plugins/backbone-mediator/js/backbone-mediator.js +15 -0
- data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.css +1088 -0
- data/public/rearview/vendor/bootstrap/css/bootstrap-responsive.min.css +9 -0
- data/public/rearview/vendor/bootstrap/css/bootstrap.css +5209 -0
- data/public/rearview/vendor/bootstrap/css/bootstrap.min.css +9 -0
- data/public/rearview/vendor/bootstrap/img/glyphicons-halflings-white.png +0 -0
- data/public/rearview/vendor/bootstrap/img/glyphicons-halflings.png +0 -0
- data/public/rearview/vendor/bootstrap/js/bootstrap.js +249 -0
- data/public/rearview/vendor/bootstrap/js/bootstrap.min.js +7 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/LICENSE +202 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/README.md +305 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build.less +66 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/build/build_standalone.less +69 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/css/datepicker.css +271 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js +21 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.cs.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.da.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.de.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.es.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fi.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.fr.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.id.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.is.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.it.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ja.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.kr.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lt.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.lv.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ms.js +14 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nb.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.nl.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pl.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt-BR.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.pt.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.ru.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.sv.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.th.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.tr.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-CN.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/js/locales/bootstrap-datepicker.zh-TW.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/less/datepicker.less +147 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/README.md +55 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/_coverage.html +26 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/coverage.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/jquery-1.7.1.min.js +5 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/mock.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit-logging.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.css +170 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/qunit.js +37 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/assets/utils.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/run-qunit.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/component.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/events.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/formats.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2011.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/2012.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2011.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/2012.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/mouse_navigation/all.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/suites/options.js +1 -0
- data/public/rearview/vendor/bootstrap/plugins/bootstrap-datepicker/tests/tests.html +45 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.css +1203 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome-ie7.min.css +384 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.css +1457 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/css/font-awesome.min.css +403 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/FontAwesome.otf +0 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.eot +0 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.svg +399 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.ttf +0 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/font/fontawesome-webfont.woff +0 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/bootstrap.less +84 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/core.less +129 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/extras.less +93 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome-ie7.less +1953 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/font-awesome.less +33 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/icons.less +381 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/mixins.less +48 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/path.less +14 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/less/variables.less +735 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_bootstrap.scss +84 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_core.scss +129 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_extras.scss +93 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_icons.scss +381 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_mixins.scss +48 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_path.scss +14 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/_variables.scss +734 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome-ie7.scss +1953 -0
- data/public/rearview/vendor/bootstrap/plugins/font-awesome/scss/font-awesome.scss +33 -0
- data/public/rearview/vendor/codemirror/LICENSE +23 -0
- data/public/rearview/vendor/codemirror/README.md +8 -0
- data/public/rearview/vendor/codemirror/demo/activeline.html +73 -0
- data/public/rearview/vendor/codemirror/demo/changemode.html +51 -0
- data/public/rearview/vendor/codemirror/demo/closetag.html +66 -0
- data/public/rearview/vendor/codemirror/demo/complete.html +71 -0
- data/public/rearview/vendor/codemirror/demo/emacs.html +60 -0
- data/public/rearview/vendor/codemirror/demo/folding.html +62 -0
- data/public/rearview/vendor/codemirror/demo/formatting.html +81 -0
- data/public/rearview/vendor/codemirror/demo/fullscreen.html +147 -0
- data/public/rearview/vendor/codemirror/demo/loadmode.html +40 -0
- data/public/rearview/vendor/codemirror/demo/marker.html +53 -0
- data/public/rearview/vendor/codemirror/demo/matchhighlighter.html +38 -0
- data/public/rearview/vendor/codemirror/demo/multiplex.html +60 -0
- data/public/rearview/vendor/codemirror/demo/mustache.html +58 -0
- data/public/rearview/vendor/codemirror/demo/preview.html +76 -0
- data/public/rearview/vendor/codemirror/demo/resize.html +42 -0
- data/public/rearview/vendor/codemirror/demo/runmode.html +50 -0
- data/public/rearview/vendor/codemirror/demo/search.html +85 -0
- data/public/rearview/vendor/codemirror/demo/theme.html +79 -0
- data/public/rearview/vendor/codemirror/demo/vim.html +53 -0
- data/public/rearview/vendor/codemirror/demo/visibletabs.html +53 -0
- data/public/rearview/vendor/codemirror/demo/xmlcomplete.html +71 -0
- data/public/rearview/vendor/codemirror/doc/baboon.png +0 -0
- data/public/rearview/vendor/codemirror/doc/baboon_vector.svg +153 -0
- data/public/rearview/vendor/codemirror/doc/compress.html +163 -0
- data/public/rearview/vendor/codemirror/doc/docs.css +138 -0
- data/public/rearview/vendor/codemirror/doc/internals.html +497 -0
- data/public/rearview/vendor/codemirror/doc/manual.html +1224 -0
- data/public/rearview/vendor/codemirror/doc/oldrelease.html +305 -0
- data/public/rearview/vendor/codemirror/doc/reporting.html +60 -0
- data/public/rearview/vendor/codemirror/doc/upgrade_v2.2.html +98 -0
- data/public/rearview/vendor/codemirror/index.html +472 -0
- data/public/rearview/vendor/codemirror/keymap/emacs.js +1 -0
- data/public/rearview/vendor/codemirror/keymap/vim.js +1 -0
- data/public/rearview/vendor/codemirror/lib/codemirror.css +149 -0
- data/public/rearview/vendor/codemirror/lib/codemirror.js +2 -0
- data/public/rearview/vendor/codemirror/lib/util/closetag.js +20 -0
- data/public/rearview/vendor/codemirror/lib/util/dialog.css +24 -0
- data/public/rearview/vendor/codemirror/lib/util/dialog.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/foldcode.js +5 -0
- data/public/rearview/vendor/codemirror/lib/util/formatting.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/javascript-hint.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/loadmode.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/match-highlighter.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/multiplex.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/overlay.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/pig-hint.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/runmode-standalone.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/runmode.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/search.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/searchcursor.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/simple-hint.css +16 -0
- data/public/rearview/vendor/codemirror/lib/util/simple-hint.js +1 -0
- data/public/rearview/vendor/codemirror/lib/util/xml-hint.js +1 -0
- data/public/rearview/vendor/codemirror/mode/clike/clike.js +1 -0
- data/public/rearview/vendor/codemirror/mode/clike/index.html +102 -0
- data/public/rearview/vendor/codemirror/mode/clike/scala.html +766 -0
- data/public/rearview/vendor/codemirror/mode/clojure/clojure.js +1 -0
- data/public/rearview/vendor/codemirror/mode/clojure/index.html +67 -0
- data/public/rearview/vendor/codemirror/mode/coffeescript/LICENSE +22 -0
- data/public/rearview/vendor/codemirror/mode/coffeescript/coffeescript.js +1 -0
- data/public/rearview/vendor/codemirror/mode/coffeescript/index.html +728 -0
- data/public/rearview/vendor/codemirror/mode/commonlisp/commonlisp.js +1 -0
- data/public/rearview/vendor/codemirror/mode/commonlisp/index.html +165 -0
- data/public/rearview/vendor/codemirror/mode/css/css.js +1 -0
- data/public/rearview/vendor/codemirror/mode/css/index.html +58 -0
- data/public/rearview/vendor/codemirror/mode/css/test.js +1 -0
- data/public/rearview/vendor/codemirror/mode/diff/diff.js +1 -0
- data/public/rearview/vendor/codemirror/mode/diff/index.html +105 -0
- data/public/rearview/vendor/codemirror/mode/ecl/ecl.js +1 -0
- data/public/rearview/vendor/codemirror/mode/ecl/index.html +42 -0
- data/public/rearview/vendor/codemirror/mode/erlang/erlang.js +1 -0
- data/public/rearview/vendor/codemirror/mode/erlang/index.html +63 -0
- data/public/rearview/vendor/codemirror/mode/gfm/gfm.js +1 -0
- data/public/rearview/vendor/codemirror/mode/gfm/index.html +48 -0
- data/public/rearview/vendor/codemirror/mode/go/go.js +1 -0
- data/public/rearview/vendor/codemirror/mode/go/index.html +73 -0
- data/public/rearview/vendor/codemirror/mode/groovy/groovy.js +1 -0
- data/public/rearview/vendor/codemirror/mode/groovy/index.html +72 -0
- data/public/rearview/vendor/codemirror/mode/haskell/haskell.js +1 -0
- data/public/rearview/vendor/codemirror/mode/haskell/index.html +61 -0
- data/public/rearview/vendor/codemirror/mode/haxe/haxe.js +1 -0
- data/public/rearview/vendor/codemirror/mode/haxe/index.html +91 -0
- data/public/rearview/vendor/codemirror/mode/htmlembedded/htmlembedded.js +1 -0
- data/public/rearview/vendor/codemirror/mode/htmlembedded/index.html +50 -0
- data/public/rearview/vendor/codemirror/mode/htmlmixed/htmlmixed.js +1 -0
- data/public/rearview/vendor/codemirror/mode/htmlmixed/index.html +52 -0
- data/public/rearview/vendor/codemirror/mode/javascript/index.html +78 -0
- data/public/rearview/vendor/codemirror/mode/javascript/javascript.js +1 -0
- data/public/rearview/vendor/codemirror/mode/jinja2/index.html +38 -0
- data/public/rearview/vendor/codemirror/mode/jinja2/jinja2.js +1 -0
- data/public/rearview/vendor/codemirror/mode/less/index.html +740 -0
- data/public/rearview/vendor/codemirror/mode/less/less.js +1 -0
- data/public/rearview/vendor/codemirror/mode/lua/index.html +73 -0
- data/public/rearview/vendor/codemirror/mode/lua/lua.js +1 -0
- data/public/rearview/vendor/codemirror/mode/markdown/index.html +343 -0
- data/public/rearview/vendor/codemirror/mode/markdown/markdown.js +1 -0
- data/public/rearview/vendor/codemirror/mode/markdown/test.js +1 -0
- data/public/rearview/vendor/codemirror/mode/mysql/index.html +42 -0
- data/public/rearview/vendor/codemirror/mode/mysql/mysql.js +1 -0
- data/public/rearview/vendor/codemirror/mode/ntriples/index.html +33 -0
- data/public/rearview/vendor/codemirror/mode/ntriples/ntriples.js +1 -0
- data/public/rearview/vendor/codemirror/mode/ocaml/index.html +130 -0
- data/public/rearview/vendor/codemirror/mode/ocaml/ocaml.js +1 -0
- data/public/rearview/vendor/codemirror/mode/pascal/LICENSE +7 -0
- data/public/rearview/vendor/codemirror/mode/pascal/index.html +49 -0
- data/public/rearview/vendor/codemirror/mode/pascal/pascal.js +1 -0
- data/public/rearview/vendor/codemirror/mode/perl/LICENSE +19 -0
- data/public/rearview/vendor/codemirror/mode/perl/index.html +63 -0
- data/public/rearview/vendor/codemirror/mode/perl/perl.js +1 -0
- data/public/rearview/vendor/codemirror/mode/php/index.html +49 -0
- data/public/rearview/vendor/codemirror/mode/php/php.js +1 -0
- data/public/rearview/vendor/codemirror/mode/pig/index.html +43 -0
- data/public/rearview/vendor/codemirror/mode/pig/pig.js +1 -0
- data/public/rearview/vendor/codemirror/mode/plsql/index.html +63 -0
- data/public/rearview/vendor/codemirror/mode/plsql/plsql.js +1 -0
- data/public/rearview/vendor/codemirror/mode/properties/index.html +41 -0
- data/public/rearview/vendor/codemirror/mode/properties/properties.js +1 -0
- data/public/rearview/vendor/codemirror/mode/python/LICENSE.txt +21 -0
- data/public/rearview/vendor/codemirror/mode/python/index.html +123 -0
- data/public/rearview/vendor/codemirror/mode/python/python.js +1 -0
- data/public/rearview/vendor/codemirror/mode/r/LICENSE +24 -0
- data/public/rearview/vendor/codemirror/mode/r/index.html +74 -0
- data/public/rearview/vendor/codemirror/mode/r/r.js +1 -0
- data/public/rearview/vendor/codemirror/mode/rpm/changes/changes.js +1 -0
- data/public/rearview/vendor/codemirror/mode/rpm/changes/index.html +54 -0
- data/public/rearview/vendor/codemirror/mode/rpm/spec/index.html +100 -0
- data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.css +5 -0
- data/public/rearview/vendor/codemirror/mode/rpm/spec/spec.js +1 -0
- data/public/rearview/vendor/codemirror/mode/rst/index.html +526 -0
- data/public/rearview/vendor/codemirror/mode/rst/rst.js +1 -0
- data/public/rearview/vendor/codemirror/mode/ruby/LICENSE +24 -0
- data/public/rearview/vendor/codemirror/mode/ruby/index.html +172 -0
- data/public/rearview/vendor/codemirror/mode/ruby/ruby.js +1 -0
- data/public/rearview/vendor/codemirror/mode/rust/index.html +49 -0
- data/public/rearview/vendor/codemirror/mode/rust/rust.js +1 -0
- data/public/rearview/vendor/codemirror/mode/scheme/index.html +65 -0
- data/public/rearview/vendor/codemirror/mode/scheme/scheme.js +1 -0
- data/public/rearview/vendor/codemirror/mode/shell/index.html +50 -0
- data/public/rearview/vendor/codemirror/mode/shell/shell.js +1 -0
- data/public/rearview/vendor/codemirror/mode/sieve/LICENSE +23 -0
- data/public/rearview/vendor/codemirror/mode/sieve/index.html +81 -0
- data/public/rearview/vendor/codemirror/mode/sieve/sieve.js +6 -0
- data/public/rearview/vendor/codemirror/mode/smalltalk/index.html +56 -0
- data/public/rearview/vendor/codemirror/mode/smalltalk/smalltalk.js +1 -0
- data/public/rearview/vendor/codemirror/mode/smarty/index.html +83 -0
- data/public/rearview/vendor/codemirror/mode/smarty/smarty.js +1 -0
- data/public/rearview/vendor/codemirror/mode/sparql/index.html +41 -0
- data/public/rearview/vendor/codemirror/mode/sparql/sparql.js +1 -0
- data/public/rearview/vendor/codemirror/mode/stex/index.html +98 -0
- data/public/rearview/vendor/codemirror/mode/stex/stex.js +1 -0
- data/public/rearview/vendor/codemirror/mode/stex/test.js +1 -0
- data/public/rearview/vendor/codemirror/mode/tiddlywiki/index.html +141 -0
- data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/public/rearview/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js +17 -0
- data/public/rearview/vendor/codemirror/mode/tiki/index.html +83 -0
- data/public/rearview/vendor/codemirror/mode/tiki/tiki.css +22 -0
- data/public/rearview/vendor/codemirror/mode/tiki/tiki.js +1 -0
- data/public/rearview/vendor/codemirror/mode/vb/LICENSE.txt +21 -0
- data/public/rearview/vendor/codemirror/mode/vb/index.html +89 -0
- data/public/rearview/vendor/codemirror/mode/vb/vb.js +1 -0
- data/public/rearview/vendor/codemirror/mode/vbscript/index.html +43 -0
- data/public/rearview/vendor/codemirror/mode/vbscript/vbscript.js +1 -0
- data/public/rearview/vendor/codemirror/mode/velocity/index.html +104 -0
- data/public/rearview/vendor/codemirror/mode/velocity/velocity.js +1 -0
- data/public/rearview/vendor/codemirror/mode/verilog/index.html +211 -0
- data/public/rearview/vendor/codemirror/mode/verilog/verilog.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xml/index.html +45 -0
- data/public/rearview/vendor/codemirror/mode/xml/xml.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/LICENSE +20 -0
- data/public/rearview/vendor/codemirror/mode/xquery/index.html +223 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/index.html +27 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testBase.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testEmptySequenceKeyword.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testMultiAttr.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testNamespaces.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testProcessingInstructions.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/test/testQuotes.js +1 -0
- data/public/rearview/vendor/codemirror/mode/xquery/xquery.js +24 -0
- data/public/rearview/vendor/codemirror/mode/yaml/index.html +68 -0
- data/public/rearview/vendor/codemirror/mode/yaml/yaml.js +1 -0
- data/public/rearview/vendor/codemirror/package.json +21 -0
- data/public/rearview/vendor/codemirror/test/driver.js +1 -0
- data/public/rearview/vendor/codemirror/test/index.html +168 -0
- data/public/rearview/vendor/codemirror/test/lint/lint.js +1 -0
- data/public/rearview/vendor/codemirror/test/lint/parse-js.js +60 -0
- data/public/rearview/vendor/codemirror/test/mode_test.css +9 -0
- data/public/rearview/vendor/codemirror/test/mode_test.js +1 -0
- data/public/rearview/vendor/codemirror/test/phantom_driver.js +1 -0
- data/public/rearview/vendor/codemirror/test/run.js +32 -0
- data/public/rearview/vendor/codemirror/test/test.js +1 -0
- data/public/rearview/vendor/codemirror/theme/ambiance.css +67 -0
- data/public/rearview/vendor/codemirror/theme/blackboard.css +23 -0
- data/public/rearview/vendor/codemirror/theme/cobalt.css +17 -0
- data/public/rearview/vendor/codemirror/theme/eclipse.css +24 -0
- data/public/rearview/vendor/codemirror/theme/elegant.css +10 -0
- data/public/rearview/vendor/codemirror/theme/erlang-dark.css +20 -0
- data/public/rearview/vendor/codemirror/theme/lesser-dark.css +37 -0
- data/public/rearview/vendor/codemirror/theme/monokai.css +23 -0
- data/public/rearview/vendor/codemirror/theme/neat.css +9 -0
- data/public/rearview/vendor/codemirror/theme/night.css +19 -0
- data/public/rearview/vendor/codemirror/theme/rubyblue.css +19 -0
- data/public/rearview/vendor/codemirror/theme/vibrant-ink.css +24 -0
- data/public/rearview/vendor/codemirror/theme/xq-dark.css +42 -0
- data/public/rearview/vendor/handlebars/js/handlebars.js +2 -0
- data/public/rearview/vendor/highcharts/examples/area-basic/index.htm +94 -0
- data/public/rearview/vendor/highcharts/examples/area-inverted/index.htm +91 -0
- data/public/rearview/vendor/highcharts/examples/area-missing/index.htm +85 -0
- data/public/rearview/vendor/highcharts/examples/area-negative/index.htm +55 -0
- data/public/rearview/vendor/highcharts/examples/area-stacked-percent/index.htm +82 -0
- data/public/rearview/vendor/highcharts/examples/area-stacked/index.htm +86 -0
- data/public/rearview/vendor/highcharts/examples/arearange/index.htm +62 -0
- data/public/rearview/vendor/highcharts/examples/areaspline/index.htm +85 -0
- data/public/rearview/vendor/highcharts/examples/bar-basic/index.htm +89 -0
- data/public/rearview/vendor/highcharts/examples/bar-negative-stack/index.htm +87 -0
- data/public/rearview/vendor/highcharts/examples/bar-stacked/index.htm +67 -0
- data/public/rearview/vendor/highcharts/examples/column-basic/index.htm +97 -0
- data/public/rearview/vendor/highcharts/examples/column-drilldown/index.htm +155 -0
- data/public/rearview/vendor/highcharts/examples/column-negative/index.htm +55 -0
- data/public/rearview/vendor/highcharts/examples/column-parsed/index.htm +120 -0
- data/public/rearview/vendor/highcharts/examples/column-rotated-labels/index.htm +100 -0
- data/public/rearview/vendor/highcharts/examples/column-stacked-and-grouped/index.htm +79 -0
- data/public/rearview/vendor/highcharts/examples/column-stacked-percent/index.htm +63 -0
- data/public/rearview/vendor/highcharts/examples/column-stacked/index.htm +86 -0
- data/public/rearview/vendor/highcharts/examples/columnrange/index.htm +87 -0
- data/public/rearview/vendor/highcharts/examples/combo-dual-axes/index.htm +101 -0
- data/public/rearview/vendor/highcharts/examples/combo-multi-axes/index.htm +137 -0
- data/public/rearview/vendor/highcharts/examples/combo-regression/index.htm +60 -0
- data/public/rearview/vendor/highcharts/examples/combo/index.htm +102 -0
- data/public/rearview/vendor/highcharts/examples/dynamic-click-to-add/index.htm +88 -0
- data/public/rearview/vendor/highcharts/examples/dynamic-master-detail/index.htm +371 -0
- data/public/rearview/vendor/highcharts/examples/dynamic-update/index.htm +96 -0
- data/public/rearview/vendor/highcharts/examples/gauge-clock/index.htm +174 -0
- data/public/rearview/vendor/highcharts/examples/gauge-dual/index.htm +122 -0
- data/public/rearview/vendor/highcharts/examples/gauge-speedometer/index.htm +133 -0
- data/public/rearview/vendor/highcharts/examples/gauge-vu-meter/index.htm +148 -0
- data/public/rearview/vendor/highcharts/examples/line-ajax/analytics.tsv +87 -0
- data/public/rearview/vendor/highcharts/examples/line-ajax/index.htm +188 -0
- data/public/rearview/vendor/highcharts/examples/line-basic/index.htm +81 -0
- data/public/rearview/vendor/highcharts/examples/line-labels/index.htm +66 -0
- data/public/rearview/vendor/highcharts/examples/line-log-axis/index.htm +53 -0
- data/public/rearview/vendor/highcharts/examples/line-time-series/index.htm +206 -0
- data/public/rearview/vendor/highcharts/examples/pie-basic/index.htm +70 -0
- data/public/rearview/vendor/highcharts/examples/pie-donut/index.htm +146 -0
- data/public/rearview/vendor/highcharts/examples/pie-gradient/index.htm +83 -0
- data/public/rearview/vendor/highcharts/examples/pie-legend/index.htm +69 -0
- data/public/rearview/vendor/highcharts/examples/polar-spider/index.htm +75 -0
- data/public/rearview/vendor/highcharts/examples/polar-wind-rose/index.htm +307 -0
- data/public/rearview/vendor/highcharts/examples/polar/index.htm +79 -0
- data/public/rearview/vendor/highcharts/examples/scatter/index.htm +197 -0
- data/public/rearview/vendor/highcharts/examples/spline-inverted/index.htm +87 -0
- data/public/rearview/vendor/highcharts/examples/spline-irregular-time/index.htm +133 -0
- data/public/rearview/vendor/highcharts/examples/spline-plot-bands/index.htm +169 -0
- data/public/rearview/vendor/highcharts/examples/spline-symbols/index.htm +87 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/pom.xml +106 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/controller/ExportController.java +229 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/filters/DefaultEncodingFilter.java +79 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/MimeType.java +34 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizer.java +77 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/java/com/highcharts/export/util/SVGRasterizerException.java +22 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/resources/log4j.properties +17 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/highcharts-export/src/main/webapp/WEB-INF/web.xml +22 -0
- data/public/rearview/vendor/highcharts/exporting-server/java/install.txt +10 -0
- data/public/rearview/vendor/highcharts/exporting-server/php/index-with-imagick.php +112 -0
- data/public/rearview/vendor/highcharts/exporting-server/php/index.php +112 -0
- data/public/rearview/vendor/highcharts/gfx/vml-radial-gradient.png +0 -0
- data/public/rearview/vendor/highcharts/graphics/skies.jpg +0 -0
- data/public/rearview/vendor/highcharts/graphics/snow.png +0 -0
- data/public/rearview/vendor/highcharts/graphics/sun.png +0 -0
- data/public/rearview/vendor/highcharts/index.htm +79 -0
- data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.js +10 -0
- data/public/rearview/vendor/highcharts/js/adapters/mootools-adapter.src.js +10 -0
- data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.js +11 -0
- data/public/rearview/vendor/highcharts/js/adapters/prototype-adapter.src.js +11 -0
- data/public/rearview/vendor/highcharts/js/highcharts-more.js +9 -0
- data/public/rearview/vendor/highcharts/js/highcharts.js +12 -0
- data/public/rearview/vendor/highcharts/js/highcharts.src.js +12 -0
- data/public/rearview/vendor/highcharts/js/modules/canvas-tools.js +23 -0
- data/public/rearview/vendor/highcharts/js/modules/canvas-tools.src.js +29 -0
- data/public/rearview/vendor/highcharts/js/modules/data.js +9 -0
- data/public/rearview/vendor/highcharts/js/modules/data.src.js +9 -0
- data/public/rearview/vendor/highcharts/js/modules/exporting.js +10 -0
- data/public/rearview/vendor/highcharts/js/modules/exporting.src.js +10 -0
- data/public/rearview/vendor/highcharts/js/themes/dark-blue.js +1 -0
- data/public/rearview/vendor/highcharts/js/themes/dark-green.js +1 -0
- data/public/rearview/vendor/highcharts/js/themes/gray.js +1 -0
- data/public/rearview/vendor/highcharts/js/themes/grid.js +1 -0
- data/public/rearview/vendor/highcharts/js/themes/skies.js +1 -0
- data/public/rearview/vendor/jasmine/SpecRunner.html +53 -0
- data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/MIT.LICENSE +20 -0
- data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine-html.js +1 -0
- data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.css +80 -0
- data/public/rearview/vendor/jasmine/lib/jasmine-1.3.1/jasmine.js +2 -0
- data/public/rearview/vendor/jasmine/spec/PlayerSpec.js +1 -0
- data/public/rearview/vendor/jasmine/spec/SpecHelper.js +1 -0
- data/public/rearview/vendor/jasmine/src/Player.js +1 -0
- data/public/rearview/vendor/jasmine/src/Song.js +1 -0
- data/public/rearview/vendor/jquery/js/jquery.js +24 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/animated-overlay.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.css +732 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/css/dark-hive/jquery-ui-1.10.3.custom.min.css +6 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/AUTHORS.txt +245 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/Gruntfile.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +26 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/README.md +99 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/default.html +45 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/addClass/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/default.html +55 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/animate/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +29 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +51 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +28 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +40 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +44 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +26 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +29 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +30 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +27 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +26 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-ar.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-fr.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-he.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/jquery.ui.datepicker-zh-TW.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +41 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +26 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +29 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +30 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +32 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/demos.css +16 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +58 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +42 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/default.html +32 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +38 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/events.html +70 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +41 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/index.html +24 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +37 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +44 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +61 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +50 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +70 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +53 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/default.html +46 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/index.html +20 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +182 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +73 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +54 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +94 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +72 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/default.html +102 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/easing.html +102 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/effect/index.html +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/default.html +95 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/hide/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/index.html +26 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +45 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/default.html +97 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/show/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +40 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/default.html +103 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggle/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +39 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/default.html +178 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/demos/widget/index.html +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/blind-effect.html +58 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/bounce-effect.html +61 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/clip-effect.html +55 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/datepicker.html +946 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/draggable.html +741 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/drop-effect.html +55 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/droppable.html +548 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/explode-effect.html +52 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fade-effect.html +43 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/fold-effect.html +61 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/highlight-effect.html +52 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/jQuery.widget.html +611 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/mouse.html +216 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/puff-effect.html +52 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/pulsate-effect.html +52 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/scale-effect.html +82 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/shake-effect.html +66 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/size-effect.html +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/slide-effect.html +59 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/docs/transfer-effect.html +61 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.de-DE.js +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.culture.ja-JP.js +14 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/globalize.js +11 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jquery.mousewheel.js +13 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/jshint.js +34 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.css +178 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/external/qunit.js +37 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/jquery-1.9.1.js +24 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/package.json +70 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/animated-overlay.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery-ui.css +599 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +659 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +269 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +73 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +174 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +380 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/animated-overlay.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery-ui.min.css +6 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.core.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.datepicker.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/base/minified/jquery.ui.theme.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/animated-overlay.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_33_003147_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_35_222222_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_44_444444_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery-ui.css +600 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.all.css +659 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.base.css +269 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.core.css +73 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.datepicker.css +174 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/jquery.ui.theme.css +380 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/animated-overlay.gif +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_30_cccccc_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_flat_50_5c5c5c_40x100.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_glass_40_ffc73d_1x400.png +0 -0
- 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
- 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
- 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
- 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
- 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
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-bg_loop_25_000000_21x21.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_222222_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_4b8e0b_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_a83300_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_cccccc_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery-ui.min.css +6 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.core.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.datepicker.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/themes/dark-hive/minified/jquery.ui.theme.min.css +4 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.core.jquery.json +61 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.datepicker.jquery.json +66 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.draggable.jquery.json +66 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.droppable.jquery.json +67 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-blind.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-bounce.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-clip.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-drop.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-explode.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fade.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-fold.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-highlight.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-pulsate.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-scale.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-shake.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-slide.jquery.json +65 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect-transfer.jquery.json +63 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.effect.jquery.json +68 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.mouse.jquery.json +64 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui.widget.jquery.json +64 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +7 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-be.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CA.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ky.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nb.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nn.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +1 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery-ui.custom.js +19 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +12 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +16 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +17 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +18 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-blind.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-bounce.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-clip.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-drop.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-explode.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fade.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-fold.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-highlight.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-pulsate.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-scale.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-shake.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-slide.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect-transfer.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.effect.js +23 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +15 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +12 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery-ui-i18n.min.js +7 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-af.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar-DZ.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ar.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-az.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-be.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bg.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-bs.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ca.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cs.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-cy-GB.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-da.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-de.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-el.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-AU.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-GB.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-en-NZ.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eo.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-es.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-et.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-eu.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fa.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fi.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fo.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CA.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr-CH.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-fr.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-gl.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-he.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hi.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hr.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hu.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-hy.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-id.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-is.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-it.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ja.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ka.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-kk.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-km.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ko.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ky.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lb.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lt.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-lv.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-mk.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ml.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ms.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nb.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl-BE.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nl.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-nn.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-no.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pl.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt-BR.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-pt.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-rm.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ro.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ru.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sk.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sl.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sq.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr-SR.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sr.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-sv.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-ta.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-th.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tj.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-tr.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-uk.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-vi.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-CN.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-HK.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/i18n/jquery.ui.datepicker-zh-TW.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery-ui.custom.min.js +8 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +6 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-blind.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-bounce.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-clip.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-drop.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-explode.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fade.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-fold.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-highlight.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-pulsate.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-scale.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-shake.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-slide.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect-transfer.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.effect.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +5 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.js +10 -0
- data/public/rearview/vendor/jquery/plugins/jquery-ui/js/jquery-ui-1.10.3.custom.min.js +10 -0
- data/public/rearview/vendor/jquery/plugins/jquery.validate.js +14 -0
- data/public/rearview/vendor/jquery/plugins/timepicker-ui/css/jquery.timepicker.css +31 -0
- data/public/rearview/vendor/jquery/plugins/timepicker-ui/js/jquery.timepicker.js +11 -0
- data/public/rearview/vendor/less/js/less.js +13 -0
- data/public/rearview/vendor/parsley/js/parsley.js +1 -0
- data/public/rearview/vendor/parsley/js/parsley.min.js +1 -0
- data/public/rearview/vendor/require/js/require.js +31 -0
- data/public/rearview/vendor/require/plugins/domready/domready.js +7 -0
- data/public/rearview/vendor/timeline/examples/example.json +38 -0
- data/public/rearview/vendor/timeline/examples/timeline_json.html +143 -0
- data/public/rearview/vendor/timeline/timeline.css +114 -0
- data/public/rearview/vendor/timeline/timeline.js +45 -0
- data/public/rearview/vendor/underscore/js/underscore.js +5 -0
- data/public/rearview/vendor/underscore/plugins/underscore-string/js/underscore.string.js +10 -0
- data/public/rearview/vendor/xdate/js/xdate.js +1 -0
- data/script/rails +8 -0
- data/tasks/rearview.rake +9 -0
- metadata +1814 -3
@@ -0,0 +1,96 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<title>Highcharts Example</title>
|
6
|
+
|
7
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
8
|
+
<script type="text/javascript">
|
9
|
+
$(function () {
|
10
|
+
$(document).ready(function() {
|
11
|
+
Highcharts.setOptions({
|
12
|
+
global: {
|
13
|
+
useUTC: false
|
14
|
+
}
|
15
|
+
});
|
16
|
+
|
17
|
+
var chart;
|
18
|
+
chart = new Highcharts.Chart({
|
19
|
+
chart: {
|
20
|
+
renderTo: 'container',
|
21
|
+
type: 'spline',
|
22
|
+
marginRight: 10,
|
23
|
+
events: {
|
24
|
+
load: function() {
|
25
|
+
|
26
|
+
// set up the updating of the chart each second
|
27
|
+
var series = this.series[0];
|
28
|
+
setInterval(function() {
|
29
|
+
var x = (new Date()).getTime(), // current time
|
30
|
+
y = Math.random();
|
31
|
+
series.addPoint([x, y], true, true);
|
32
|
+
}, 1000);
|
33
|
+
}
|
34
|
+
}
|
35
|
+
},
|
36
|
+
title: {
|
37
|
+
text: 'Live random data'
|
38
|
+
},
|
39
|
+
xAxis: {
|
40
|
+
type: 'datetime',
|
41
|
+
tickPixelInterval: 150
|
42
|
+
},
|
43
|
+
yAxis: {
|
44
|
+
title: {
|
45
|
+
text: 'Value'
|
46
|
+
},
|
47
|
+
plotLines: [{
|
48
|
+
value: 0,
|
49
|
+
width: 1,
|
50
|
+
color: '#808080'
|
51
|
+
}]
|
52
|
+
},
|
53
|
+
tooltip: {
|
54
|
+
formatter: function() {
|
55
|
+
return '<b>'+ this.series.name +'</b><br/>'+
|
56
|
+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
|
57
|
+
Highcharts.numberFormat(this.y, 2);
|
58
|
+
}
|
59
|
+
},
|
60
|
+
legend: {
|
61
|
+
enabled: false
|
62
|
+
},
|
63
|
+
exporting: {
|
64
|
+
enabled: false
|
65
|
+
},
|
66
|
+
series: [{
|
67
|
+
name: 'Random data',
|
68
|
+
data: (function() {
|
69
|
+
// generate an array of random data
|
70
|
+
var data = [],
|
71
|
+
time = (new Date()).getTime(),
|
72
|
+
i;
|
73
|
+
|
74
|
+
for (i = -19; i <= 0; i++) {
|
75
|
+
data.push({
|
76
|
+
x: time + i * 1000,
|
77
|
+
y: Math.random()
|
78
|
+
});
|
79
|
+
}
|
80
|
+
return data;
|
81
|
+
})()
|
82
|
+
}]
|
83
|
+
});
|
84
|
+
});
|
85
|
+
|
86
|
+
});
|
87
|
+
</script>
|
88
|
+
</head>
|
89
|
+
<body>
|
90
|
+
<script src="../../js/highcharts.js"></script>
|
91
|
+
<script src="../../js/modules/exporting.js"></script>
|
92
|
+
|
93
|
+
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
|
94
|
+
|
95
|
+
</body>
|
96
|
+
</html>
|
@@ -0,0 +1,174 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<title>Highcharts Example</title>
|
6
|
+
|
7
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
8
|
+
<script type="text/javascript">
|
9
|
+
$(function () {
|
10
|
+
|
11
|
+
/**
|
12
|
+
* Get the current time
|
13
|
+
*/
|
14
|
+
function getNow () {
|
15
|
+
var now = new Date();
|
16
|
+
|
17
|
+
return {
|
18
|
+
hours: now.getHours() + now.getMinutes() / 60,
|
19
|
+
minutes: now.getMinutes() * 12 / 60 + now.getSeconds() * 12 / 3600,
|
20
|
+
seconds: now.getSeconds() * 12 / 60
|
21
|
+
};
|
22
|
+
};
|
23
|
+
|
24
|
+
var now = getNow();
|
25
|
+
|
26
|
+
// Create the chart
|
27
|
+
var chart = new Highcharts.Chart({
|
28
|
+
|
29
|
+
chart: {
|
30
|
+
renderTo: 'container',
|
31
|
+
type: 'gauge',
|
32
|
+
plotBackgroundColor: null,
|
33
|
+
plotBackgroundImage: null,
|
34
|
+
plotBorderWidth: 0,
|
35
|
+
plotShadow: false,
|
36
|
+
height: 200
|
37
|
+
},
|
38
|
+
|
39
|
+
credits: {
|
40
|
+
enabled: false
|
41
|
+
},
|
42
|
+
|
43
|
+
title: {
|
44
|
+
text: 'The Highcharts clock'
|
45
|
+
},
|
46
|
+
|
47
|
+
pane: {
|
48
|
+
background: [{
|
49
|
+
// default background
|
50
|
+
}, {
|
51
|
+
// reflex for supported browsers
|
52
|
+
backgroundColor: Highcharts.svg ? {
|
53
|
+
radialGradient: {
|
54
|
+
cx: 0.5,
|
55
|
+
cy: -0.4,
|
56
|
+
r: 1.9
|
57
|
+
},
|
58
|
+
stops: [
|
59
|
+
[0.5, 'rgba(255, 255, 255, 0.2)'],
|
60
|
+
[0.5, 'rgba(200, 200, 200, 0.2)']
|
61
|
+
]
|
62
|
+
} : null
|
63
|
+
}]
|
64
|
+
},
|
65
|
+
|
66
|
+
yAxis: {
|
67
|
+
labels: {
|
68
|
+
distance: -20
|
69
|
+
},
|
70
|
+
min: 0,
|
71
|
+
max: 12,
|
72
|
+
lineWidth: 0,
|
73
|
+
showFirstLabel: false,
|
74
|
+
|
75
|
+
minorTickInterval: 'auto',
|
76
|
+
minorTickWidth: 1,
|
77
|
+
minorTickLength: 5,
|
78
|
+
minorTickPosition: 'inside',
|
79
|
+
minorGridLineWidth: 0,
|
80
|
+
minorTickColor: '#666',
|
81
|
+
|
82
|
+
tickInterval: 1,
|
83
|
+
tickWidth: 2,
|
84
|
+
tickPosition: 'inside',
|
85
|
+
tickLength: 10,
|
86
|
+
tickColor: '#666',
|
87
|
+
title: {
|
88
|
+
text: 'Powered by<br/>Highcharts',
|
89
|
+
style: {
|
90
|
+
color: '#BBB',
|
91
|
+
fontWeight: 'normal',
|
92
|
+
fontSize: '8px',
|
93
|
+
lineHeight: '10px'
|
94
|
+
},
|
95
|
+
y: 10
|
96
|
+
}
|
97
|
+
},
|
98
|
+
|
99
|
+
series: [{
|
100
|
+
data: [{
|
101
|
+
id: 'hour',
|
102
|
+
y: now.hours,
|
103
|
+
dial: {
|
104
|
+
radius: '60%',
|
105
|
+
baseWidth: 4,
|
106
|
+
baseLength: '95%',
|
107
|
+
rearLength: 0
|
108
|
+
}
|
109
|
+
}, {
|
110
|
+
id: 'minute',
|
111
|
+
y: now.minutes,
|
112
|
+
dial: {
|
113
|
+
baseLength: '95%',
|
114
|
+
rearLength: 0
|
115
|
+
}
|
116
|
+
}, {
|
117
|
+
id: 'second',
|
118
|
+
y: now.seconds,
|
119
|
+
dial: {
|
120
|
+
radius: '100%',
|
121
|
+
baseWidth: 1,
|
122
|
+
rearLength: '20%'
|
123
|
+
}
|
124
|
+
}],
|
125
|
+
animation: false,
|
126
|
+
dataLabels: {
|
127
|
+
enabled: false
|
128
|
+
}
|
129
|
+
}]
|
130
|
+
},
|
131
|
+
|
132
|
+
// Move
|
133
|
+
function (chart) {
|
134
|
+
setInterval(function () {
|
135
|
+
var hour = chart.get('hour'),
|
136
|
+
minute = chart.get('minute'),
|
137
|
+
second = chart.get('second'),
|
138
|
+
now = getNow(),
|
139
|
+
// run animation unless we're wrapping around from 59 to 0
|
140
|
+
animation = now.seconds == 0 ?
|
141
|
+
false :
|
142
|
+
{
|
143
|
+
easing: 'easeOutElastic'
|
144
|
+
};
|
145
|
+
|
146
|
+
hour.update(now.hours, true, animation);
|
147
|
+
minute.update(now.minutes, true, animation);
|
148
|
+
second.update(now.seconds, true, animation);
|
149
|
+
|
150
|
+
}, 1000);
|
151
|
+
|
152
|
+
});
|
153
|
+
});
|
154
|
+
|
155
|
+
// Extend jQuery with some easing (copied from jQuery UI)
|
156
|
+
$.extend($.easing, {
|
157
|
+
easeOutElastic: function (x, t, b, c, d) {
|
158
|
+
var s=1.70158;var p=0;var a=c;
|
159
|
+
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
|
160
|
+
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
161
|
+
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
162
|
+
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
|
163
|
+
}
|
164
|
+
});
|
165
|
+
</script>
|
166
|
+
</head>
|
167
|
+
<body>
|
168
|
+
<script src="../../js/highcharts.js"></script>
|
169
|
+
<script src="../../js/highcharts-more.js"></script>
|
170
|
+
|
171
|
+
<div id="container" style="width: 300px; height: 300px; margin: 0 auto"></div>
|
172
|
+
|
173
|
+
</body>
|
174
|
+
</html>
|
@@ -0,0 +1,122 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<title>Highcharts Example</title>
|
6
|
+
|
7
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
8
|
+
<script type="text/javascript">
|
9
|
+
$(function () {
|
10
|
+
var chart = new Highcharts.Chart({
|
11
|
+
|
12
|
+
chart: {
|
13
|
+
renderTo: 'container',
|
14
|
+
type: 'gauge',
|
15
|
+
alignTicks: false,
|
16
|
+
plotBackgroundColor: null,
|
17
|
+
plotBackgroundImage: null,
|
18
|
+
plotBorderWidth: 0,
|
19
|
+
plotShadow: false
|
20
|
+
},
|
21
|
+
|
22
|
+
title: {
|
23
|
+
text: 'Speedometer with dual axes'
|
24
|
+
},
|
25
|
+
|
26
|
+
pane: {
|
27
|
+
startAngle: -150,
|
28
|
+
endAngle: 150
|
29
|
+
},
|
30
|
+
|
31
|
+
yAxis: [{
|
32
|
+
min: 0,
|
33
|
+
max: 200,
|
34
|
+
lineColor: '#339',
|
35
|
+
tickColor: '#339',
|
36
|
+
minorTickColor: '#339',
|
37
|
+
offset: -25,
|
38
|
+
lineWidth: 2,
|
39
|
+
labels: {
|
40
|
+
distance: -20,
|
41
|
+
rotation: 'auto'
|
42
|
+
},
|
43
|
+
tickLength: 5,
|
44
|
+
minorTickLength: 5,
|
45
|
+
endOnTick: false
|
46
|
+
}, {
|
47
|
+
min: 0,
|
48
|
+
max: 124,
|
49
|
+
tickPosition: 'outside',
|
50
|
+
lineColor: '#933',
|
51
|
+
lineWidth: 2,
|
52
|
+
minorTickPosition: 'outside',
|
53
|
+
tickColor: '#933',
|
54
|
+
minorTickColor: '#933',
|
55
|
+
tickLength: 5,
|
56
|
+
minorTickLength: 5,
|
57
|
+
labels: {
|
58
|
+
distance: 12,
|
59
|
+
rotation: 'auto'
|
60
|
+
},
|
61
|
+
offset: -20,
|
62
|
+
endOnTick: false
|
63
|
+
}],
|
64
|
+
|
65
|
+
series: [{
|
66
|
+
name: 'Speed',
|
67
|
+
data: [80],
|
68
|
+
dataLabels: {
|
69
|
+
formatter: function () {
|
70
|
+
var kmh = this.y,
|
71
|
+
mph = Math.round(kmh * 0.621);
|
72
|
+
return '<span style="color:#339">'+ kmh + ' km/h</span><br/>' +
|
73
|
+
'<span style="color:#933">' + mph + ' mph</span>';
|
74
|
+
},
|
75
|
+
backgroundColor: {
|
76
|
+
linearGradient: {
|
77
|
+
x1: 0,
|
78
|
+
y1: 0,
|
79
|
+
x2: 0,
|
80
|
+
y2: 1
|
81
|
+
},
|
82
|
+
stops: [
|
83
|
+
[0, '#DDD'],
|
84
|
+
[1, '#FFF']
|
85
|
+
]
|
86
|
+
}
|
87
|
+
},
|
88
|
+
tooltip: {
|
89
|
+
valueSuffix: ' km/h'
|
90
|
+
}
|
91
|
+
}]
|
92
|
+
|
93
|
+
},
|
94
|
+
// Add some life
|
95
|
+
function(chart) {
|
96
|
+
setInterval(function() {
|
97
|
+
var point = chart.series[0].points[0],
|
98
|
+
newVal, inc = Math.round((Math.random() - 0.5) * 20);
|
99
|
+
|
100
|
+
newVal = point.y + inc;
|
101
|
+
if (newVal < 0 || newVal > 200) {
|
102
|
+
newVal = point.y - inc;
|
103
|
+
}
|
104
|
+
|
105
|
+
point.update(newVal);
|
106
|
+
|
107
|
+
}, 3000);
|
108
|
+
|
109
|
+
});
|
110
|
+
});
|
111
|
+
|
112
|
+
</script>
|
113
|
+
</head>
|
114
|
+
<body>
|
115
|
+
<script src="../../js/highcharts.js"></script>
|
116
|
+
<script src="../../js/highcharts-more.js"></script>
|
117
|
+
<script src="../../js/modules/exporting.js"></script>
|
118
|
+
|
119
|
+
<div id="container" style="width: 400px; height: 300px; margin: 0 auto"></div>
|
120
|
+
|
121
|
+
</body>
|
122
|
+
</html>
|
@@ -0,0 +1,133 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
5
|
+
<title>Highcharts Example</title>
|
6
|
+
|
7
|
+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
8
|
+
<script type="text/javascript">
|
9
|
+
$(function () {
|
10
|
+
|
11
|
+
var chart = new Highcharts.Chart({
|
12
|
+
|
13
|
+
chart: {
|
14
|
+
renderTo: 'container',
|
15
|
+
type: 'gauge',
|
16
|
+
plotBackgroundColor: null,
|
17
|
+
plotBackgroundImage: null,
|
18
|
+
plotBorderWidth: 0,
|
19
|
+
plotShadow: false
|
20
|
+
},
|
21
|
+
|
22
|
+
title: {
|
23
|
+
text: 'Speedometer'
|
24
|
+
},
|
25
|
+
|
26
|
+
pane: {
|
27
|
+
startAngle: -150,
|
28
|
+
endAngle: 150,
|
29
|
+
background: [{
|
30
|
+
backgroundColor: {
|
31
|
+
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
32
|
+
stops: [
|
33
|
+
[0, '#FFF'],
|
34
|
+
[1, '#333']
|
35
|
+
]
|
36
|
+
},
|
37
|
+
borderWidth: 0,
|
38
|
+
outerRadius: '109%'
|
39
|
+
}, {
|
40
|
+
backgroundColor: {
|
41
|
+
linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1 },
|
42
|
+
stops: [
|
43
|
+
[0, '#333'],
|
44
|
+
[1, '#FFF']
|
45
|
+
]
|
46
|
+
},
|
47
|
+
borderWidth: 1,
|
48
|
+
outerRadius: '107%'
|
49
|
+
}, {
|
50
|
+
// default background
|
51
|
+
}, {
|
52
|
+
backgroundColor: '#DDD',
|
53
|
+
borderWidth: 0,
|
54
|
+
outerRadius: '105%',
|
55
|
+
innerRadius: '103%'
|
56
|
+
}]
|
57
|
+
},
|
58
|
+
|
59
|
+
// the value axis
|
60
|
+
yAxis: {
|
61
|
+
min: 0,
|
62
|
+
max: 200,
|
63
|
+
|
64
|
+
minorTickInterval: 'auto',
|
65
|
+
minorTickWidth: 1,
|
66
|
+
minorTickLength: 10,
|
67
|
+
minorTickPosition: 'inside',
|
68
|
+
minorTickColor: '#666',
|
69
|
+
|
70
|
+
tickPixelInterval: 30,
|
71
|
+
tickWidth: 2,
|
72
|
+
tickPosition: 'inside',
|
73
|
+
tickLength: 10,
|
74
|
+
tickColor: '#666',
|
75
|
+
labels: {
|
76
|
+
step: 2,
|
77
|
+
rotation: 'auto'
|
78
|
+
},
|
79
|
+
title: {
|
80
|
+
text: 'km/h'
|
81
|
+
},
|
82
|
+
plotBands: [{
|
83
|
+
from: 0,
|
84
|
+
to: 120,
|
85
|
+
color: '#55BF3B' // green
|
86
|
+
}, {
|
87
|
+
from: 120,
|
88
|
+
to: 160,
|
89
|
+
color: '#DDDF0D' // yellow
|
90
|
+
}, {
|
91
|
+
from: 160,
|
92
|
+
to: 200,
|
93
|
+
color: '#DF5353' // red
|
94
|
+
}]
|
95
|
+
},
|
96
|
+
|
97
|
+
series: [{
|
98
|
+
name: 'Speed',
|
99
|
+
data: [80],
|
100
|
+
tooltip: {
|
101
|
+
valueSuffix: ' km/h'
|
102
|
+
}
|
103
|
+
}]
|
104
|
+
|
105
|
+
},
|
106
|
+
// Add some life
|
107
|
+
function (chart) {
|
108
|
+
setInterval(function () {
|
109
|
+
var point = chart.series[0].points[0],
|
110
|
+
newVal,
|
111
|
+
inc = Math.round((Math.random() - 0.5) * 20);
|
112
|
+
|
113
|
+
newVal = point.y + inc;
|
114
|
+
if (newVal < 0 || newVal > 200) {
|
115
|
+
newVal = point.y - inc;
|
116
|
+
}
|
117
|
+
|
118
|
+
point.update(newVal);
|
119
|
+
|
120
|
+
}, 3000);
|
121
|
+
});
|
122
|
+
});
|
123
|
+
</script>
|
124
|
+
</head>
|
125
|
+
<body>
|
126
|
+
<script src="../../js/highcharts.js"></script>
|
127
|
+
<script src="../../js/highcharts-more.js"></script>
|
128
|
+
<script src="../../js/modules/exporting.js"></script>
|
129
|
+
|
130
|
+
<div id="container" style="width: 400px; height: 300px; margin: 0 auto"></div>
|
131
|
+
|
132
|
+
</body>
|
133
|
+
</html>
|