local_pac 0.6.3 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (587) hide show
  1. data/.bowerrc +4 -0
  2. data/.gitignore +1 -0
  3. data/Gemfile.lock +32 -30
  4. data/app/assets/javascripts/application.js +21 -5
  5. data/app/assets/stylesheets/application.css.scss +111 -10
  6. data/app/assets/stylesheets/buttons.scss +81 -0
  7. data/app/controllers/application_controller.rb +51 -15
  8. data/app/controllers/assets_controller.rb +2 -1
  9. data/app/controllers/git_hook_controller.rb +29 -39
  10. data/app/controllers/lookup_controller.rb +41 -6
  11. data/app/locales/en.yml +30 -5
  12. data/app/views/application.haml +12 -1
  13. data/app/views/form.haml +23 -5
  14. data/bin/local_pac +0 -1
  15. data/bower.json +9 -0
  16. data/lib/local_pac/actions/create_file.rb +1 -1
  17. data/lib/local_pac/actions/create_output.rb +1 -1
  18. data/lib/local_pac/actions/handle_error.rb +12 -1
  19. data/lib/local_pac/config.rb +1 -1
  20. data/lib/local_pac/error_handler.rb +54 -7
  21. data/lib/local_pac/error_messages.rb +132 -0
  22. data/lib/local_pac/exceptions.rb +33 -12
  23. data/lib/local_pac/main.rb +11 -0
  24. data/lib/local_pac/pac_file_validator.rb +10 -1
  25. data/lib/local_pac/proxy_pac/pac_engine.rb +9 -6
  26. data/lib/local_pac/proxy_pac/pac_parser.rb +3 -1
  27. data/lib/local_pac/version.rb +1 -1
  28. data/lib/local_pac.rb +4 -2
  29. data/local_pac.gemspec +8 -8
  30. data/script/acceptance_test +0 -0
  31. data/script/bootstrap +59 -1
  32. data/spec/actions/handle_error_spec.rb +45 -0
  33. data/spec/error_handler_spec.rb +89 -8
  34. data/spec/features/check_git_push_spec.rb +2 -2
  35. data/spec/features/lookup_proxy_spec.rb +63 -1
  36. data/spec/pac_file_validator_spec.rb +1 -1
  37. data/spec/proxy_pac/pac_engine_spec.rb +20 -0
  38. data/spec/proxy_pac/pac_parser_spec.rb +1 -1
  39. data/spec/support/helper_features.rb +12 -4
  40. data/spec/support/reporting.rb +5 -1
  41. data/spec/support/rspec.rb +0 -3
  42. data/vendor/assets/components/.keep +0 -0
  43. data/vendor/assets/components/bootstrap/Gruntfile.js +421 -0
  44. data/vendor/assets/components/bootstrap/LICENSE +21 -0
  45. data/vendor/assets/components/bootstrap/README.md +173 -0
  46. data/vendor/assets/components/bootstrap/bower.json +24 -0
  47. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.css +347 -0
  48. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
  49. data/vendor/assets/components/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
  50. data/vendor/assets/components/bootstrap/dist/css/bootstrap.css +5785 -0
  51. data/vendor/assets/components/bootstrap/dist/css/bootstrap.css.map +1 -0
  52. data/vendor/assets/components/bootstrap/dist/css/bootstrap.min.css +7 -0
  53. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  54. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  55. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  56. data/vendor/assets/components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  57. data/vendor/assets/components/bootstrap/dist/js/bootstrap.js +1951 -0
  58. data/vendor/assets/components/bootstrap/dist/js/bootstrap.min.js +6 -0
  59. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  60. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  61. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  62. data/vendor/assets/components/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  63. data/vendor/assets/components/bootstrap/grunt/bs-glyphicons-data-generator.js +34 -0
  64. data/vendor/assets/components/bootstrap/grunt/bs-lessdoc-parser.js +236 -0
  65. data/vendor/assets/components/bootstrap/grunt/bs-raw-files-generator.js +31 -0
  66. data/vendor/assets/components/bootstrap/grunt/shrinkwrap.js +28 -0
  67. data/vendor/assets/components/bootstrap/js/affix.js +137 -0
  68. data/vendor/assets/components/bootstrap/js/alert.js +88 -0
  69. data/vendor/assets/components/bootstrap/js/button.js +107 -0
  70. data/vendor/assets/components/bootstrap/js/carousel.js +205 -0
  71. data/vendor/assets/components/bootstrap/js/collapse.js +170 -0
  72. data/vendor/assets/components/bootstrap/js/dropdown.js +147 -0
  73. data/vendor/assets/components/bootstrap/js/modal.js +243 -0
  74. data/vendor/assets/components/bootstrap/js/popover.js +110 -0
  75. data/vendor/assets/components/bootstrap/js/scrollspy.js +153 -0
  76. data/vendor/assets/components/bootstrap/js/tab.js +125 -0
  77. data/vendor/assets/components/bootstrap/js/tooltip.js +399 -0
  78. data/vendor/assets/components/bootstrap/js/transition.js +48 -0
  79. data/vendor/assets/components/bootstrap/less/alerts.less +67 -0
  80. data/vendor/assets/components/bootstrap/less/badges.less +55 -0
  81. data/vendor/assets/components/bootstrap/less/bootstrap.less +49 -0
  82. data/vendor/assets/components/bootstrap/less/breadcrumbs.less +26 -0
  83. data/vendor/assets/components/bootstrap/less/button-groups.less +226 -0
  84. data/vendor/assets/components/bootstrap/less/buttons.less +159 -0
  85. data/vendor/assets/components/bootstrap/less/carousel.less +232 -0
  86. data/vendor/assets/components/bootstrap/less/close.less +33 -0
  87. data/vendor/assets/components/bootstrap/less/code.less +63 -0
  88. data/vendor/assets/components/bootstrap/less/component-animations.less +29 -0
  89. data/vendor/assets/components/bootstrap/less/dropdowns.less +213 -0
  90. data/vendor/assets/components/bootstrap/less/forms.less +438 -0
  91. data/vendor/assets/components/bootstrap/less/glyphicons.less +233 -0
  92. data/vendor/assets/components/bootstrap/less/grid.less +84 -0
  93. data/vendor/assets/components/bootstrap/less/input-groups.less +162 -0
  94. data/vendor/assets/components/bootstrap/less/jumbotron.less +44 -0
  95. data/vendor/assets/components/bootstrap/less/labels.less +64 -0
  96. data/vendor/assets/components/bootstrap/less/list-group.less +110 -0
  97. data/vendor/assets/components/bootstrap/less/media.less +56 -0
  98. data/vendor/assets/components/bootstrap/less/mixins.less +929 -0
  99. data/vendor/assets/components/bootstrap/less/modals.less +139 -0
  100. data/vendor/assets/components/bootstrap/less/navbar.less +616 -0
  101. data/vendor/assets/components/bootstrap/less/navs.less +242 -0
  102. data/vendor/assets/components/bootstrap/less/normalize.less +423 -0
  103. data/vendor/assets/components/bootstrap/less/pager.less +55 -0
  104. data/vendor/assets/components/bootstrap/less/pagination.less +88 -0
  105. data/vendor/assets/components/bootstrap/less/panels.less +241 -0
  106. data/vendor/assets/components/bootstrap/less/popovers.less +133 -0
  107. data/vendor/assets/components/bootstrap/less/print.less +101 -0
  108. data/vendor/assets/components/bootstrap/less/progress-bars.less +80 -0
  109. data/vendor/assets/components/bootstrap/less/responsive-utilities.less +92 -0
  110. data/vendor/assets/components/bootstrap/less/scaffolding.less +134 -0
  111. data/vendor/assets/components/bootstrap/less/tables.less +233 -0
  112. data/vendor/assets/components/bootstrap/less/theme.less +247 -0
  113. data/vendor/assets/components/bootstrap/less/thumbnails.less +36 -0
  114. data/vendor/assets/components/bootstrap/less/tooltip.less +95 -0
  115. data/vendor/assets/components/bootstrap/less/type.less +293 -0
  116. data/vendor/assets/components/bootstrap/less/utilities.less +56 -0
  117. data/vendor/assets/components/bootstrap/less/variables.less +829 -0
  118. data/vendor/assets/components/bootstrap/less/wells.less +29 -0
  119. data/vendor/assets/components/bootstrap/package.json +70 -0
  120. data/vendor/assets/components/bootstrap/test-infra/README.md +100 -0
  121. data/vendor/assets/components/bootstrap/test-infra/npm-shrinkwrap.canonical.json +1 -0
  122. data/vendor/assets/components/bootstrap/test-infra/requirements.txt +1 -0
  123. data/vendor/assets/components/bootstrap/test-infra/s3_cache.py +107 -0
  124. data/vendor/assets/components/bootstrap/test-infra/sauce_browsers.yml +83 -0
  125. data/vendor/assets/components/bootstrap/test-infra/uncached-npm-install.sh +4 -0
  126. data/vendor/assets/components/bootstrap-sass/CNAME +1 -0
  127. data/vendor/assets/components/bootstrap-sass/CONTRIBUTING.md +61 -0
  128. data/vendor/assets/components/bootstrap-sass/DOCS-LICENSE +319 -0
  129. data/vendor/assets/components/bootstrap-sass/Gemfile +5 -0
  130. data/vendor/assets/components/bootstrap-sass/Gemfile.lock +14 -0
  131. data/vendor/assets/components/bootstrap-sass/Gruntfile.js +244 -0
  132. data/vendor/assets/components/bootstrap-sass/LICENSE +176 -0
  133. data/vendor/assets/components/bootstrap-sass/LICENSE-MIT +21 -0
  134. data/vendor/assets/components/bootstrap-sass/README.md +277 -0
  135. data/vendor/assets/components/bootstrap-sass/Rakefile +44 -0
  136. data/vendor/assets/components/bootstrap-sass/_config.yml +25 -0
  137. data/vendor/assets/components/bootstrap-sass/_includes/ads.html +1 -0
  138. data/vendor/assets/components/bootstrap-sass/_includes/footer.html +34 -0
  139. data/vendor/assets/components/bootstrap-sass/_includes/header.html +42 -0
  140. data/vendor/assets/components/bootstrap-sass/_includes/nav-about.html +12 -0
  141. data/vendor/assets/components/bootstrap-sass/_includes/nav-components.html +137 -0
  142. data/vendor/assets/components/bootstrap-sass/_includes/nav-css.html +99 -0
  143. data/vendor/assets/components/bootstrap-sass/_includes/nav-customize.html +40 -0
  144. data/vendor/assets/components/bootstrap-sass/_includes/nav-getting-started.html +44 -0
  145. data/vendor/assets/components/bootstrap-sass/_includes/nav-javascript.html +88 -0
  146. data/vendor/assets/components/bootstrap-sass/_includes/nav-main.html +37 -0
  147. data/vendor/assets/components/bootstrap-sass/_includes/old-bs-docs.html +8 -0
  148. data/vendor/assets/components/bootstrap-sass/_includes/social-buttons.html +16 -0
  149. data/vendor/assets/components/bootstrap-sass/_layouts/default.html +79 -0
  150. data/vendor/assets/components/bootstrap-sass/_layouts/home.html +47 -0
  151. data/vendor/assets/components/bootstrap-sass/about.html +93 -0
  152. data/vendor/assets/components/bootstrap-sass/bower.json +11 -0
  153. data/vendor/assets/components/bootstrap-sass/browserstack.json +37 -0
  154. data/vendor/assets/components/bootstrap-sass/components.html +3689 -0
  155. data/vendor/assets/components/bootstrap-sass/composer.json +28 -0
  156. data/vendor/assets/components/bootstrap-sass/css.html +2674 -0
  157. data/vendor/assets/components/bootstrap-sass/customize.html +1715 -0
  158. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap-theme.css +427 -0
  159. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap-theme.min.css +1 -0
  160. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap.css +6350 -0
  161. data/vendor/assets/components/bootstrap-sass/dist/css/bootstrap.min.css +1 -0
  162. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  163. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  164. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  165. data/vendor/assets/components/bootstrap-sass/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  166. data/vendor/assets/components/bootstrap-sass/dist/js/bootstrap.js +2002 -0
  167. data/vendor/assets/components/bootstrap-sass/dist/js/bootstrap.min.js +9 -0
  168. data/vendor/assets/components/bootstrap-sass/docs-assets/css/docs.css +1195 -0
  169. data/vendor/assets/components/bootstrap-sass/docs-assets/css/pygments-manni.css +66 -0
  170. data/vendor/assets/components/bootstrap-sass/docs-assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  171. data/vendor/assets/components/bootstrap-sass/docs-assets/ico/favicon.png +0 -0
  172. data/vendor/assets/components/bootstrap-sass/docs-assets/js/application.js +103 -0
  173. data/vendor/assets/components/bootstrap-sass/docs-assets/js/customizer.js +332 -0
  174. data/vendor/assets/components/bootstrap-sass/docs-assets/js/filesaver.js +169 -0
  175. data/vendor/assets/components/bootstrap-sass/docs-assets/js/holder.js +404 -0
  176. data/vendor/assets/components/bootstrap-sass/docs-assets/js/ie8-responsive-file-warning.js +12 -0
  177. data/vendor/assets/components/bootstrap-sass/docs-assets/js/jszip.js +1467 -0
  178. data/vendor/assets/components/bootstrap-sass/docs-assets/js/less.js +9 -0
  179. data/vendor/assets/components/bootstrap-sass/docs-assets/js/raw-files.js +3 -0
  180. data/vendor/assets/components/bootstrap-sass/docs-assets/js/uglify.js +14 -0
  181. data/vendor/assets/components/bootstrap-sass/examples/carousel/carousel.css +148 -0
  182. data/vendor/assets/components/bootstrap-sass/examples/carousel/index.html +206 -0
  183. data/vendor/assets/components/bootstrap-sass/examples/grid/grid.css +28 -0
  184. data/vendor/assets/components/bootstrap-sass/examples/grid/index.html +148 -0
  185. data/vendor/assets/components/bootstrap-sass/examples/jumbotron/index.html +99 -0
  186. data/vendor/assets/components/bootstrap-sass/examples/jumbotron/jumbotron.css +5 -0
  187. data/vendor/assets/components/bootstrap-sass/examples/jumbotron-narrow/index.html +82 -0
  188. data/vendor/assets/components/bootstrap-sass/examples/jumbotron-narrow/jumbotron-narrow.css +79 -0
  189. data/vendor/assets/components/bootstrap-sass/examples/justified-nav/index.html +83 -0
  190. data/vendor/assets/components/bootstrap-sass/examples/justified-nav/justified-nav.css +88 -0
  191. data/vendor/assets/components/bootstrap-sass/examples/navbar/index.html +88 -0
  192. data/vendor/assets/components/bootstrap-sass/examples/navbar/navbar.css +8 -0
  193. data/vendor/assets/components/bootstrap-sass/examples/navbar-fixed-top/index.html +91 -0
  194. data/vendor/assets/components/bootstrap-sass/examples/navbar-fixed-top/navbar-fixed-top.css +4 -0
  195. data/vendor/assets/components/bootstrap-sass/examples/navbar-static-top/index.html +92 -0
  196. data/vendor/assets/components/bootstrap-sass/examples/navbar-static-top/navbar-static-top.css +7 -0
  197. data/vendor/assets/components/bootstrap-sass/examples/non-responsive/index.html +101 -0
  198. data/vendor/assets/components/bootstrap-sass/examples/non-responsive/non-responsive.css +116 -0
  199. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/index.html +130 -0
  200. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/offcanvas.css +50 -0
  201. data/vendor/assets/components/bootstrap-sass/examples/offcanvas/offcanvas.js +5 -0
  202. data/vendor/assets/components/bootstrap-sass/examples/screenshots/carousel.jpg +0 -0
  203. data/vendor/assets/components/bootstrap-sass/examples/screenshots/grid.jpg +0 -0
  204. data/vendor/assets/components/bootstrap-sass/examples/screenshots/jumbotron-narrow.jpg +0 -0
  205. data/vendor/assets/components/bootstrap-sass/examples/screenshots/jumbotron.jpg +0 -0
  206. data/vendor/assets/components/bootstrap-sass/examples/screenshots/justified-nav.jpg +0 -0
  207. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar-fixed.jpg +0 -0
  208. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar-static.jpg +0 -0
  209. data/vendor/assets/components/bootstrap-sass/examples/screenshots/navbar.jpg +0 -0
  210. data/vendor/assets/components/bootstrap-sass/examples/screenshots/non-responsive.jpg +0 -0
  211. data/vendor/assets/components/bootstrap-sass/examples/screenshots/offcanvas.jpg +0 -0
  212. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sign-in.jpg +0 -0
  213. data/vendor/assets/components/bootstrap-sass/examples/screenshots/starter-template.jpg +0 -0
  214. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sticky-footer-navbar.jpg +0 -0
  215. data/vendor/assets/components/bootstrap-sass/examples/screenshots/sticky-footer.jpg +0 -0
  216. data/vendor/assets/components/bootstrap-sass/examples/screenshots/theme.jpg +0 -0
  217. data/vendor/assets/components/bootstrap-sass/examples/signin/index.html +50 -0
  218. data/vendor/assets/components/bootstrap-sass/examples/signin/signin.css +40 -0
  219. data/vendor/assets/components/bootstrap-sass/examples/starter-template/index.html +68 -0
  220. data/vendor/assets/components/bootstrap-sass/examples/starter-template/starter-template.css +7 -0
  221. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer/index.html +55 -0
  222. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer/sticky-footer.css +38 -0
  223. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer-navbar/index.html +91 -0
  224. data/vendor/assets/components/bootstrap-sass/examples/sticky-footer-navbar/sticky-footer-navbar.css +45 -0
  225. data/vendor/assets/components/bootstrap-sass/examples/theme/index.html +384 -0
  226. data/vendor/assets/components/bootstrap-sass/examples/theme/theme.css +14 -0
  227. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.eot +0 -0
  228. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.svg +229 -0
  229. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.ttf +0 -0
  230. data/vendor/assets/components/bootstrap-sass/fonts/glyphicons-halflings-regular.woff +0 -0
  231. data/vendor/assets/components/bootstrap-sass/getting-started.html +1021 -0
  232. data/vendor/assets/components/bootstrap-sass/index.html +16 -0
  233. data/vendor/assets/components/bootstrap-sass/javascript.html +1983 -0
  234. data/vendor/assets/components/bootstrap-sass/js/affix.js +126 -0
  235. data/vendor/assets/components/bootstrap-sass/js/alert.js +98 -0
  236. data/vendor/assets/components/bootstrap-sass/js/button.js +109 -0
  237. data/vendor/assets/components/bootstrap-sass/js/carousel.js +217 -0
  238. data/vendor/assets/components/bootstrap-sass/js/collapse.js +179 -0
  239. data/vendor/assets/components/bootstrap-sass/js/dropdown.js +154 -0
  240. data/vendor/assets/components/bootstrap-sass/js/modal.js +246 -0
  241. data/vendor/assets/components/bootstrap-sass/js/popover.js +117 -0
  242. data/vendor/assets/components/bootstrap-sass/js/scrollspy.js +158 -0
  243. data/vendor/assets/components/bootstrap-sass/js/tab.js +135 -0
  244. data/vendor/assets/components/bootstrap-sass/js/tests/index.html +52 -0
  245. data/vendor/assets/components/bootstrap-sass/js/tests/unit/affix.js +25 -0
  246. data/vendor/assets/components/bootstrap-sass/js/tests/unit/alert.js +62 -0
  247. data/vendor/assets/components/bootstrap-sass/js/tests/unit/button.js +116 -0
  248. data/vendor/assets/components/bootstrap-sass/js/tests/unit/carousel.js +87 -0
  249. data/vendor/assets/components/bootstrap-sass/js/tests/unit/collapse.js +164 -0
  250. data/vendor/assets/components/bootstrap-sass/js/tests/unit/dropdown.js +219 -0
  251. data/vendor/assets/components/bootstrap-sass/js/tests/unit/modal.js +196 -0
  252. data/vendor/assets/components/bootstrap-sass/js/tests/unit/phantom.js +69 -0
  253. data/vendor/assets/components/bootstrap-sass/js/tests/unit/popover.js +133 -0
  254. data/vendor/assets/components/bootstrap-sass/js/tests/unit/scrollspy.js +37 -0
  255. data/vendor/assets/components/bootstrap-sass/js/tests/unit/tab.js +86 -0
  256. data/vendor/assets/components/bootstrap-sass/js/tests/unit/tooltip.js +437 -0
  257. data/vendor/assets/components/bootstrap-sass/js/tests/unit/transition.js +13 -0
  258. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/jquery.js +6 -0
  259. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/qunit.css +232 -0
  260. data/vendor/assets/components/bootstrap-sass/js/tests/vendor/qunit.js +1510 -0
  261. data/vendor/assets/components/bootstrap-sass/js/tooltip.js +386 -0
  262. data/vendor/assets/components/bootstrap-sass/js/transition.js +56 -0
  263. data/vendor/assets/components/bootstrap-sass/lib/_alerts.scss +67 -0
  264. data/vendor/assets/components/bootstrap-sass/lib/_badges.scss +51 -0
  265. data/vendor/assets/components/bootstrap-sass/lib/_breadcrumbs.scss +23 -0
  266. data/vendor/assets/components/bootstrap-sass/lib/_button-groups.scss +253 -0
  267. data/vendor/assets/components/bootstrap-sass/lib/_buttons.scss +158 -0
  268. data/vendor/assets/components/bootstrap-sass/lib/_carousel.scss +231 -0
  269. data/vendor/assets/components/bootstrap-sass/lib/_close.scss +35 -0
  270. data/vendor/assets/components/bootstrap-sass/lib/_code.scss +53 -0
  271. data/vendor/assets/components/bootstrap-sass/lib/_component-animations.scss +29 -0
  272. data/vendor/assets/components/bootstrap-sass/lib/_dropdowns.scss +193 -0
  273. data/vendor/assets/components/bootstrap-sass/lib/_forms.scss +363 -0
  274. data/vendor/assets/components/bootstrap-sass/lib/_glyphicons.scss +237 -0
  275. data/vendor/assets/components/bootstrap-sass/lib/_grid.scss +93 -0
  276. data/vendor/assets/components/bootstrap-sass/lib/_input-groups.scss +136 -0
  277. data/vendor/assets/components/bootstrap-sass/lib/_jumbotron.scss +40 -0
  278. data/vendor/assets/components/bootstrap-sass/lib/_labels.scss +58 -0
  279. data/vendor/assets/components/bootstrap-sass/lib/_list-group.scss +88 -0
  280. data/vendor/assets/components/bootstrap-sass/lib/_media.scss +56 -0
  281. data/vendor/assets/components/bootstrap-sass/lib/_mixins.scss +861 -0
  282. data/vendor/assets/components/bootstrap-sass/lib/_modals.scss +132 -0
  283. data/vendor/assets/components/bootstrap-sass/lib/_navbar.scss +628 -0
  284. data/vendor/assets/components/bootstrap-sass/lib/_navs.scss +262 -0
  285. data/vendor/assets/components/bootstrap-sass/lib/_normalize.scss +406 -0
  286. data/vendor/assets/components/bootstrap-sass/lib/_pager.scss +55 -0
  287. data/vendor/assets/components/bootstrap-sass/lib/_pagination.scss +85 -0
  288. data/vendor/assets/components/bootstrap-sass/lib/_panels.scss +172 -0
  289. data/vendor/assets/components/bootstrap-sass/lib/_popovers.scss +133 -0
  290. data/vendor/assets/components/bootstrap-sass/lib/_print.scss +105 -0
  291. data/vendor/assets/components/bootstrap-sass/lib/_progress-bars.scss +92 -0
  292. data/vendor/assets/components/bootstrap-sass/lib/_responsive-utilities.scss +198 -0
  293. data/vendor/assets/components/bootstrap-sass/lib/_scaffolding.scss +119 -0
  294. data/vendor/assets/components/bootstrap-sass/lib/_tables.scss +244 -0
  295. data/vendor/assets/components/bootstrap-sass/lib/_theme.scss +247 -0
  296. data/vendor/assets/components/bootstrap-sass/lib/_thumbnails.scss +32 -0
  297. data/vendor/assets/components/bootstrap-sass/lib/_tooltip.scss +95 -0
  298. data/vendor/assets/components/bootstrap-sass/lib/_type.scss +279 -0
  299. data/vendor/assets/components/bootstrap-sass/lib/_utilities.scss +56 -0
  300. data/vendor/assets/components/bootstrap-sass/lib/_variables.scss +637 -0
  301. data/vendor/assets/components/bootstrap-sass/lib/_wells.scss +29 -0
  302. data/vendor/assets/components/bootstrap-sass/lib/bootstrap.scss +49 -0
  303. data/vendor/assets/components/bootstrap-sass/package.json +40 -0
  304. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/CONTRIBUTING.md +12 -0
  305. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/LICENSE +201 -0
  306. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/Makefile +22 -0
  307. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/README.md +144 -0
  308. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/bower.json +35 -0
  309. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.css +174 -0
  310. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css +8 -0
  311. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js +28 -0
  312. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/component.json +10 -0
  313. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/package.json +24 -0
  314. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +1089 -0
  315. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ar-ma.js +56 -0
  316. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ar.js +56 -0
  317. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.bg.js +86 -0
  318. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.br.js +107 -0
  319. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.bs.js +139 -0
  320. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ca.js +66 -0
  321. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.cs.js +155 -0
  322. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.cv.js +59 -0
  323. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.da.js +56 -0
  324. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.de.js +71 -0
  325. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.el.js +79 -0
  326. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-au.js +62 -0
  327. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-ca.js +59 -0
  328. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.en-gb.js +63 -0
  329. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.eo.js +65 -0
  330. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.es.js +66 -0
  331. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.et.js +60 -0
  332. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.eu.js +60 -0
  333. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fa.js +97 -0
  334. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fi.js +103 -0
  335. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fr-ca.js +54 -0
  336. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.fr.js +58 -0
  337. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.gl.js +71 -0
  338. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.he.js +77 -0
  339. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hi.js +105 -0
  340. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hr.js +140 -0
  341. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.hu.js +98 -0
  342. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.id.js +67 -0
  343. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.is.js +124 -0
  344. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.it.js +59 -0
  345. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ja.js +58 -0
  346. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ka.js +108 -0
  347. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ko.js +56 -0
  348. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.lt.js +118 -0
  349. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.lv.js +77 -0
  350. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ml.js +64 -0
  351. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.mr.js +104 -0
  352. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ms-my.js +66 -0
  353. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nb.js +57 -0
  354. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ne.js +105 -0
  355. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nl.js +67 -0
  356. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.nn.js +56 -0
  357. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pl.js +98 -0
  358. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pt-BR.js +56 -0
  359. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.pt.js +60 -0
  360. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ro.js +56 -0
  361. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.ru.js +163 -0
  362. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sk.js +156 -0
  363. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sl.js +144 -0
  364. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sq.js +57 -0
  365. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.sv.js +63 -0
  366. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.th.js +58 -0
  367. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tr.js +93 -0
  368. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tzm-la.js +55 -0
  369. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.tzm.js +55 -0
  370. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.uk.js +157 -0
  371. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.uz.js +55 -0
  372. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.vn.js +62 -0
  373. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.zh-CN.js +108 -0
  374. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/js/locales/bootstrap-datetimepicker.zh-TW.js +84 -0
  375. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less +5 -0
  376. data/vendor/assets/components/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker.less +246 -0
  377. data/vendor/assets/components/jquery/MIT-LICENSE.txt +21 -0
  378. data/vendor/assets/components/jquery/bower.json +27 -0
  379. data/vendor/assets/components/jquery/dist/jquery.js +9111 -0
  380. data/{app/assets/javascripts/jquery-min.js → vendor/assets/components/jquery/dist/jquery.min.js} +1 -0
  381. data/vendor/assets/components/jquery/dist/jquery.min.map +1 -0
  382. data/vendor/assets/components/jquery/src/ajax/jsonp.js +89 -0
  383. data/vendor/assets/components/jquery/src/ajax/load.js +75 -0
  384. data/vendor/assets/components/jquery/src/ajax/parseJSON.js +13 -0
  385. data/vendor/assets/components/jquery/src/ajax/parseXML.js +28 -0
  386. data/vendor/assets/components/jquery/src/ajax/script.js +64 -0
  387. data/vendor/assets/components/jquery/src/ajax/var/nonce.js +5 -0
  388. data/vendor/assets/components/jquery/src/ajax/var/rquery.js +3 -0
  389. data/vendor/assets/components/jquery/src/ajax/xhr.js +130 -0
  390. data/vendor/assets/components/jquery/src/ajax.js +806 -0
  391. data/vendor/assets/components/jquery/src/attributes/attr.js +143 -0
  392. data/vendor/assets/components/jquery/src/attributes/classes.js +158 -0
  393. data/vendor/assets/components/jquery/src/attributes/prop.js +96 -0
  394. data/vendor/assets/components/jquery/src/attributes/support.js +35 -0
  395. data/vendor/assets/components/jquery/src/attributes/val.js +153 -0
  396. data/vendor/assets/components/jquery/src/attributes.js +11 -0
  397. data/vendor/assets/components/jquery/src/callbacks.js +205 -0
  398. data/vendor/assets/components/jquery/src/core/access.js +60 -0
  399. data/vendor/assets/components/jquery/src/core/init.js +123 -0
  400. data/vendor/assets/components/jquery/src/core/parseHTML.js +39 -0
  401. data/vendor/assets/components/jquery/src/core/ready.js +96 -0
  402. data/vendor/assets/components/jquery/src/core/var/rsingleTag.js +4 -0
  403. data/vendor/assets/components/jquery/src/core.js +500 -0
  404. data/vendor/assets/components/jquery/src/css/addGetHookIf.js +24 -0
  405. data/vendor/assets/components/jquery/src/css/curCSS.js +57 -0
  406. data/vendor/assets/components/jquery/src/css/defaultDisplay.js +69 -0
  407. data/vendor/assets/components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  408. data/vendor/assets/components/jquery/src/css/support.js +83 -0
  409. data/vendor/assets/components/jquery/src/css/swap.js +28 -0
  410. data/vendor/assets/components/jquery/src/css/var/cssExpand.js +3 -0
  411. data/vendor/assets/components/jquery/src/css/var/getStyles.js +5 -0
  412. data/vendor/assets/components/jquery/src/css/var/isHidden.js +13 -0
  413. data/vendor/assets/components/jquery/src/css/var/rmargin.js +3 -0
  414. data/vendor/assets/components/jquery/src/css/var/rnumnonpx.js +5 -0
  415. data/vendor/assets/components/jquery/src/css.js +455 -0
  416. data/vendor/assets/components/jquery/src/data/Data.js +181 -0
  417. data/vendor/assets/components/jquery/src/data/accepts.js +20 -0
  418. data/vendor/assets/components/jquery/src/data/var/data_priv.js +5 -0
  419. data/vendor/assets/components/jquery/src/data/var/data_user.js +5 -0
  420. data/vendor/assets/components/jquery/src/data.js +175 -0
  421. data/vendor/assets/components/jquery/src/deferred.js +149 -0
  422. data/vendor/assets/components/jquery/src/deprecated.js +13 -0
  423. data/vendor/assets/components/jquery/src/dimensions.js +50 -0
  424. data/vendor/assets/components/jquery/src/effects/Tween.js +114 -0
  425. data/vendor/assets/components/jquery/src/effects/animatedSelector.js +13 -0
  426. data/vendor/assets/components/jquery/src/effects.js +642 -0
  427. data/vendor/assets/components/jquery/src/event/alias.js +39 -0
  428. data/vendor/assets/components/jquery/src/event/support.js +9 -0
  429. data/vendor/assets/components/jquery/src/event.js +859 -0
  430. data/vendor/assets/components/jquery/src/exports/amd.js +18 -0
  431. data/vendor/assets/components/jquery/src/exports/global.js +32 -0
  432. data/vendor/assets/components/jquery/src/intro.js +44 -0
  433. data/vendor/assets/components/jquery/src/jquery.js +36 -0
  434. data/vendor/assets/components/jquery/src/manipulation/_evalUrl.js +18 -0
  435. data/vendor/assets/components/jquery/src/manipulation/support.js +24 -0
  436. data/vendor/assets/components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  437. data/vendor/assets/components/jquery/src/manipulation.js +583 -0
  438. data/vendor/assets/components/jquery/src/offset.js +204 -0
  439. data/vendor/assets/components/jquery/src/outro.js +1 -0
  440. data/vendor/assets/components/jquery/src/queue/delay.js +22 -0
  441. data/vendor/assets/components/jquery/src/queue.js +142 -0
  442. data/vendor/assets/components/jquery/src/selector-native.js +171 -0
  443. data/vendor/assets/components/jquery/src/selector-sizzle.js +14 -0
  444. data/vendor/assets/components/jquery/src/selector.js +1 -0
  445. data/vendor/assets/components/jquery/src/serialize.js +111 -0
  446. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  447. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  448. data/vendor/assets/components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  449. data/vendor/assets/components/jquery/src/traversing/findFilter.js +100 -0
  450. data/vendor/assets/components/jquery/src/traversing/var/rneedsContext.js +6 -0
  451. data/vendor/assets/components/jquery/src/traversing.js +200 -0
  452. data/vendor/assets/components/jquery/src/var/arr.js +3 -0
  453. data/vendor/assets/components/jquery/src/var/class2type.js +4 -0
  454. data/vendor/assets/components/jquery/src/var/concat.js +5 -0
  455. data/vendor/assets/components/jquery/src/var/hasOwn.js +5 -0
  456. data/vendor/assets/components/jquery/src/var/indexOf.js +5 -0
  457. data/vendor/assets/components/jquery/src/var/pnum.js +3 -0
  458. data/vendor/assets/components/jquery/src/var/push.js +5 -0
  459. data/vendor/assets/components/jquery/src/var/rnotwhite.js +3 -0
  460. data/vendor/assets/components/jquery/src/var/slice.js +5 -0
  461. data/vendor/assets/components/jquery/src/var/strundefined.js +3 -0
  462. data/vendor/assets/components/jquery/src/var/support.js +4 -0
  463. data/vendor/assets/components/jquery/src/var/toString.js +5 -0
  464. data/vendor/assets/components/jquery/src/var/trim.js +3 -0
  465. data/vendor/assets/components/jquery/src/wrap.js +78 -0
  466. data/vendor/assets/components/moment/LICENSE +22 -0
  467. data/vendor/assets/components/moment/bower.json +20 -0
  468. data/vendor/assets/components/moment/lang/ar-ma.js +56 -0
  469. data/vendor/assets/components/moment/lang/ar.js +56 -0
  470. data/vendor/assets/components/moment/lang/bg.js +86 -0
  471. data/vendor/assets/components/moment/lang/br.js +107 -0
  472. data/vendor/assets/components/moment/lang/bs.js +139 -0
  473. data/vendor/assets/components/moment/lang/ca.js +66 -0
  474. data/vendor/assets/components/moment/lang/cs.js +155 -0
  475. data/vendor/assets/components/moment/lang/cv.js +59 -0
  476. data/vendor/assets/components/moment/lang/cy.js +77 -0
  477. data/vendor/assets/components/moment/lang/da.js +56 -0
  478. data/vendor/assets/components/moment/lang/de.js +71 -0
  479. data/vendor/assets/components/moment/lang/el.js +79 -0
  480. data/vendor/assets/components/moment/lang/en-au.js +62 -0
  481. data/vendor/assets/components/moment/lang/en-ca.js +59 -0
  482. data/vendor/assets/components/moment/lang/en-gb.js +63 -0
  483. data/vendor/assets/components/moment/lang/eo.js +65 -0
  484. data/vendor/assets/components/moment/lang/es.js +66 -0
  485. data/vendor/assets/components/moment/lang/et.js +76 -0
  486. data/vendor/assets/components/moment/lang/eu.js +60 -0
  487. data/vendor/assets/components/moment/lang/fa.js +97 -0
  488. data/vendor/assets/components/moment/lang/fi.js +103 -0
  489. data/vendor/assets/components/moment/lang/fo.js +56 -0
  490. data/vendor/assets/components/moment/lang/fr-ca.js +54 -0
  491. data/vendor/assets/components/moment/lang/fr.js +58 -0
  492. data/vendor/assets/components/moment/lang/gl.js +71 -0
  493. data/vendor/assets/components/moment/lang/he.js +77 -0
  494. data/vendor/assets/components/moment/lang/hi.js +105 -0
  495. data/vendor/assets/components/moment/lang/hr.js +140 -0
  496. data/vendor/assets/components/moment/lang/hu.js +98 -0
  497. data/vendor/assets/components/moment/lang/hy-am.js +113 -0
  498. data/vendor/assets/components/moment/lang/id.js +67 -0
  499. data/vendor/assets/components/moment/lang/is.js +124 -0
  500. data/vendor/assets/components/moment/lang/it.js +59 -0
  501. data/vendor/assets/components/moment/lang/ja.js +58 -0
  502. data/vendor/assets/components/moment/lang/ka.js +108 -0
  503. data/vendor/assets/components/moment/lang/ko.js +63 -0
  504. data/vendor/assets/components/moment/lang/lb.js +160 -0
  505. data/vendor/assets/components/moment/lang/lt.js +118 -0
  506. data/vendor/assets/components/moment/lang/lv.js +77 -0
  507. data/vendor/assets/components/moment/lang/mk.js +86 -0
  508. data/vendor/assets/components/moment/lang/ml.js +64 -0
  509. data/vendor/assets/components/moment/lang/mr.js +104 -0
  510. data/vendor/assets/components/moment/lang/ms-my.js +66 -0
  511. data/vendor/assets/components/moment/lang/nb.js +57 -0
  512. data/vendor/assets/components/moment/lang/ne.js +105 -0
  513. data/vendor/assets/components/moment/lang/nl.js +67 -0
  514. data/vendor/assets/components/moment/lang/nn.js +56 -0
  515. data/vendor/assets/components/moment/lang/pl.js +98 -0
  516. data/vendor/assets/components/moment/lang/pt-br.js +56 -0
  517. data/vendor/assets/components/moment/lang/pt.js +60 -0
  518. data/vendor/assets/components/moment/lang/ro.js +72 -0
  519. data/vendor/assets/components/moment/lang/rs.js +139 -0
  520. data/vendor/assets/components/moment/lang/ru.js +163 -0
  521. data/vendor/assets/components/moment/lang/sk.js +156 -0
  522. data/vendor/assets/components/moment/lang/sl.js +144 -0
  523. data/vendor/assets/components/moment/lang/sq.js +57 -0
  524. data/vendor/assets/components/moment/lang/sv.js +63 -0
  525. data/vendor/assets/components/moment/lang/ta.js +112 -0
  526. data/vendor/assets/components/moment/lang/th.js +58 -0
  527. data/vendor/assets/components/moment/lang/tl-ph.js +58 -0
  528. data/vendor/assets/components/moment/lang/tr.js +93 -0
  529. data/vendor/assets/components/moment/lang/tzm-la.js +55 -0
  530. data/vendor/assets/components/moment/lang/tzm.js +55 -0
  531. data/vendor/assets/components/moment/lang/uk.js +157 -0
  532. data/vendor/assets/components/moment/lang/uz.js +55 -0
  533. data/vendor/assets/components/moment/lang/vn.js +62 -0
  534. data/vendor/assets/components/moment/lang/zh-cn.js +108 -0
  535. data/vendor/assets/components/moment/lang/zh-tw.js +84 -0
  536. data/vendor/assets/components/moment/min/langs.js +5841 -0
  537. data/vendor/assets/components/moment/min/langs.min.js +3 -0
  538. data/vendor/assets/components/moment/min/moment-with-langs.js +7768 -0
  539. data/vendor/assets/components/moment/min/moment-with-langs.min.js +9 -0
  540. data/vendor/assets/components/moment/min/moment.min.js +6 -0
  541. data/vendor/assets/components/moment/moment.js +2400 -0
  542. data/vendor/assets/components/moment/readme.md +349 -0
  543. data/{app → vendor}/assets/fonts/open-sans/Apache License Version 2.txt +0 -0
  544. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.eot +0 -0
  545. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.svg +0 -0
  546. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.ttf +0 -0
  547. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Bold-webfont.woff +0 -0
  548. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.eot +0 -0
  549. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.svg +0 -0
  550. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.ttf +0 -0
  551. data/{app → vendor}/assets/fonts/open-sans/OpenSans-BoldItalic-webfont.woff +0 -0
  552. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.eot +0 -0
  553. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.svg +0 -0
  554. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.ttf +0 -0
  555. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBold-webfont.woff +0 -0
  556. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.eot +0 -0
  557. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.svg +0 -0
  558. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.ttf +0 -0
  559. data/{app → vendor}/assets/fonts/open-sans/OpenSans-ExtraBoldItalic-webfont.woff +0 -0
  560. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.eot +0 -0
  561. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.svg +0 -0
  562. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.ttf +0 -0
  563. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Italic-webfont.woff +0 -0
  564. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.eot +0 -0
  565. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.svg +0 -0
  566. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.ttf +0 -0
  567. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Light-webfont.woff +0 -0
  568. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.eot +0 -0
  569. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.svg +0 -0
  570. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.ttf +0 -0
  571. data/{app → vendor}/assets/fonts/open-sans/OpenSans-LightItalic-webfont.woff +0 -0
  572. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.eot +0 -0
  573. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.svg +0 -0
  574. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.ttf +0 -0
  575. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Regular-webfont.woff +0 -0
  576. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.eot +0 -0
  577. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.svg +0 -0
  578. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.ttf +0 -0
  579. data/{app → vendor}/assets/fonts/open-sans/OpenSans-Semibold-webfont.woff +0 -0
  580. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.eot +0 -0
  581. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.svg +0 -0
  582. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.ttf +0 -0
  583. data/{app → vendor}/assets/fonts/open-sans/OpenSans-SemiboldItalic-webfont.woff +0 -0
  584. data/{app → vendor}/assets/stylesheets/open-sans.css.scss +0 -0
  585. metadata +556 -49
  586. data/lib/local_pac/runner.rb +0 -29
  587. data/spec/runner_spec.rb +0 -42
@@ -0,0 +1,49 @@
1
+ // Core variables and mixins
2
+ @import "variables";
3
+ @import "mixins";
4
+
5
+ // Reset
6
+ @import "normalize";
7
+ @import "print";
8
+
9
+ // Core CSS
10
+ @import "scaffolding";
11
+ @import "type";
12
+ @import "code";
13
+ @import "grid";
14
+ @import "tables";
15
+ @import "forms";
16
+ @import "buttons";
17
+
18
+ // Components
19
+ @import "component-animations";
20
+ @import "glyphicons";
21
+ @import "dropdowns";
22
+ @import "button-groups";
23
+ @import "input-groups";
24
+ @import "navs";
25
+ @import "navbar";
26
+ @import "breadcrumbs";
27
+ @import "pagination";
28
+ @import "pager";
29
+ @import "labels";
30
+ @import "badges";
31
+ @import "jumbotron";
32
+ @import "thumbnails";
33
+ @import "alerts";
34
+ @import "progress-bars";
35
+ @import "media";
36
+ @import "list-group";
37
+ @import "panels";
38
+ @import "wells";
39
+ @import "close";
40
+
41
+ // Components w/ JavaScript
42
+ @import "modals";
43
+ @import "tooltip";
44
+ @import "popovers";
45
+ @import "carousel";
46
+
47
+ // Utility classes
48
+ @import "utilities";
49
+ @import "responsive-utilities";
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "bootstrap"
3
+ , "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development."
4
+ , "version": "3.0.2"
5
+ , "keywords": ["bootstrap", "css"]
6
+ , "homepage": "http://getbootstrap.com"
7
+ , "author": "Twitter, Inc."
8
+ , "scripts": { "test": "grunt test" }
9
+ , "repository": {
10
+ "type": "git"
11
+ , "url": "https://github.com/twbs/bootstrap.git"
12
+ }
13
+ , "bugs": {
14
+ "url": "https://github.com/twbs/bootstrap/issues"
15
+ }
16
+ , "licenses": [
17
+ {
18
+ "type": "Apache-2.0"
19
+ , "url": "http://www.apache.org/licenses/LICENSE-2.0"
20
+ }
21
+ ]
22
+ , "devDependencies": {
23
+ "browserstack-runner": "~0.0.12"
24
+ , "btoa": "~1.1.1"
25
+ , "grunt": "~0.4.1"
26
+ , "grunt-contrib-clean": "~0.5.0"
27
+ , "grunt-contrib-concat": "~0.3.0"
28
+ , "grunt-contrib-connect": "~0.5.0"
29
+ , "grunt-contrib-copy": "~0.4.1"
30
+ , "grunt-contrib-jshint": "~0.7.0"
31
+ , "grunt-contrib-qunit": "~0.3.0"
32
+ , "grunt-contrib-uglify": "~0.2.4"
33
+ , "grunt-contrib-watch": "~0.5.3"
34
+ , "grunt-html-validation": "~0.1.6"
35
+ , "grunt-jekyll": "~0.4.0"
36
+ , "grunt-recess": "~0.4.0"
37
+ , "grunt-sed": "~0.1.1"
38
+ , "regexp-quote": "~0.0.0"
39
+ }
40
+ }
@@ -0,0 +1,12 @@
1
+ Contributions guidelines:
2
+
3
+ - Use 2 spaces indentation
4
+ - If it is a bug, try to add an automated test that reproduces it in the
5
+ test/issues.coffee, following the conventions already adopted.
6
+ - If it is a new feature, try to add automated tests for it.
7
+ - Never submit patches that break existing tests(make test should take care of
8
+ downloading dependencies and running the tests)
9
+ - Do not commit the files in the 'build' dir, 'git update-index --assume-unchanged build/{js,css}/*' will help
10
+
11
+ Before starting to develop, enter 'make deps' to download all dependencies
12
+ needed for developing/testing. 'make test' will run all tests.
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,22 @@
1
+ deps:
2
+ git submodule init
3
+ git submodule update
4
+ npm install -d
5
+
6
+ build:
7
+ mkdir -p build/js
8
+ mkdir -p build/css
9
+ ./node_modules/.bin/uglifyjs --comments \
10
+ -o build/js/bootstrap-datetimepicker.min.js \
11
+ src/js/bootstrap-datetimepicker.js
12
+ ./node_modules/.bin/lessc \
13
+ src/less/build.less \
14
+ build/css/bootstrap-datetimepicker.css
15
+ ./node_modules/.bin/lessc -x \
16
+ src/less/build.less \
17
+ build/css/bootstrap-datetimepicker.min.css
18
+
19
+ clean:
20
+ rm -rf build
21
+
22
+ .PHONY: deps build clean test
@@ -0,0 +1,144 @@
1
+ # Bootstrap v3 datetimepicker widget ![GitHub version](https://badge.fury.io/gh/Eonasdan%2Fbootstrap-datetimepicker.png)
2
+
3
+ ![DateTimePicker](http://i.imgur.com/nfnvh5g.png)
4
+
5
+ ### [⇢ View the manual and demos](http://eonasdan.github.io/bootstrap-datetimepicker/)
6
+
7
+ ##Where do you use this?
8
+ I'd love to know if your public site is using this plugin and list your logo on the documentation site. Please email me `eonasdan at outlook dot com`
9
+
10
+ ## Quick installation using
11
+
12
+ ## [bower](http://bower.io): ![Bower version](https://badge.fury.io/bo/eonasdan-bootstrap-datetimepicker.png)
13
+
14
+ Run the following command:
15
+ ```
16
+ bower install eonasdan-bootstrap-datetimepicker#latest --save
17
+ ```
18
+ ## [Nuget](https://www.nuget.org/packages/Bootstrap.v3.Datetimepicker/): ![NuGet version](https://badge.fury.io/nu/Bootstrap.v3.Datetimepicker.png)
19
+ ```
20
+ PM> Install-Package Bootstrap.v3.Datetimepicker
21
+ ```
22
+
23
+ ## [Rails](http://rubyonrails.org/) ![Gem Version](https://badge.fury.io/rb/bootstrap3-datetimepicker-rails.png)
24
+
25
+ Add the following to your `Gemfile`:
26
+ ```
27
+ gem 'momentjs-rails', '~> 2.5.0'
28
+ gem 'bootstrap3-datetimepicker-rails', '~> 2.1.20'
29
+ ```
30
+ Read the rest of the install instructions @
31
+ [TrevorS/bootstrap3-datetimepicker-rails](https://github.com/TrevorS/bootstrap3-datetimepicker-rails)
32
+
33
+
34
+ ## See the [Change Log](#change-log) for important changes and updates
35
+
36
+ Include necessary scripts and styles:
37
+ ```html
38
+ <head>
39
+ <!-- ... -->
40
+ <script type="text/javascript" src="/bower_components/jquery/jquery.min.js"></script>
41
+ <script type="text/javascript" src="/bower_components/moment/min/moment.min.js"></script>
42
+ <script type="text/javascript" src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
43
+ <script type="text/javascript" src="/bower_components/eonasdan-bootstrap-datetimepicker/build/js/bootstrap-datetimepicker.min.js"></script>
44
+ <link rel="stylesheet" href="/bower_components/bootstrap/dist/css/bootstrap.min.css" />
45
+ <link rel="stylesheet" href="/bower_components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css" />
46
+ </head>
47
+ ```
48
+
49
+ Done! [Now take a look at the manual](http://eonasdan.github.io/bootstrap-datetimepicker/) for examples and available options.
50
+
51
+
52
+
53
+ ## Manual installation
54
+
55
+ ### [Moment.js](https://github.com/moment/moment)
56
+ Datetimepicker requires moment.js. This allows for better support for various date formats and locales. See [documentation](http://eonasdan.github.io/bootstrap-datetimepicker/) for examples. Check [Momentjs' homepage](http://momentjs.com/) for documentation on date formats. If you can't use moment.js there's still older version of datetimewidget [available here](https://github.com/Eonasdan/bootstrap-datetimepicker/tree/version1).
57
+
58
+ ```html
59
+ <script type="text/javascript" src="/path/to/moment.js"></script>
60
+ ```
61
+
62
+ ### Bootstrap 3 collapse and transition plugins
63
+ Make sure to include *.JS files for plugins [collapse](http://getbootstrap.com/javascript/#collapse) and [transitions](http://getbootstrap.com/javascript/#transitions). They are included with [bootstrap in js/ directory](https://github.com/twbs/bootstrap/tree/master/js)
64
+
65
+ ```html
66
+ <script type="text/javascript" src="/path/to/bootstrap/js/transition.js"></script>
67
+ <script type="text/javascript" src="/path/to/bootstrap/js/collapse.js"></script>
68
+ ```
69
+
70
+ Alternatively you could include the whole bundle of bootstrap plugins from [bootstrap.js](https://github.com/twbs/bootstrap/tree/master/dist/js)
71
+
72
+ ```html
73
+ <script type="text/javascript" src="/path/to/bootstrap/dist/bootstrap.min.js"></script>
74
+ ```
75
+
76
+
77
+ ### CSS styles
78
+
79
+ #### Using LESS
80
+ ```css
81
+ @import "/path/to/bootstrap/less/variables";
82
+ @import "/path/to/bootstrap-datetimepicker/src/less/bootstrap-datetimepicker";
83
+
84
+ // [...] your custom styles and variables
85
+ ```
86
+
87
+ #### Using CSS (default color palette)
88
+ ```html
89
+ <link rel="stylesheet" href="/path/to/bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css" />
90
+ ```
91
+
92
+ ### Main JS file
93
+
94
+ Finally include the main javascript file.
95
+ ```html
96
+ <script type="text/javascript" src="/path/to/bootstrap-datetimepicker.min.js"></script>
97
+ ```
98
+
99
+ # Change Log
100
+
101
+ ## 2.1.30
102
+ #### Important! `build.less` file name has been been changed to `bootstrap-datetimepicker-build.less` to prevent collisions
103
+
104
+ * Fix for #135: `setStartDate` and `setEndDate` should now properly set.
105
+ * Fix for #133: Typed in date now respects en/disabled dates
106
+ * Fix for #132: En/disable picker function works again
107
+ * Fix for #117, #119, #128, #121: double event `change` event issues should be fixed
108
+ * Fix for #112: `change` function no longer sets the input to a blank value if the passed in date is invalid
109
+
110
+ * Enhancement for #103: Increated the `z-index` of the widget
111
+
112
+ ## 2.1.20
113
+ * Fix for #83: Changes to the picker should fire native `change` event for knockout and the like as well as `change.dp` which contains the old date and the new date
114
+ * Fix for #78: Script has been update for breaking changes in Moment 2.4.0
115
+ * Fix for #73: IE8 should be working now
116
+
117
+ * Enhancement for #79: `minuteStepping` option takes a number (default is 1). Changing the minutes in the time picker will step by this number.
118
+ * Enhancement for #74 and #65: `useMinutes` and `useSeconds` are now options. Disabling seconds will hide the seconds spinner. Disabling minutes will display `00` and hide the arrows
119
+ * Enhancement for #67: Picker will now attempt to convert all `data-OPTION` into its appropriate option
120
+
121
+ ## 2.1.11
122
+ * Fix for #51, #60
123
+ * Fix for #52: Picker has its own `moment` object since moment 2.4.0 has removed global reference
124
+ * Fix for #57: New option for `useStrict`. When validating dates in `update` and `change`, the picker can use a stricter formatting validation
125
+ * Fix for #61: Picker should now properly take formatted date. Should also have correct start of the week for locales.
126
+ * Fix for #62: Default format will properly validate time picker only.
127
+
128
+ ## 2.1.5
129
+ * Custom icons, such as Font Awesome, are now supported. (#49) See [Example#9](http://eonasdan.github.io/bootstrap-datetimepicker/#example9)
130
+ * If more then one `input-group-addon` is present use `datepickerbutton` to identify where the picker should popup from. (#48)
131
+ * New Event: `error.dp`. Fires when Moment cannot parse the date or when the timepicker cannot change because of a `disabledDates` setting. Returns a Moment date object. The specific error can be found be using `invalidAt()`. For more information see [Moment's docs](http://momentjs.com/docs/#/parsing/is-valid/)
132
+ * Fix for #42, plugin will now check for `A` or `a` in the format string to determine if the AM/PM selector should display.
133
+ * Fix for #45, fixed null/empty and invalid dates
134
+ * Fix for #46, fixed active date highlighting
135
+ * Fix for #47, `change.dp` event to also include the previous date.
136
+
137
+ ####2.0.1
138
+ * New event `error.dp` fires when plugin cannot parse date or when increase/descreasing hours/minutes to a disabled date. See [Example#7](http://eonasdan.github.io/bootstrap-datetimepicker/#example7)
139
+ * Minor fixes
140
+
141
+ ####2.0.0
142
+ * `disabledDates` is now an option to set the disabled dates. It accepts date objects like `new Date("November 12, 2013 00:00:00")` and `12/25/2013' and `moment` date objects. See [Example#7](http://eonasdan.github.io/bootstrap-datetimepicker/#example7) for usage.
143
+ * Events are easier to use; see [Example#8](http://eonasdan.github.io/bootstrap-datetimepicker/#example8)
144
+
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "eonasdan-bootstrap-datetimepicker",
3
+ "version": "2.2.20",
4
+ "main": [
5
+ "build/css/bootstrap-datetimepicker.min.css",
6
+ "build/js/bootstrap-datetimepicker.min.js"
7
+ ],
8
+ "dependencies": {
9
+ "jquery": ">=1.8.3",
10
+ "bootstrap": ">= 3.0",
11
+ "moment": ">=2.3.1"
12
+ },
13
+ "homepage": "https://github.com/Eonasdan/bootstrap-datetimepicker",
14
+ "authors": [
15
+ "Eonasdan"
16
+ ],
17
+ "description": "bootstrap3 datetimepicker",
18
+ "keywords": [
19
+ "twitter-bootstrap",
20
+ "bootstrap",
21
+ "datepicker",
22
+ "datetimepicker",
23
+ "timepicker",
24
+ "moment"
25
+ ],
26
+ "license": "MIT",
27
+ "private": false,
28
+ "ignore": [
29
+ "**/.*",
30
+ "node_modules",
31
+ "bower_components",
32
+ "test",
33
+ "tests"
34
+ ]
35
+ }
@@ -0,0 +1,174 @@
1
+ /**
2
+ * Build file for the dist version of datetimepicker.css
3
+ */
4
+ /*!
5
+ * Datetimepicker for Bootstrap v3
6
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
7
+ * Copyright 2012 Stefan Petre
8
+ * Licensed under the Apache License v2.0
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ */
12
+ .bootstrap-datetimepicker-widget {
13
+ top: 0;
14
+ left: 0;
15
+ width: 250px;
16
+ padding: 4px;
17
+ margin-top: 1px;
18
+ z-index: 99999;
19
+ border-radius: 4px;
20
+ /*.dow {
21
+ border-top: 1px solid #ddd !important;
22
+ }*/
23
+ }
24
+ .bootstrap-datetimepicker-widget .btn {
25
+ padding: 6px;
26
+ }
27
+ .bootstrap-datetimepicker-widget:before {
28
+ content: '';
29
+ display: inline-block;
30
+ border-left: 7px solid transparent;
31
+ border-right: 7px solid transparent;
32
+ border-bottom: 7px solid #ccc;
33
+ border-bottom-color: rgba(0, 0, 0, 0.2);
34
+ position: absolute;
35
+ top: -7px;
36
+ left: 6px;
37
+ }
38
+ .bootstrap-datetimepicker-widget:after {
39
+ content: '';
40
+ display: inline-block;
41
+ border-left: 6px solid transparent;
42
+ border-right: 6px solid transparent;
43
+ border-bottom: 6px solid white;
44
+ position: absolute;
45
+ top: -6px;
46
+ left: 7px;
47
+ }
48
+ .bootstrap-datetimepicker-widget.pull-right:before {
49
+ left: auto;
50
+ right: 6px;
51
+ }
52
+ .bootstrap-datetimepicker-widget.pull-right:after {
53
+ left: auto;
54
+ right: 7px;
55
+ }
56
+ .bootstrap-datetimepicker-widget > ul {
57
+ list-style-type: none;
58
+ margin: 0;
59
+ }
60
+ .bootstrap-datetimepicker-widget .timepicker-hour,
61
+ .bootstrap-datetimepicker-widget .timepicker-minute,
62
+ .bootstrap-datetimepicker-widget .timepicker-second {
63
+ width: 100%;
64
+ font-weight: bold;
65
+ font-size: 1.2em;
66
+ }
67
+ .bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator {
68
+ width: 4px;
69
+ padding: 0;
70
+ margin: 0;
71
+ }
72
+ .bootstrap-datetimepicker-widget .datepicker > div {
73
+ display: none;
74
+ }
75
+ .bootstrap-datetimepicker-widget .picker-switch {
76
+ text-align: center;
77
+ }
78
+ .bootstrap-datetimepicker-widget table {
79
+ width: 100%;
80
+ margin: 0;
81
+ }
82
+ .bootstrap-datetimepicker-widget td,
83
+ .bootstrap-datetimepicker-widget th {
84
+ text-align: center;
85
+ width: 20px;
86
+ height: 20px;
87
+ border-radius: 4px;
88
+ }
89
+ .bootstrap-datetimepicker-widget td.day:hover,
90
+ .bootstrap-datetimepicker-widget td.hour:hover,
91
+ .bootstrap-datetimepicker-widget td.minute:hover,
92
+ .bootstrap-datetimepicker-widget td.second:hover {
93
+ background: #eeeeee;
94
+ cursor: pointer;
95
+ }
96
+ .bootstrap-datetimepicker-widget td.old,
97
+ .bootstrap-datetimepicker-widget td.new {
98
+ color: #999999;
99
+ }
100
+ .bootstrap-datetimepicker-widget td.active,
101
+ .bootstrap-datetimepicker-widget td.active:hover {
102
+ background-color: #428bca;
103
+ color: #fff;
104
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
105
+ }
106
+ .bootstrap-datetimepicker-widget td.disabled,
107
+ .bootstrap-datetimepicker-widget td.disabled:hover {
108
+ background: none;
109
+ color: #999999;
110
+ cursor: not-allowed;
111
+ }
112
+ .bootstrap-datetimepicker-widget td span {
113
+ display: block;
114
+ width: 47px;
115
+ height: 54px;
116
+ line-height: 54px;
117
+ float: left;
118
+ margin: 2px;
119
+ cursor: pointer;
120
+ border-radius: 4px;
121
+ }
122
+ .bootstrap-datetimepicker-widget td span:hover {
123
+ background: #eeeeee;
124
+ }
125
+ .bootstrap-datetimepicker-widget td span.active {
126
+ background-color: #428bca;
127
+ color: #fff;
128
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
129
+ }
130
+ .bootstrap-datetimepicker-widget td span.old {
131
+ color: #999999;
132
+ }
133
+ .bootstrap-datetimepicker-widget td span.disabled,
134
+ .bootstrap-datetimepicker-widget td span.disabled:hover {
135
+ background: none;
136
+ color: #999999;
137
+ cursor: not-allowed;
138
+ }
139
+ .bootstrap-datetimepicker-widget th.switch {
140
+ width: 145px;
141
+ }
142
+ .bootstrap-datetimepicker-widget th.next,
143
+ .bootstrap-datetimepicker-widget th.prev {
144
+ font-size: 21px;
145
+ }
146
+ .bootstrap-datetimepicker-widget th.disabled,
147
+ .bootstrap-datetimepicker-widget th.disabled:hover {
148
+ background: none;
149
+ color: #999999;
150
+ cursor: not-allowed;
151
+ }
152
+ .bootstrap-datetimepicker-widget thead tr:first-child th {
153
+ cursor: pointer;
154
+ }
155
+ .bootstrap-datetimepicker-widget thead tr:first-child th:hover {
156
+ background: #eeeeee;
157
+ }
158
+ .input-group.date .input-group-addon span {
159
+ display: block;
160
+ cursor: pointer;
161
+ width: 16px;
162
+ height: 16px;
163
+ }
164
+ .bootstrap-datetimepicker-widget.left-oriented:before {
165
+ left: auto;
166
+ right: 6px;
167
+ }
168
+ .bootstrap-datetimepicker-widget.left-oriented:after {
169
+ left: auto;
170
+ right: 7px;
171
+ }
172
+ .bootstrap-datetimepicker-widget ul.list-unstyled li.in div.timepicker div.timepicker-picker table.table-condensed tbody > tr > td {
173
+ padding: 0px !important;
174
+ }