alchemy 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (620) hide show
  1. data/LICENSE +20 -0
  2. data/README.md +6 -0
  3. data/Rakefile +21 -0
  4. data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.eot +0 -0
  5. data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.svg +154 -0
  6. data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.ttf +0 -0
  7. data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.woff +0 -0
  8. data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.eot +0 -0
  9. data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.svg +154 -0
  10. data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.ttf +0 -0
  11. data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.woff +0 -0
  12. data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.eot +0 -0
  13. data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.svg +154 -0
  14. data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.ttf +0 -0
  15. data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.woff +0 -0
  16. data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.eot +0 -0
  17. data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.svg +154 -0
  18. data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.ttf +0 -0
  19. data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.woff +0 -0
  20. data/app/assets/fonts/alchemy/Red Hat Liberation License.txt +78 -0
  21. data/app/assets/fonts/alchemy/overpass_bold-web.eot +0 -0
  22. data/app/assets/fonts/alchemy/overpass_bold-web.svg +470 -0
  23. data/app/assets/fonts/alchemy/overpass_bold-web.ttf +0 -0
  24. data/app/assets/fonts/alchemy/overpass_bold-web.woff +0 -0
  25. data/app/assets/fonts/alchemy/overpass_regular-web.eot +0 -0
  26. data/app/assets/fonts/alchemy/overpass_regular-web.svg +470 -0
  27. data/app/assets/fonts/alchemy/overpass_regular-web.ttf +0 -0
  28. data/app/assets/fonts/alchemy/overpass_regular-web.woff +0 -0
  29. data/app/assets/images/alchemy/icons/action-icons.png +0 -0
  30. data/app/assets/images/alchemy/icons/arrow_icon.png +0 -0
  31. data/app/assets/images/alchemy/icons/chosen-sprite.png +0 -0
  32. data/app/assets/images/alchemy/icons/error_icon.png +0 -0
  33. data/app/assets/images/alchemy/icons/objects.png +0 -0
  34. data/app/assets/images/alchemy/icons/spinner.gif +0 -0
  35. data/app/assets/images/alchemy/icons/spinner_head.gif +0 -0
  36. data/app/assets/images/alchemy/icons/success_icon.png +0 -0
  37. data/app/assets/images/alchemy/icons/warning_icon.png +0 -0
  38. data/app/assets/javascripts/alchemy/flash_messages.js +12 -0
  39. data/app/assets/javascripts/alchemy/forms.js +25 -0
  40. data/app/assets/javascripts/alchemy/i18n.js +36 -0
  41. data/app/assets/javascripts/alchemy/login.js +130 -0
  42. data/app/assets/javascripts/alchemy/password.js +99 -0
  43. data/app/assets/stylesheets/alchemy/components/_chosen.scss +423 -0
  44. data/app/assets/stylesheets/alchemy/components/_content.scss +58 -0
  45. data/app/assets/stylesheets/alchemy/components/_helpers.scss +38 -0
  46. data/app/assets/stylesheets/alchemy/components/_media.scss +49 -0
  47. data/app/assets/stylesheets/alchemy/components/_normalize.scss +448 -0
  48. data/app/assets/stylesheets/alchemy/components/_shared.scss +18 -0
  49. data/app/assets/stylesheets/alchemy/components/buttons/_buttons.scss +241 -0
  50. data/app/assets/stylesheets/alchemy/components/buttons/_buttons_vars.scss +10 -0
  51. data/app/assets/stylesheets/alchemy/components/flash_messages/_flash_messages.scss +93 -0
  52. data/app/assets/stylesheets/alchemy/components/flash_messages/_flash_messages_vars.scss +3 -0
  53. data/app/assets/stylesheets/alchemy/components/fonts/_liberation.scss +44 -0
  54. data/app/assets/stylesheets/alchemy/components/fonts/_overpass.scss +24 -0
  55. data/app/assets/stylesheets/alchemy/components/footer/_footer.scss +53 -0
  56. data/app/assets/stylesheets/alchemy/components/footer/_footer_vars.scss +4 -0
  57. data/app/assets/stylesheets/alchemy/components/forms/_forms.scss +536 -0
  58. data/app/assets/stylesheets/alchemy/components/forms/_forms_ie.scss +45 -0
  59. data/app/assets/stylesheets/alchemy/components/forms/_forms_mixins.scss +18 -0
  60. data/app/assets/stylesheets/alchemy/components/forms/_forms_responsive.scss +161 -0
  61. data/app/assets/stylesheets/alchemy/components/forms/_forms_vars.scss +25 -0
  62. data/app/assets/stylesheets/alchemy/components/header/_header.scss +214 -0
  63. data/app/assets/stylesheets/alchemy/components/header/_header_vars.scss +11 -0
  64. data/app/assets/stylesheets/alchemy/components/login/_login.scss +169 -0
  65. data/app/assets/stylesheets/alchemy/components/login/_login_mixins.scss +7 -0
  66. data/app/assets/stylesheets/alchemy/components/login/_login_vars.scss +19 -0
  67. data/app/assets/stylesheets/alchemy/components/sprites/_sprites.scss +110 -0
  68. data/app/assets/stylesheets/alchemy/components/sprites/_sprites_mixins.scss +9 -0
  69. data/app/assets/stylesheets/alchemy/components/text/_text.scss +30 -0
  70. data/app/assets/stylesheets/alchemy/components/text/_text_vars.scss +1 -0
  71. data/app/assets/stylesheets/alchemy/composites/content_elements.scss +6 -0
  72. data/app/assets/stylesheets/alchemy/composites/login.scss +9 -0
  73. data/app/assets/stylesheets/alchemy/composites/shell.scss +4 -0
  74. data/app/assets/stylesheets/alchemy/partials/_base.scss +8 -0
  75. data/app/assets/stylesheets/alchemy/partials/_colors.scss +99 -0
  76. data/app/assets/stylesheets/alchemy/partials/_mixins.scss +24 -0
  77. data/app/assets/stylesheets/alchemy/partials/_vars.scss +31 -0
  78. data/app/helpers/alchemy/gettext_translations.rb +27 -0
  79. data/app/helpers/alchemy/layout_helper.rb +19 -0
  80. data/app/helpers/alchemy/rails_translations.rb +21 -0
  81. data/app/helpers/alchemy/translation_helper.rb +19 -0
  82. data/app/views/alchemy/layouts/_base.haml +20 -0
  83. data/app/views/alchemy/layouts/_change_password_layout.html.haml +20 -0
  84. data/app/views/alchemy/layouts/_common_i18n.haml +4 -0
  85. data/app/views/alchemy/layouts/_header_layout.haml +13 -0
  86. data/app/views/alchemy/layouts/_login_layout.html.haml +58 -0
  87. data/app/views/alchemy/layouts/_user_session_layout.haml +17 -0
  88. data/app/views/alchemy/layouts/shell_layout.haml +10 -0
  89. data/lib/alchemy.rb +6 -0
  90. data/lib/alchemy/version.rb +3 -0
  91. data/test/alchemy_test.rb +7 -0
  92. data/test/test_helper.rb +9 -0
  93. data/vendor/assets/javascripts/alchemy/html5shiv.js +298 -0
  94. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  95. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  96. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_highlight-hard_75_dadada_1x100.png +0 -0
  97. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_highlight-hard_75_e6e6e6_1x100.png +0 -0
  98. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_highlight-hard_95_ffffff_1x100.png +0 -0
  99. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_highlight-soft_80_e0e0e0_1x100.png +0 -0
  100. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_inset-hard_65_ffffff_1x100.png +0 -0
  101. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
  102. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_8f8f8f_256x240.png +0 -0
  103. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_97baed_256x240.png +0 -0
  104. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
  105. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/jquery-ui-1.8.11.custom.css +573 -0
  106. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/AUTHORS.txt +30 -0
  107. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/GPL-LICENSE.txt +278 -0
  108. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/MIT-LICENSE.txt +25 -0
  109. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/collapsible.html +57 -0
  110. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/custom-icons.html +69 -0
  111. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/default.html +85 -0
  112. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/fillspace.html +76 -0
  113. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/hoverintent.html +134 -0
  114. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/index.html +25 -0
  115. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/mouseover.html +57 -0
  116. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/no-auto-height.html +60 -0
  117. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/sortable.html +83 -0
  118. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/addClass/default.html +52 -0
  119. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/addClass/index.html +18 -0
  120. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/animate/default.html +61 -0
  121. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/animate/index.html +18 -0
  122. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/categories.html +71 -0
  123. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/combobox.html +171 -0
  124. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/custom-data.html +95 -0
  125. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/default.html +64 -0
  126. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/folding.html +62 -0
  127. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/jquery_32x32.png +0 -0
  128. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/jqueryui_32x32.png +0 -0
  129. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
  130. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/transparent_1x1.png +0 -0
  131. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
  132. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/index.html +27 -0
  133. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/london.xml +114 -0
  134. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/maxheight.html +79 -0
  135. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/multiple-remote.html +84 -0
  136. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/multiple.html +99 -0
  137. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote-jsonp.html +86 -0
  138. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote-with-cache.html +59 -0
  139. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote.html +59 -0
  140. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/search.php +640 -0
  141. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/xml.html +72 -0
  142. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/checkbox.html +44 -0
  143. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/default.html +38 -0
  144. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/icons.html +56 -0
  145. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/index.html +23 -0
  146. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/radio.html +39 -0
  147. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/splitbutton.html +55 -0
  148. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/toolbar.html +120 -0
  149. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/alt-field.html +36 -0
  150. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/animation.html +58 -0
  151. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/buttonbar.html +35 -0
  152. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/date-formats.html +47 -0
  153. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/date-range.html +49 -0
  154. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/default.html +33 -0
  155. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/dropdown-month-year.html +36 -0
  156. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/icon-trigger.html +37 -0
  157. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/images/calendar.gif +0 -0
  158. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/index.html +31 -0
  159. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/inline.html +33 -0
  160. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/localization.html +162 -0
  161. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/min-max.html +33 -0
  162. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/multiple-calendars.html +36 -0
  163. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/other-months.html +37 -0
  164. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/show-week.html +39 -0
  165. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/demos.css +334 -0
  166. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/animated.html +56 -0
  167. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/default.html +54 -0
  168. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/index.html +23 -0
  169. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-confirmation.html +69 -0
  170. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-form.html +167 -0
  171. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-message.html +71 -0
  172. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal.html +60 -0
  173. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/constrain-movement.html +69 -0
  174. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/cursor-style.html +49 -0
  175. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/default.html +39 -0
  176. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/delay-start.html +45 -0
  177. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/events.html +77 -0
  178. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/handle.html +50 -0
  179. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/index.html +28 -0
  180. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/revert.html +44 -0
  181. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/scroll.html +51 -0
  182. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/snap-to.html +68 -0
  183. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/sortable.html +57 -0
  184. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/visual-feedback.html +77 -0
  185. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/accepted-elements.html +60 -0
  186. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/default.html +53 -0
  187. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
  188. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
  189. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
  190. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
  191. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
  192. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
  193. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
  194. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
  195. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/index.html +24 -0
  196. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/photo-manager.html +184 -0
  197. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/propagation.html +80 -0
  198. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/revert.html +61 -0
  199. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/shopping-cart.html +101 -0
  200. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/visual-feedback.html +78 -0
  201. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/default.html +109 -0
  202. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/easing.html +108 -0
  203. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/index.html +19 -0
  204. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/hide/default.html +102 -0
  205. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/hide/index.html +18 -0
  206. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/calendar.gif +0 -0
  207. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
  208. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-config-on.gif +0 -0
  209. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
  210. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-spindown-open.gif +0 -0
  211. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/icon-docs-info.gif +0 -0
  212. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/pbar-ani.gif +0 -0
  213. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/index.html +321 -0
  214. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/cycler.html +122 -0
  215. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/default.html +153 -0
  216. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/earth.jpg +0 -0
  217. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/flight.jpg +0 -0
  218. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/rocket.jpg +0 -0
  219. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/index.html +19 -0
  220. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/animated.html +44 -0
  221. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/default.html +35 -0
  222. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/images/pbar-ani.gif +0 -0
  223. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/index.html +20 -0
  224. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/resize.html +40 -0
  225. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/removeClass/default.html +52 -0
  226. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/removeClass/index.html +18 -0
  227. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/animate.html +43 -0
  228. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/aspect-ratio.html +42 -0
  229. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/constrain-area.html +47 -0
  230. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/default.html +40 -0
  231. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/delay-start.html +52 -0
  232. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/helper.html +43 -0
  233. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/index.html +28 -0
  234. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/max-min.html +45 -0
  235. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/snap-to-grid.html +42 -0
  236. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/synchronous-resize.html +49 -0
  237. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/textarea.html +41 -0
  238. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/visual-feedback.html +43 -0
  239. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/default.html +50 -0
  240. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/display-grid.html +55 -0
  241. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/index.html +20 -0
  242. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/serialize.html +61 -0
  243. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/show/default.html +104 -0
  244. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/show/index.html +18 -0
  245. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/colorpicker.html +95 -0
  246. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/default.html +37 -0
  247. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/hotelrooms.html +59 -0
  248. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/index.html +29 -0
  249. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/multiple-vertical.html +77 -0
  250. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/range-vertical.html +51 -0
  251. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/range.html +52 -0
  252. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/rangemax.html +50 -0
  253. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/rangemin.html +51 -0
  254. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/side-scroll.html +140 -0
  255. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/slider-vertical.html +52 -0
  256. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/steps.html +51 -0
  257. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/tabs.html +67 -0
  258. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/connect-lists-through-tabs.html +78 -0
  259. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/connect-lists.html +58 -0
  260. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/default.html +51 -0
  261. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/delay-start.html +67 -0
  262. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/display-grid.html +54 -0
  263. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/empty-lists.html +69 -0
  264. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/index.html +26 -0
  265. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/items.html +70 -0
  266. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/placeholder.html +56 -0
  267. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/portlets.html +96 -0
  268. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/switchClass/default.html +47 -0
  269. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/switchClass/index.html +18 -0
  270. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax.html +53 -0
  271. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content1.html +4 -0
  272. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content2.html +4 -0
  273. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content3-slow.php +7 -0
  274. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content4-broken.php +3 -0
  275. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/bottom.html +60 -0
  276. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/collapsible.html +55 -0
  277. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/cookie.html +56 -0
  278. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/default.html +49 -0
  279. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/index.html +25 -0
  280. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/manipulation.html +124 -0
  281. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/mouseover.html +53 -0
  282. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/sortable.html +58 -0
  283. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/vertical.html +61 -0
  284. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggle/default.html +94 -0
  285. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggle/index.html +18 -0
  286. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggleClass/default.html +46 -0
  287. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggleClass/index.html +18 -0
  288. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/accordion.html +1017 -0
  289. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/addClass.html +109 -0
  290. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/animate.html +78 -0
  291. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/autocomplete.html +833 -0
  292. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/button.html +500 -0
  293. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/datepicker.html +2570 -0
  294. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/dialog.html +1698 -0
  295. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/draggable.html +1577 -0
  296. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/droppable.html +829 -0
  297. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/effect.html +143 -0
  298. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/hide.html +144 -0
  299. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/position.html +227 -0
  300. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/progressbar.html +460 -0
  301. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/removeClass.html +113 -0
  302. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/resizable.html +1201 -0
  303. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/selectable.html +848 -0
  304. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/show.html +144 -0
  305. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/slider.html +860 -0
  306. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/sortable.html +1952 -0
  307. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/switchClass.html +129 -0
  308. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/tabs.html +1549 -0
  309. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/toggle.html +144 -0
  310. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/toggleClass.html +111 -0
  311. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.bgiframe-2.1.2.js +39 -0
  312. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.cookie.js +89 -0
  313. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.metadata.js +122 -0
  314. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/qunit.css +153 -0
  315. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/qunit.js +1261 -0
  316. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/jquery-1.5.1.js +8316 -0
  317. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  318. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  319. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  320. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  321. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  322. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  323. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  324. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  325. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  326. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  327. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  328. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  329. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  330. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.accordion.css +19 -0
  331. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.all.css +11 -0
  332. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.autocomplete.css +53 -0
  333. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.base.css +11 -0
  334. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.button.css +38 -0
  335. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.core.css +41 -0
  336. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.datepicker.css +68 -0
  337. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.dialog.css +21 -0
  338. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.progressbar.css +11 -0
  339. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.resizable.css +20 -0
  340. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.selectable.css +10 -0
  341. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.slider.css +24 -0
  342. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.tabs.css +18 -0
  343. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.theme.css +252 -0
  344. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  345. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  346. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_highlight-hard_75_dadada_1x100.png +0 -0
  347. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_highlight-hard_75_e6e6e6_1x100.png +0 -0
  348. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_highlight-hard_95_ffffff_1x100.png +0 -0
  349. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_highlight-soft_80_e0e0e0_1x100.png +0 -0
  350. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_inset-hard_65_ffffff_1x100.png +0 -0
  351. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
  352. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_8f8f8f_256x240.png +0 -0
  353. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_97baed_256x240.png +0 -0
  354. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
  355. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery-ui-1.8.11.custom.css +573 -0
  356. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.accordion.css +19 -0
  357. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.all.css +11 -0
  358. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.autocomplete.css +53 -0
  359. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.base.css +11 -0
  360. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.button.css +38 -0
  361. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.core.css +41 -0
  362. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.datepicker.css +68 -0
  363. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.dialog.css +21 -0
  364. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.progressbar.css +11 -0
  365. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.resizable.css +20 -0
  366. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.selectable.css +10 -0
  367. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.slider.css +24 -0
  368. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.tabs.css +18 -0
  369. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.theme.css +254 -0
  370. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery-ui-i18n.js +1379 -0
  371. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
  372. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
  373. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
  374. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
  375. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
  376. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
  377. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
  378. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
  379. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
  380. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
  381. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
  382. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
  383. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
  384. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
  385. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
  386. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
  387. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
  388. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
  389. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +23 -0
  390. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
  391. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
  392. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
  393. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
  394. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
  395. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
  396. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
  397. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
  398. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
  399. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
  400. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
  401. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
  402. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
  403. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
  404. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-kz.js +23 -0
  405. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
  406. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
  407. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
  408. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
  409. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
  410. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
  411. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
  412. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
  413. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
  414. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
  415. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
  416. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
  417. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
  418. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
  419. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
  420. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
  421. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
  422. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
  423. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
  424. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
  425. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
  426. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
  427. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +23 -0
  428. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
  429. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
  430. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
  431. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
  432. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery-ui-1.8.11.custom.js +11577 -0
  433. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.blind.js +49 -0
  434. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.bounce.js +78 -0
  435. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.clip.js +54 -0
  436. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.core.js +747 -0
  437. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.drop.js +50 -0
  438. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.explode.js +79 -0
  439. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.fade.js +32 -0
  440. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.fold.js +56 -0
  441. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.highlight.js +50 -0
  442. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.pulsate.js +51 -0
  443. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.scale.js +178 -0
  444. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.shake.js +57 -0
  445. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.slide.js +50 -0
  446. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.transfer.js +45 -0
  447. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.accordion.js +611 -0
  448. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.autocomplete.js +612 -0
  449. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.button.js +387 -0
  450. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.core.js +308 -0
  451. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.datepicker.js +1773 -0
  452. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.dialog.js +857 -0
  453. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.draggable.js +799 -0
  454. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.droppable.js +285 -0
  455. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.mouse.js +156 -0
  456. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.position.js +252 -0
  457. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.progressbar.js +108 -0
  458. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.resizable.js +812 -0
  459. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.selectable.js +266 -0
  460. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.slider.js +682 -0
  461. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.sortable.js +1073 -0
  462. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.tabs.js +758 -0
  463. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.widget.js +262 -0
  464. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.blind.min.js +14 -0
  465. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.bounce.min.js +15 -0
  466. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.clip.min.js +14 -0
  467. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.core.min.js +30 -0
  468. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.drop.min.js +14 -0
  469. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.explode.min.js +15 -0
  470. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.fade.min.js +13 -0
  471. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.fold.min.js +14 -0
  472. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.highlight.min.js +14 -0
  473. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.pulsate.min.js +14 -0
  474. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.scale.min.js +20 -0
  475. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.shake.min.js +14 -0
  476. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.slide.min.js +14 -0
  477. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.transfer.min.js +14 -0
  478. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.accordion.min.js +30 -0
  479. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.autocomplete.min.js +32 -0
  480. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.button.min.js +25 -0
  481. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.core.min.js +17 -0
  482. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.datepicker.min.js +82 -0
  483. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.dialog.min.js +40 -0
  484. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.draggable.min.js +50 -0
  485. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.droppable.min.js +26 -0
  486. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.mouse.min.js +17 -0
  487. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.position.min.js +16 -0
  488. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.progressbar.min.js +16 -0
  489. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.resizable.min.js +47 -0
  490. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.selectable.min.js +22 -0
  491. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.slider.min.js +33 -0
  492. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.sortable.min.js +60 -0
  493. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.tabs.min.js +35 -0
  494. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.widget.min.js +15 -0
  495. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/version.txt +1 -0
  496. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/js/jquery-1.5.1.min.js +16 -0
  497. data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/js/jquery-ui-1.8.11.custom.min.js +783 -0
  498. data/vendor/assets/javascripts/alchemy/jquery/jquery-1.6.2.js +8981 -0
  499. data/vendor/assets/javascripts/alchemy/jquery/plugins/chosen.jquery.js +1003 -0
  500. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/API.txt +1201 -0
  501. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/FAQ.txt +76 -0
  502. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/LICENSE.txt +22 -0
  503. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/Makefile +9 -0
  504. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/NEWS.txt +508 -0
  505. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/PLUGINS.txt +137 -0
  506. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/README.txt +90 -0
  507. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/ajax.html +143 -0
  508. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/annotating.html +75 -0
  509. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-down.gif +0 -0
  510. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-left.gif +0 -0
  511. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-right.gif +0 -0
  512. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-up.gif +0 -0
  513. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/basic.html +38 -0
  514. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-1.json +4 -0
  515. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-2.json +4 -0
  516. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-3.json +4 -0
  517. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-4.json +4 -0
  518. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-5.json +4 -0
  519. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth.json +4 -0
  520. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-japan-gdp-growth.json +4 -0
  521. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-usa-gdp-growth.json +4 -0
  522. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/graph-types.html +75 -0
  523. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/hs-2004-27-a-large_web.jpg +0 -0
  524. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/image.html +45 -0
  525. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/index.html +44 -0
  526. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/interacting-axes.html +97 -0
  527. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/interacting.html +93 -0
  528. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/layout.css +6 -0
  529. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/multiple-axes.html +60 -0
  530. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/navigate.html +118 -0
  531. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/percentiles.html +57 -0
  532. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/pie.html +756 -0
  533. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/realtime.html +83 -0
  534. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/resize.html +61 -0
  535. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/selection.html +114 -0
  536. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/setting-options.html +61 -0
  537. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/stacking.html +77 -0
  538. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/symbols.html +49 -0
  539. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/thresholding.html +54 -0
  540. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/time.html +71 -0
  541. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/tracking.html +95 -0
  542. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/turning-series.html +98 -0
  543. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/visitors.html +90 -0
  544. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/zooming.html +98 -0
  545. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/excanvas.js +1427 -0
  546. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/excanvas.min.js +1 -0
  547. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.colorhelpers.js +179 -0
  548. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.colorhelpers.min.js +1 -0
  549. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.crosshair.js +167 -0
  550. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.crosshair.min.js +1 -0
  551. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.fillbetween.js +183 -0
  552. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.fillbetween.min.js +1 -0
  553. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.image.js +238 -0
  554. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.image.min.js +1 -0
  555. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.js +2599 -0
  556. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.min.js +6 -0
  557. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.navigate.js +336 -0
  558. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.navigate.min.js +1 -0
  559. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.pie.js +750 -0
  560. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.pie.min.js +1 -0
  561. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.resize.js +60 -0
  562. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.resize.min.js +1 -0
  563. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.selection.js +344 -0
  564. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.selection.min.js +1 -0
  565. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.stack.js +184 -0
  566. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.stack.min.js +1 -0
  567. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.symbol.js +70 -0
  568. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.symbol.min.js +1 -0
  569. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.threshold.js +103 -0
  570. data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.threshold.min.js +1 -0
  571. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/blank.svg +3 -0
  572. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/custom_test.js +67 -0
  573. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.css +9 -0
  574. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.js +1101 -0
  575. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.min.js +7 -0
  576. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.pack.js +7 -0
  577. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.js +396 -0
  578. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.min.js +7 -0
  579. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.pack.js +7 -0
  580. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.js +1337 -0
  581. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.min.js +7 -0
  582. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.pack.js +7 -0
  583. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/lion.svg +161 -0
  584. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/test.js +714 -0
  585. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ajaxfileupload.js +205 -0
  586. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ba-bbq.js +1137 -0
  587. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ba-resize.js +246 -0
  588. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.cookie.js +92 -0
  589. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.easing.1.3.js +205 -0
  590. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.fancyqueries.js +106 -0
  591. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.flash.js +288 -0
  592. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.form.js +964 -0
  593. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.hoverIntent.js +106 -0
  594. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jeditable.ajaxupload.js +62 -0
  595. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jeditable.js +556 -0
  596. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jnotify.js +210 -0
  597. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jscrollpane.js +1390 -0
  598. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jscrollpane.min.js +11 -0
  599. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.linkHover.js +89 -0
  600. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.loadmask.min.js +10 -0
  601. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.mousewheel.js +78 -0
  602. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.multiselect.filter.js +176 -0
  603. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.multiselect.js +668 -0
  604. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.pack.js +11 -0
  605. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.periodicalupdater.js +175 -0
  606. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.sortElements.js +75 -0
  607. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.sparkline.min.js +94 -0
  608. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.text-overflow.js +60 -0
  609. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.timepickr.js +214 -0
  610. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.timers.js +142 -0
  611. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.tipsy.js +358 -0
  612. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.treeTable.js +226 -0
  613. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.trunk8.js +203 -0
  614. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ui.multiselect.js +338 -0
  615. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ui.totop.js +58 -0
  616. data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.uitablefilter.js +95 -0
  617. data/vendor/assets/javascripts/alchemy/jquery/plugins/ui.spinner.js +683 -0
  618. data/vendor/assets/javascripts/alchemy/rails.js +331 -0
  619. data/vendor/assets/javascripts/alchemy/underscore-1.3.1.js +999 -0
  620. metadata +683 -0
@@ -0,0 +1,1773 @@
1
+ /*
2
+ * jQuery UI Datepicker 1.8.11
3
+ *
4
+ * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5
+ * Dual licensed under the MIT or GPL Version 2 licenses.
6
+ * http://jquery.org/license
7
+ *
8
+ * http://docs.jquery.com/UI/Datepicker
9
+ *
10
+ * Depends:
11
+ * jquery.ui.core.js
12
+ */
13
+ (function( $, undefined ) {
14
+
15
+ $.extend($.ui, { datepicker: { version: "1.8.11" } });
16
+
17
+ var PROP_NAME = 'datepicker';
18
+ var dpuuid = new Date().getTime();
19
+
20
+ /* Date picker manager.
21
+ Use the singleton instance of this class, $.datepicker, to interact with the date picker.
22
+ Settings for (groups of) date pickers are maintained in an instance object,
23
+ allowing multiple different settings on the same page. */
24
+
25
+ function Datepicker() {
26
+ this.debug = false; // Change this to true to start debugging
27
+ this._curInst = null; // The current instance in use
28
+ this._keyEvent = false; // If the last event was a key event
29
+ this._disabledInputs = []; // List of date picker inputs that have been disabled
30
+ this._datepickerShowing = false; // True if the popup picker is showing , false if not
31
+ this._inDialog = false; // True if showing within a "dialog", false if not
32
+ this._mainDivId = 'ui-datepicker-div'; // The ID of the main datepicker division
33
+ this._inlineClass = 'ui-datepicker-inline'; // The name of the inline marker class
34
+ this._appendClass = 'ui-datepicker-append'; // The name of the append marker class
35
+ this._triggerClass = 'ui-datepicker-trigger'; // The name of the trigger marker class
36
+ this._dialogClass = 'ui-datepicker-dialog'; // The name of the dialog marker class
37
+ this._disableClass = 'ui-datepicker-disabled'; // The name of the disabled covering marker class
38
+ this._unselectableClass = 'ui-datepicker-unselectable'; // The name of the unselectable cell marker class
39
+ this._currentClass = 'ui-datepicker-current-day'; // The name of the current day marker class
40
+ this._dayOverClass = 'ui-datepicker-days-cell-over'; // The name of the day hover marker class
41
+ this.regional = []; // Available regional settings, indexed by language code
42
+ this.regional[''] = { // Default regional settings
43
+ closeText: 'Done', // Display text for close link
44
+ prevText: 'Prev', // Display text for previous month link
45
+ nextText: 'Next', // Display text for next month link
46
+ currentText: 'Today', // Display text for current month link
47
+ monthNames: ['January','February','March','April','May','June',
48
+ 'July','August','September','October','November','December'], // Names of months for drop-down and formatting
49
+ monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], // For formatting
50
+ dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], // For formatting
51
+ dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], // For formatting
52
+ dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], // Column headings for days starting at Sunday
53
+ weekHeader: 'Wk', // Column header for week of the year
54
+ dateFormat: 'mm/dd/yy', // See format options on parseDate
55
+ firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ...
56
+ isRTL: false, // True if right-to-left language, false if left-to-right
57
+ showMonthAfterYear: false, // True if the year select precedes month, false for month then year
58
+ yearSuffix: '' // Additional text to append to the year in the month headers
59
+ };
60
+ this._defaults = { // Global defaults for all the date picker instances
61
+ showOn: 'focus', // 'focus' for popup on focus,
62
+ // 'button' for trigger button, or 'both' for either
63
+ showAnim: 'fadeIn', // Name of jQuery animation for popup
64
+ showOptions: {}, // Options for enhanced animations
65
+ defaultDate: null, // Used when field is blank: actual date,
66
+ // +/-number for offset from today, null for today
67
+ appendText: '', // Display text following the input box, e.g. showing the format
68
+ buttonText: '...', // Text for trigger button
69
+ buttonImage: '', // URL for trigger button image
70
+ buttonImageOnly: false, // True if the image appears alone, false if it appears on a button
71
+ hideIfNoPrevNext: false, // True to hide next/previous month links
72
+ // if not applicable, false to just disable them
73
+ navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links
74
+ gotoCurrent: false, // True if today link goes back to current selection instead
75
+ changeMonth: false, // True if month can be selected directly, false if only prev/next
76
+ changeYear: false, // True if year can be selected directly, false if only prev/next
77
+ yearRange: 'c-10:c+10', // Range of years to display in drop-down,
78
+ // either relative to today's year (-nn:+nn), relative to currently displayed year
79
+ // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n)
80
+ showOtherMonths: false, // True to show dates in other months, false to leave blank
81
+ selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable
82
+ showWeek: false, // True to show week of the year, false to not show it
83
+ calculateWeek: this.iso8601Week, // How to calculate the week of the year,
84
+ // takes a Date and returns the number of the week for it
85
+ shortYearCutoff: '+10', // Short year values < this are in the current century,
86
+ // > this are in the previous century,
87
+ // string value starting with '+' for current year + value
88
+ minDate: null, // The earliest selectable date, or null for no limit
89
+ maxDate: null, // The latest selectable date, or null for no limit
90
+ duration: 'fast', // Duration of display/closure
91
+ beforeShowDay: null, // Function that takes a date and returns an array with
92
+ // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or '',
93
+ // [2] = cell title (optional), e.g. $.datepicker.noWeekends
94
+ beforeShow: null, // Function that takes an input field and
95
+ // returns a set of custom settings for the date picker
96
+ onSelect: null, // Define a callback function when a date is selected
97
+ onChangeMonthYear: null, // Define a callback function when the month or year is changed
98
+ onClose: null, // Define a callback function when the datepicker is closed
99
+ numberOfMonths: 1, // Number of months to show at a time
100
+ showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0)
101
+ stepMonths: 1, // Number of months to step back/forward
102
+ stepBigMonths: 12, // Number of months to step back/forward for the big links
103
+ altField: '', // Selector for an alternate field to store selected dates into
104
+ altFormat: '', // The date format to use for the alternate field
105
+ constrainInput: true, // The input is constrained by the current date format
106
+ showButtonPanel: false, // True to show button panel, false to not show it
107
+ autoSize: false // True to size the input for the date format, false to leave as is
108
+ };
109
+ $.extend(this._defaults, this.regional['']);
110
+ this.dpDiv = $('<div id="' + this._mainDivId + '" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>');
111
+ }
112
+
113
+ $.extend(Datepicker.prototype, {
114
+ /* Class name added to elements to indicate already configured with a date picker. */
115
+ markerClassName: 'hasDatepicker',
116
+
117
+ /* Debug logging (if enabled). */
118
+ log: function () {
119
+ if (this.debug)
120
+ console.log.apply('', arguments);
121
+ },
122
+
123
+ // TODO rename to "widget" when switching to widget factory
124
+ _widgetDatepicker: function() {
125
+ return this.dpDiv;
126
+ },
127
+
128
+ /* Override the default settings for all instances of the date picker.
129
+ @param settings object - the new settings to use as defaults (anonymous object)
130
+ @return the manager object */
131
+ setDefaults: function(settings) {
132
+ extendRemove(this._defaults, settings || {});
133
+ return this;
134
+ },
135
+
136
+ /* Attach the date picker to a jQuery selection.
137
+ @param target element - the target input field or division or span
138
+ @param settings object - the new settings to use for this date picker instance (anonymous) */
139
+ _attachDatepicker: function(target, settings) {
140
+ // check for settings on the control itself - in namespace 'date:'
141
+ var inlineSettings = null;
142
+ for (var attrName in this._defaults) {
143
+ var attrValue = target.getAttribute('date:' + attrName);
144
+ if (attrValue) {
145
+ inlineSettings = inlineSettings || {};
146
+ try {
147
+ inlineSettings[attrName] = eval(attrValue);
148
+ } catch (err) {
149
+ inlineSettings[attrName] = attrValue;
150
+ }
151
+ }
152
+ }
153
+ var nodeName = target.nodeName.toLowerCase();
154
+ var inline = (nodeName == 'div' || nodeName == 'span');
155
+ if (!target.id) {
156
+ this.uuid += 1;
157
+ target.id = 'dp' + this.uuid;
158
+ }
159
+ var inst = this._newInst($(target), inline);
160
+ inst.settings = $.extend({}, settings || {}, inlineSettings || {});
161
+ if (nodeName == 'input') {
162
+ this._connectDatepicker(target, inst);
163
+ } else if (inline) {
164
+ this._inlineDatepicker(target, inst);
165
+ }
166
+ },
167
+
168
+ /* Create a new instance object. */
169
+ _newInst: function(target, inline) {
170
+ var id = target[0].id.replace(/([^A-Za-z0-9_-])/g, '\\\\$1'); // escape jQuery meta chars
171
+ return {id: id, input: target, // associated target
172
+ selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection
173
+ drawMonth: 0, drawYear: 0, // month being drawn
174
+ inline: inline, // is datepicker inline or not
175
+ dpDiv: (!inline ? this.dpDiv : // presentation div
176
+ $('<div class="' + this._inlineClass + ' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))};
177
+ },
178
+
179
+ /* Attach the date picker to an input field. */
180
+ _connectDatepicker: function(target, inst) {
181
+ var input = $(target);
182
+ inst.append = $([]);
183
+ inst.trigger = $([]);
184
+ if (input.hasClass(this.markerClassName))
185
+ return;
186
+ this._attachments(input, inst);
187
+ input.addClass(this.markerClassName).keydown(this._doKeyDown).
188
+ keypress(this._doKeyPress).keyup(this._doKeyUp).
189
+ bind("setData.datepicker", function(event, key, value) {
190
+ inst.settings[key] = value;
191
+ }).bind("getData.datepicker", function(event, key) {
192
+ return this._get(inst, key);
193
+ });
194
+ this._autoSize(inst);
195
+ $.data(target, PROP_NAME, inst);
196
+ },
197
+
198
+ /* Make attachments based on settings. */
199
+ _attachments: function(input, inst) {
200
+ var appendText = this._get(inst, 'appendText');
201
+ var isRTL = this._get(inst, 'isRTL');
202
+ if (inst.append)
203
+ inst.append.remove();
204
+ if (appendText) {
205
+ inst.append = $('<span class="' + this._appendClass + '">' + appendText + '</span>');
206
+ input[isRTL ? 'before' : 'after'](inst.append);
207
+ }
208
+ input.unbind('focus', this._showDatepicker);
209
+ if (inst.trigger)
210
+ inst.trigger.remove();
211
+ var showOn = this._get(inst, 'showOn');
212
+ if (showOn == 'focus' || showOn == 'both') // pop-up date picker when in the marked field
213
+ input.focus(this._showDatepicker);
214
+ if (showOn == 'button' || showOn == 'both') { // pop-up date picker when button clicked
215
+ var buttonText = this._get(inst, 'buttonText');
216
+ var buttonImage = this._get(inst, 'buttonImage');
217
+ inst.trigger = $(this._get(inst, 'buttonImageOnly') ?
218
+ $('<img/>').addClass(this._triggerClass).
219
+ attr({ src: buttonImage, alt: buttonText, title: buttonText }) :
220
+ $('<button type="button"></button>').addClass(this._triggerClass).
221
+ html(buttonImage == '' ? buttonText : $('<img/>').attr(
222
+ { src:buttonImage, alt:buttonText, title:buttonText })));
223
+ input[isRTL ? 'before' : 'after'](inst.trigger);
224
+ inst.trigger.click(function() {
225
+ if ($.datepicker._datepickerShowing && $.datepicker._lastInput == input[0])
226
+ $.datepicker._hideDatepicker();
227
+ else
228
+ $.datepicker._showDatepicker(input[0]);
229
+ return false;
230
+ });
231
+ }
232
+ },
233
+
234
+ /* Apply the maximum length for the date format. */
235
+ _autoSize: function(inst) {
236
+ if (this._get(inst, 'autoSize') && !inst.inline) {
237
+ var date = new Date(2009, 12 - 1, 20); // Ensure double digits
238
+ var dateFormat = this._get(inst, 'dateFormat');
239
+ if (dateFormat.match(/[DM]/)) {
240
+ var findMax = function(names) {
241
+ var max = 0;
242
+ var maxI = 0;
243
+ for (var i = 0; i < names.length; i++) {
244
+ if (names[i].length > max) {
245
+ max = names[i].length;
246
+ maxI = i;
247
+ }
248
+ }
249
+ return maxI;
250
+ };
251
+ date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ?
252
+ 'monthNames' : 'monthNamesShort'))));
253
+ date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ?
254
+ 'dayNames' : 'dayNamesShort'))) + 20 - date.getDay());
255
+ }
256
+ inst.input.attr('size', this._formatDate(inst, date).length);
257
+ }
258
+ },
259
+
260
+ /* Attach an inline date picker to a div. */
261
+ _inlineDatepicker: function(target, inst) {
262
+ var divSpan = $(target);
263
+ if (divSpan.hasClass(this.markerClassName))
264
+ return;
265
+ divSpan.addClass(this.markerClassName).append(inst.dpDiv).
266
+ bind("setData.datepicker", function(event, key, value){
267
+ inst.settings[key] = value;
268
+ }).bind("getData.datepicker", function(event, key){
269
+ return this._get(inst, key);
270
+ });
271
+ $.data(target, PROP_NAME, inst);
272
+ this._setDate(inst, this._getDefaultDate(inst), true);
273
+ this._updateDatepicker(inst);
274
+ this._updateAlternate(inst);
275
+ inst.dpDiv.show();
276
+ },
277
+
278
+ /* Pop-up the date picker in a "dialog" box.
279
+ @param input element - ignored
280
+ @param date string or Date - the initial date to display
281
+ @param onSelect function - the function to call when a date is selected
282
+ @param settings object - update the dialog date picker instance's settings (anonymous object)
283
+ @param pos int[2] - coordinates for the dialog's position within the screen or
284
+ event - with x/y coordinates or
285
+ leave empty for default (screen centre)
286
+ @return the manager object */
287
+ _dialogDatepicker: function(input, date, onSelect, settings, pos) {
288
+ var inst = this._dialogInst; // internal instance
289
+ if (!inst) {
290
+ this.uuid += 1;
291
+ var id = 'dp' + this.uuid;
292
+ this._dialogInput = $('<input type="text" id="' + id +
293
+ '" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');
294
+ this._dialogInput.keydown(this._doKeyDown);
295
+ $('body').append(this._dialogInput);
296
+ inst = this._dialogInst = this._newInst(this._dialogInput, false);
297
+ inst.settings = {};
298
+ $.data(this._dialogInput[0], PROP_NAME, inst);
299
+ }
300
+ extendRemove(inst.settings, settings || {});
301
+ date = (date && date.constructor == Date ? this._formatDate(inst, date) : date);
302
+ this._dialogInput.val(date);
303
+
304
+ this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null);
305
+ if (!this._pos) {
306
+ var browserWidth = document.documentElement.clientWidth;
307
+ var browserHeight = document.documentElement.clientHeight;
308
+ var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft;
309
+ var scrollY = document.documentElement.scrollTop || document.body.scrollTop;
310
+ this._pos = // should use actual width/height below
311
+ [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY];
312
+ }
313
+
314
+ // move input on screen for focus, but hidden behind dialog
315
+ this._dialogInput.css('left', (this._pos[0] + 20) + 'px').css('top', this._pos[1] + 'px');
316
+ inst.settings.onSelect = onSelect;
317
+ this._inDialog = true;
318
+ this.dpDiv.addClass(this._dialogClass);
319
+ this._showDatepicker(this._dialogInput[0]);
320
+ if ($.blockUI)
321
+ $.blockUI(this.dpDiv);
322
+ $.data(this._dialogInput[0], PROP_NAME, inst);
323
+ return this;
324
+ },
325
+
326
+ /* Detach a datepicker from its control.
327
+ @param target element - the target input field or division or span */
328
+ _destroyDatepicker: function(target) {
329
+ var $target = $(target);
330
+ var inst = $.data(target, PROP_NAME);
331
+ if (!$target.hasClass(this.markerClassName)) {
332
+ return;
333
+ }
334
+ var nodeName = target.nodeName.toLowerCase();
335
+ $.removeData(target, PROP_NAME);
336
+ if (nodeName == 'input') {
337
+ inst.append.remove();
338
+ inst.trigger.remove();
339
+ $target.removeClass(this.markerClassName).
340
+ unbind('focus', this._showDatepicker).
341
+ unbind('keydown', this._doKeyDown).
342
+ unbind('keypress', this._doKeyPress).
343
+ unbind('keyup', this._doKeyUp);
344
+ } else if (nodeName == 'div' || nodeName == 'span')
345
+ $target.removeClass(this.markerClassName).empty();
346
+ },
347
+
348
+ /* Enable the date picker to a jQuery selection.
349
+ @param target element - the target input field or division or span */
350
+ _enableDatepicker: function(target) {
351
+ var $target = $(target);
352
+ var inst = $.data(target, PROP_NAME);
353
+ if (!$target.hasClass(this.markerClassName)) {
354
+ return;
355
+ }
356
+ var nodeName = target.nodeName.toLowerCase();
357
+ if (nodeName == 'input') {
358
+ target.disabled = false;
359
+ inst.trigger.filter('button').
360
+ each(function() { this.disabled = false; }).end().
361
+ filter('img').css({opacity: '1.0', cursor: ''});
362
+ }
363
+ else if (nodeName == 'div' || nodeName == 'span') {
364
+ var inline = $target.children('.' + this._inlineClass);
365
+ inline.children().removeClass('ui-state-disabled');
366
+ }
367
+ this._disabledInputs = $.map(this._disabledInputs,
368
+ function(value) { return (value == target ? null : value); }); // delete entry
369
+ },
370
+
371
+ /* Disable the date picker to a jQuery selection.
372
+ @param target element - the target input field or division or span */
373
+ _disableDatepicker: function(target) {
374
+ var $target = $(target);
375
+ var inst = $.data(target, PROP_NAME);
376
+ if (!$target.hasClass(this.markerClassName)) {
377
+ return;
378
+ }
379
+ var nodeName = target.nodeName.toLowerCase();
380
+ if (nodeName == 'input') {
381
+ target.disabled = true;
382
+ inst.trigger.filter('button').
383
+ each(function() { this.disabled = true; }).end().
384
+ filter('img').css({opacity: '0.5', cursor: 'default'});
385
+ }
386
+ else if (nodeName == 'div' || nodeName == 'span') {
387
+ var inline = $target.children('.' + this._inlineClass);
388
+ inline.children().addClass('ui-state-disabled');
389
+ }
390
+ this._disabledInputs = $.map(this._disabledInputs,
391
+ function(value) { return (value == target ? null : value); }); // delete entry
392
+ this._disabledInputs[this._disabledInputs.length] = target;
393
+ },
394
+
395
+ /* Is the first field in a jQuery collection disabled as a datepicker?
396
+ @param target element - the target input field or division or span
397
+ @return boolean - true if disabled, false if enabled */
398
+ _isDisabledDatepicker: function(target) {
399
+ if (!target) {
400
+ return false;
401
+ }
402
+ for (var i = 0; i < this._disabledInputs.length; i++) {
403
+ if (this._disabledInputs[i] == target)
404
+ return true;
405
+ }
406
+ return false;
407
+ },
408
+
409
+ /* Retrieve the instance data for the target control.
410
+ @param target element - the target input field or division or span
411
+ @return object - the associated instance data
412
+ @throws error if a jQuery problem getting data */
413
+ _getInst: function(target) {
414
+ try {
415
+ return $.data(target, PROP_NAME);
416
+ }
417
+ catch (err) {
418
+ throw 'Missing instance data for this datepicker';
419
+ }
420
+ },
421
+
422
+ /* Update or retrieve the settings for a date picker attached to an input field or division.
423
+ @param target element - the target input field or division or span
424
+ @param name object - the new settings to update or
425
+ string - the name of the setting to change or retrieve,
426
+ when retrieving also 'all' for all instance settings or
427
+ 'defaults' for all global defaults
428
+ @param value any - the new value for the setting
429
+ (omit if above is an object or to retrieve a value) */
430
+ _optionDatepicker: function(target, name, value) {
431
+ var inst = this._getInst(target);
432
+ if (arguments.length == 2 && typeof name == 'string') {
433
+ return (name == 'defaults' ? $.extend({}, $.datepicker._defaults) :
434
+ (inst ? (name == 'all' ? $.extend({}, inst.settings) :
435
+ this._get(inst, name)) : null));
436
+ }
437
+ var settings = name || {};
438
+ if (typeof name == 'string') {
439
+ settings = {};
440
+ settings[name] = value;
441
+ }
442
+ if (inst) {
443
+ if (this._curInst == inst) {
444
+ this._hideDatepicker();
445
+ }
446
+ var date = this._getDateDatepicker(target, true);
447
+ var minDate = this._getMinMaxDate(inst, 'min');
448
+ var maxDate = this._getMinMaxDate(inst, 'max');
449
+ extendRemove(inst.settings, settings);
450
+ // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided
451
+ if (minDate !== null && settings['dateFormat'] !== undefined && settings['minDate'] === undefined)
452
+ inst.settings.minDate = this._formatDate(inst, minDate);
453
+ if (maxDate !== null && settings['dateFormat'] !== undefined && settings['maxDate'] === undefined)
454
+ inst.settings.maxDate = this._formatDate(inst, maxDate);
455
+ this._attachments($(target), inst);
456
+ this._autoSize(inst);
457
+ this._setDateDatepicker(target, date);
458
+ this._updateDatepicker(inst);
459
+ }
460
+ },
461
+
462
+ // change method deprecated
463
+ _changeDatepicker: function(target, name, value) {
464
+ this._optionDatepicker(target, name, value);
465
+ },
466
+
467
+ /* Redraw the date picker attached to an input field or division.
468
+ @param target element - the target input field or division or span */
469
+ _refreshDatepicker: function(target) {
470
+ var inst = this._getInst(target);
471
+ if (inst) {
472
+ this._updateDatepicker(inst);
473
+ }
474
+ },
475
+
476
+ /* Set the dates for a jQuery selection.
477
+ @param target element - the target input field or division or span
478
+ @param date Date - the new date */
479
+ _setDateDatepicker: function(target, date) {
480
+ var inst = this._getInst(target);
481
+ if (inst) {
482
+ this._setDate(inst, date);
483
+ this._updateDatepicker(inst);
484
+ this._updateAlternate(inst);
485
+ }
486
+ },
487
+
488
+ /* Get the date(s) for the first entry in a jQuery selection.
489
+ @param target element - the target input field or division or span
490
+ @param noDefault boolean - true if no default date is to be used
491
+ @return Date - the current date */
492
+ _getDateDatepicker: function(target, noDefault) {
493
+ var inst = this._getInst(target);
494
+ if (inst && !inst.inline)
495
+ this._setDateFromField(inst, noDefault);
496
+ return (inst ? this._getDate(inst) : null);
497
+ },
498
+
499
+ /* Handle keystrokes. */
500
+ _doKeyDown: function(event) {
501
+ var inst = $.datepicker._getInst(event.target);
502
+ var handled = true;
503
+ var isRTL = inst.dpDiv.is('.ui-datepicker-rtl');
504
+ inst._keyEvent = true;
505
+ if ($.datepicker._datepickerShowing)
506
+ switch (event.keyCode) {
507
+ case 9: $.datepicker._hideDatepicker();
508
+ handled = false;
509
+ break; // hide on tab out
510
+ case 13: var sel = $('td.' + $.datepicker._dayOverClass + ':not(.' +
511
+ $.datepicker._currentClass + ')', inst.dpDiv);
512
+ if (sel[0])
513
+ $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]);
514
+ else
515
+ $.datepicker._hideDatepicker();
516
+ return false; // don't submit the form
517
+ break; // select the value on enter
518
+ case 27: $.datepicker._hideDatepicker();
519
+ break; // hide on escape
520
+ case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
521
+ -$.datepicker._get(inst, 'stepBigMonths') :
522
+ -$.datepicker._get(inst, 'stepMonths')), 'M');
523
+ break; // previous month/year on page up/+ ctrl
524
+ case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ?
525
+ +$.datepicker._get(inst, 'stepBigMonths') :
526
+ +$.datepicker._get(inst, 'stepMonths')), 'M');
527
+ break; // next month/year on page down/+ ctrl
528
+ case 35: if (event.ctrlKey || event.metaKey) $.datepicker._clearDate(event.target);
529
+ handled = event.ctrlKey || event.metaKey;
530
+ break; // clear on ctrl or command +end
531
+ case 36: if (event.ctrlKey || event.metaKey) $.datepicker._gotoToday(event.target);
532
+ handled = event.ctrlKey || event.metaKey;
533
+ break; // current on ctrl or command +home
534
+ case 37: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), 'D');
535
+ handled = event.ctrlKey || event.metaKey;
536
+ // -1 day on ctrl or command +left
537
+ if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ?
538
+ -$.datepicker._get(inst, 'stepBigMonths') :
539
+ -$.datepicker._get(inst, 'stepMonths')), 'M');
540
+ // next month/year on alt +left on Mac
541
+ break;
542
+ case 38: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, -7, 'D');
543
+ handled = event.ctrlKey || event.metaKey;
544
+ break; // -1 week on ctrl or command +up
545
+ case 39: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), 'D');
546
+ handled = event.ctrlKey || event.metaKey;
547
+ // +1 day on ctrl or command +right
548
+ if (event.originalEvent.altKey) $.datepicker._adjustDate(event.target, (event.ctrlKey ?
549
+ +$.datepicker._get(inst, 'stepBigMonths') :
550
+ +$.datepicker._get(inst, 'stepMonths')), 'M');
551
+ // next month/year on alt +right
552
+ break;
553
+ case 40: if (event.ctrlKey || event.metaKey) $.datepicker._adjustDate(event.target, +7, 'D');
554
+ handled = event.ctrlKey || event.metaKey;
555
+ break; // +1 week on ctrl or command +down
556
+ default: handled = false;
557
+ }
558
+ else if (event.keyCode == 36 && event.ctrlKey) // display the date picker on ctrl+home
559
+ $.datepicker._showDatepicker(this);
560
+ else {
561
+ handled = false;
562
+ }
563
+ if (handled) {
564
+ event.preventDefault();
565
+ event.stopPropagation();
566
+ }
567
+ },
568
+
569
+ /* Filter entered characters - based on date format. */
570
+ _doKeyPress: function(event) {
571
+ var inst = $.datepicker._getInst(event.target);
572
+ if ($.datepicker._get(inst, 'constrainInput')) {
573
+ var chars = $.datepicker._possibleChars($.datepicker._get(inst, 'dateFormat'));
574
+ var chr = String.fromCharCode(event.charCode == undefined ? event.keyCode : event.charCode);
575
+ return event.ctrlKey || event.metaKey || (chr < ' ' || !chars || chars.indexOf(chr) > -1);
576
+ }
577
+ },
578
+
579
+ /* Synchronise manual entry and field/alternate field. */
580
+ _doKeyUp: function(event) {
581
+ var inst = $.datepicker._getInst(event.target);
582
+ if (inst.input.val() != inst.lastVal) {
583
+ try {
584
+ var date = $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'),
585
+ (inst.input ? inst.input.val() : null),
586
+ $.datepicker._getFormatConfig(inst));
587
+ if (date) { // only if valid
588
+ $.datepicker._setDateFromField(inst);
589
+ $.datepicker._updateAlternate(inst);
590
+ $.datepicker._updateDatepicker(inst);
591
+ }
592
+ }
593
+ catch (event) {
594
+ $.datepicker.log(event);
595
+ }
596
+ }
597
+ return true;
598
+ },
599
+
600
+ /* Pop-up the date picker for a given input field.
601
+ @param input element - the input field attached to the date picker or
602
+ event - if triggered by focus */
603
+ _showDatepicker: function(input) {
604
+ input = input.target || input;
605
+ if (input.nodeName.toLowerCase() != 'input') // find from button/image trigger
606
+ input = $('input', input.parentNode)[0];
607
+ if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput == input) // already here
608
+ return;
609
+ var inst = $.datepicker._getInst(input);
610
+ if ($.datepicker._curInst && $.datepicker._curInst != inst) {
611
+ $.datepicker._curInst.dpDiv.stop(true, true);
612
+ }
613
+ var beforeShow = $.datepicker._get(inst, 'beforeShow');
614
+ extendRemove(inst.settings, (beforeShow ? beforeShow.apply(input, [input, inst]) : {}));
615
+ inst.lastVal = null;
616
+ $.datepicker._lastInput = input;
617
+ $.datepicker._setDateFromField(inst);
618
+ if ($.datepicker._inDialog) // hide cursor
619
+ input.value = '';
620
+ if (!$.datepicker._pos) { // position below input
621
+ $.datepicker._pos = $.datepicker._findPos(input);
622
+ $.datepicker._pos[1] += input.offsetHeight; // add the height
623
+ }
624
+ var isFixed = false;
625
+ $(input).parents().each(function() {
626
+ isFixed |= $(this).css('position') == 'fixed';
627
+ return !isFixed;
628
+ });
629
+ if (isFixed && $.browser.opera) { // correction for Opera when fixed and scrolled
630
+ $.datepicker._pos[0] -= document.documentElement.scrollLeft;
631
+ $.datepicker._pos[1] -= document.documentElement.scrollTop;
632
+ }
633
+ var offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]};
634
+ $.datepicker._pos = null;
635
+ //to avoid flashes on Firefox
636
+ inst.dpDiv.empty();
637
+ // determine sizing offscreen
638
+ inst.dpDiv.css({position: 'absolute', display: 'block', top: '-1000px'});
639
+ $.datepicker._updateDatepicker(inst);
640
+ // fix width for dynamic number of date pickers
641
+ // and adjust position before showing
642
+ offset = $.datepicker._checkOffset(inst, offset, isFixed);
643
+ inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ?
644
+ 'static' : (isFixed ? 'fixed' : 'absolute')), display: 'none',
645
+ left: offset.left + 'px', top: offset.top + 'px'});
646
+ if (!inst.inline) {
647
+ var showAnim = $.datepicker._get(inst, 'showAnim');
648
+ var duration = $.datepicker._get(inst, 'duration');
649
+ var postProcess = function() {
650
+ $.datepicker._datepickerShowing = true;
651
+ var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only
652
+ if( !! cover.length ){
653
+ var borders = $.datepicker._getBorders(inst.dpDiv);
654
+ cover.css({left: -borders[0], top: -borders[1],
655
+ width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()});
656
+ }
657
+ };
658
+ inst.dpDiv.zIndex($(input).zIndex()+1);
659
+ if ($.effects && $.effects[showAnim])
660
+ inst.dpDiv.show(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess);
661
+ else
662
+ inst.dpDiv[showAnim || 'show']((showAnim ? duration : null), postProcess);
663
+ if (!showAnim || !duration)
664
+ postProcess();
665
+ if (inst.input.is(':visible') && !inst.input.is(':disabled'))
666
+ inst.input.focus();
667
+ $.datepicker._curInst = inst;
668
+ }
669
+ },
670
+
671
+ /* Generate the date picker content. */
672
+ _updateDatepicker: function(inst) {
673
+ var self = this;
674
+ var borders = $.datepicker._getBorders(inst.dpDiv);
675
+ inst.dpDiv.empty().append(this._generateHTML(inst));
676
+ var cover = inst.dpDiv.find('iframe.ui-datepicker-cover'); // IE6- only
677
+ if( !!cover.length ){ //avoid call to outerXXXX() when not in IE6
678
+ cover.css({left: -borders[0], top: -borders[1], width: inst.dpDiv.outerWidth(), height: inst.dpDiv.outerHeight()})
679
+ }
680
+ inst.dpDiv.find('button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a')
681
+ .bind('mouseout', function(){
682
+ $(this).removeClass('ui-state-hover');
683
+ if(this.className.indexOf('ui-datepicker-prev') != -1) $(this).removeClass('ui-datepicker-prev-hover');
684
+ if(this.className.indexOf('ui-datepicker-next') != -1) $(this).removeClass('ui-datepicker-next-hover');
685
+ })
686
+ .bind('mouseover', function(){
687
+ if (!self._isDisabledDatepicker( inst.inline ? inst.dpDiv.parent()[0] : inst.input[0])) {
688
+ $(this).parents('.ui-datepicker-calendar').find('a').removeClass('ui-state-hover');
689
+ $(this).addClass('ui-state-hover');
690
+ if(this.className.indexOf('ui-datepicker-prev') != -1) $(this).addClass('ui-datepicker-prev-hover');
691
+ if(this.className.indexOf('ui-datepicker-next') != -1) $(this).addClass('ui-datepicker-next-hover');
692
+ }
693
+ })
694
+ .end()
695
+ .find('.' + this._dayOverClass + ' a')
696
+ .trigger('mouseover')
697
+ .end();
698
+ var numMonths = this._getNumberOfMonths(inst);
699
+ var cols = numMonths[1];
700
+ var width = 17;
701
+ if (cols > 1)
702
+ inst.dpDiv.addClass('ui-datepicker-multi-' + cols).css('width', (width * cols) + 'em');
703
+ else
704
+ inst.dpDiv.removeClass('ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4').width('');
705
+ inst.dpDiv[(numMonths[0] != 1 || numMonths[1] != 1 ? 'add' : 'remove') +
706
+ 'Class']('ui-datepicker-multi');
707
+ inst.dpDiv[(this._get(inst, 'isRTL') ? 'add' : 'remove') +
708
+ 'Class']('ui-datepicker-rtl');
709
+ if (inst == $.datepicker._curInst && $.datepicker._datepickerShowing && inst.input &&
710
+ // #6694 - don't focus the input if it's already focused
711
+ // this breaks the change event in IE
712
+ inst.input.is(':visible') && !inst.input.is(':disabled') && inst.input[0] != document.activeElement)
713
+ inst.input.focus();
714
+ // deffered render of the years select (to avoid flashes on Firefox)
715
+ if( inst.yearshtml ){
716
+ var origyearshtml = inst.yearshtml;
717
+ setTimeout(function(){
718
+ //assure that inst.yearshtml didn't change.
719
+ if( origyearshtml === inst.yearshtml ){
720
+ inst.dpDiv.find('select.ui-datepicker-year:first').replaceWith(inst.yearshtml);
721
+ }
722
+ origyearshtml = inst.yearshtml = null;
723
+ }, 0);
724
+ }
725
+ },
726
+
727
+ /* Retrieve the size of left and top borders for an element.
728
+ @param elem (jQuery object) the element of interest
729
+ @return (number[2]) the left and top borders */
730
+ _getBorders: function(elem) {
731
+ var convert = function(value) {
732
+ return {thin: 1, medium: 2, thick: 3}[value] || value;
733
+ };
734
+ return [parseFloat(convert(elem.css('border-left-width'))),
735
+ parseFloat(convert(elem.css('border-top-width')))];
736
+ },
737
+
738
+ /* Check positioning to remain on screen. */
739
+ _checkOffset: function(inst, offset, isFixed) {
740
+ var dpWidth = inst.dpDiv.outerWidth();
741
+ var dpHeight = inst.dpDiv.outerHeight();
742
+ var inputWidth = inst.input ? inst.input.outerWidth() : 0;
743
+ var inputHeight = inst.input ? inst.input.outerHeight() : 0;
744
+ var viewWidth = document.documentElement.clientWidth + $(document).scrollLeft();
745
+ var viewHeight = document.documentElement.clientHeight + $(document).scrollTop();
746
+
747
+ offset.left -= (this._get(inst, 'isRTL') ? (dpWidth - inputWidth) : 0);
748
+ offset.left -= (isFixed && offset.left == inst.input.offset().left) ? $(document).scrollLeft() : 0;
749
+ offset.top -= (isFixed && offset.top == (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0;
750
+
751
+ // now check if datepicker is showing outside window viewport - move to a better place if so.
752
+ offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ?
753
+ Math.abs(offset.left + dpWidth - viewWidth) : 0);
754
+ offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ?
755
+ Math.abs(dpHeight + inputHeight) : 0);
756
+
757
+ return offset;
758
+ },
759
+
760
+ /* Find an object's position on the screen. */
761
+ _findPos: function(obj) {
762
+ var inst = this._getInst(obj);
763
+ var isRTL = this._get(inst, 'isRTL');
764
+ while (obj && (obj.type == 'hidden' || obj.nodeType != 1 || $.expr.filters.hidden(obj))) {
765
+ obj = obj[isRTL ? 'previousSibling' : 'nextSibling'];
766
+ }
767
+ var position = $(obj).offset();
768
+ return [position.left, position.top];
769
+ },
770
+
771
+ /* Hide the date picker from view.
772
+ @param input element - the input field attached to the date picker */
773
+ _hideDatepicker: function(input) {
774
+ var inst = this._curInst;
775
+ if (!inst || (input && inst != $.data(input, PROP_NAME)))
776
+ return;
777
+ if (this._datepickerShowing) {
778
+ var showAnim = this._get(inst, 'showAnim');
779
+ var duration = this._get(inst, 'duration');
780
+ var postProcess = function() {
781
+ $.datepicker._tidyDialog(inst);
782
+ this._curInst = null;
783
+ };
784
+ if ($.effects && $.effects[showAnim])
785
+ inst.dpDiv.hide(showAnim, $.datepicker._get(inst, 'showOptions'), duration, postProcess);
786
+ else
787
+ inst.dpDiv[(showAnim == 'slideDown' ? 'slideUp' :
788
+ (showAnim == 'fadeIn' ? 'fadeOut' : 'hide'))]((showAnim ? duration : null), postProcess);
789
+ if (!showAnim)
790
+ postProcess();
791
+ var onClose = this._get(inst, 'onClose');
792
+ if (onClose)
793
+ onClose.apply((inst.input ? inst.input[0] : null),
794
+ [(inst.input ? inst.input.val() : ''), inst]); // trigger custom callback
795
+ this._datepickerShowing = false;
796
+ this._lastInput = null;
797
+ if (this._inDialog) {
798
+ this._dialogInput.css({ position: 'absolute', left: '0', top: '-100px' });
799
+ if ($.blockUI) {
800
+ $.unblockUI();
801
+ $('body').append(this.dpDiv);
802
+ }
803
+ }
804
+ this._inDialog = false;
805
+ }
806
+ },
807
+
808
+ /* Tidy up after a dialog display. */
809
+ _tidyDialog: function(inst) {
810
+ inst.dpDiv.removeClass(this._dialogClass).unbind('.ui-datepicker-calendar');
811
+ },
812
+
813
+ /* Close date picker if clicked elsewhere. */
814
+ _checkExternalClick: function(event) {
815
+ if (!$.datepicker._curInst)
816
+ return;
817
+ var $target = $(event.target);
818
+ if ($target[0].id != $.datepicker._mainDivId &&
819
+ $target.parents('#' + $.datepicker._mainDivId).length == 0 &&
820
+ !$target.hasClass($.datepicker.markerClassName) &&
821
+ !$target.hasClass($.datepicker._triggerClass) &&
822
+ $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI))
823
+ $.datepicker._hideDatepicker();
824
+ },
825
+
826
+ /* Adjust one of the date sub-fields. */
827
+ _adjustDate: function(id, offset, period) {
828
+ var target = $(id);
829
+ var inst = this._getInst(target[0]);
830
+ if (this._isDisabledDatepicker(target[0])) {
831
+ return;
832
+ }
833
+ this._adjustInstDate(inst, offset +
834
+ (period == 'M' ? this._get(inst, 'showCurrentAtPos') : 0), // undo positioning
835
+ period);
836
+ this._updateDatepicker(inst);
837
+ },
838
+
839
+ /* Action for current link. */
840
+ _gotoToday: function(id) {
841
+ var target = $(id);
842
+ var inst = this._getInst(target[0]);
843
+ if (this._get(inst, 'gotoCurrent') && inst.currentDay) {
844
+ inst.selectedDay = inst.currentDay;
845
+ inst.drawMonth = inst.selectedMonth = inst.currentMonth;
846
+ inst.drawYear = inst.selectedYear = inst.currentYear;
847
+ }
848
+ else {
849
+ var date = new Date();
850
+ inst.selectedDay = date.getDate();
851
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
852
+ inst.drawYear = inst.selectedYear = date.getFullYear();
853
+ }
854
+ this._notifyChange(inst);
855
+ this._adjustDate(target);
856
+ },
857
+
858
+ /* Action for selecting a new month/year. */
859
+ _selectMonthYear: function(id, select, period) {
860
+ var target = $(id);
861
+ var inst = this._getInst(target[0]);
862
+ inst._selectingMonthYear = false;
863
+ inst['selected' + (period == 'M' ? 'Month' : 'Year')] =
864
+ inst['draw' + (period == 'M' ? 'Month' : 'Year')] =
865
+ parseInt(select.options[select.selectedIndex].value,10);
866
+ this._notifyChange(inst);
867
+ this._adjustDate(target);
868
+ },
869
+
870
+ /* Restore input focus after not changing month/year. */
871
+ _clickMonthYear: function(id) {
872
+ var target = $(id);
873
+ var inst = this._getInst(target[0]);
874
+ if (inst.input && inst._selectingMonthYear) {
875
+ setTimeout(function() {
876
+ inst.input.focus();
877
+ }, 0);
878
+ }
879
+ inst._selectingMonthYear = !inst._selectingMonthYear;
880
+ },
881
+
882
+ /* Action for selecting a day. */
883
+ _selectDay: function(id, month, year, td) {
884
+ var target = $(id);
885
+ if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) {
886
+ return;
887
+ }
888
+ var inst = this._getInst(target[0]);
889
+ inst.selectedDay = inst.currentDay = $('a', td).html();
890
+ inst.selectedMonth = inst.currentMonth = month;
891
+ inst.selectedYear = inst.currentYear = year;
892
+ this._selectDate(id, this._formatDate(inst,
893
+ inst.currentDay, inst.currentMonth, inst.currentYear));
894
+ },
895
+
896
+ /* Erase the input field and hide the date picker. */
897
+ _clearDate: function(id) {
898
+ var target = $(id);
899
+ var inst = this._getInst(target[0]);
900
+ this._selectDate(target, '');
901
+ },
902
+
903
+ /* Update the input field with the selected date. */
904
+ _selectDate: function(id, dateStr) {
905
+ var target = $(id);
906
+ var inst = this._getInst(target[0]);
907
+ dateStr = (dateStr != null ? dateStr : this._formatDate(inst));
908
+ if (inst.input)
909
+ inst.input.val(dateStr);
910
+ this._updateAlternate(inst);
911
+ var onSelect = this._get(inst, 'onSelect');
912
+ if (onSelect)
913
+ onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback
914
+ else if (inst.input)
915
+ inst.input.trigger('change'); // fire the change event
916
+ if (inst.inline)
917
+ this._updateDatepicker(inst);
918
+ else {
919
+ this._hideDatepicker();
920
+ this._lastInput = inst.input[0];
921
+ if (typeof(inst.input[0]) != 'object')
922
+ inst.input.focus(); // restore focus
923
+ this._lastInput = null;
924
+ }
925
+ },
926
+
927
+ /* Update any alternate field to synchronise with the main field. */
928
+ _updateAlternate: function(inst) {
929
+ var altField = this._get(inst, 'altField');
930
+ if (altField) { // update alternate field too
931
+ var altFormat = this._get(inst, 'altFormat') || this._get(inst, 'dateFormat');
932
+ var date = this._getDate(inst);
933
+ var dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst));
934
+ $(altField).each(function() { $(this).val(dateStr); });
935
+ }
936
+ },
937
+
938
+ /* Set as beforeShowDay function to prevent selection of weekends.
939
+ @param date Date - the date to customise
940
+ @return [boolean, string] - is this date selectable?, what is its CSS class? */
941
+ noWeekends: function(date) {
942
+ var day = date.getDay();
943
+ return [(day > 0 && day < 6), ''];
944
+ },
945
+
946
+ /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition.
947
+ @param date Date - the date to get the week for
948
+ @return number - the number of the week within the year that contains this date */
949
+ iso8601Week: function(date) {
950
+ var checkDate = new Date(date.getTime());
951
+ // Find Thursday of this week starting on Monday
952
+ checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));
953
+ var time = checkDate.getTime();
954
+ checkDate.setMonth(0); // Compare with Jan 1
955
+ checkDate.setDate(1);
956
+ return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1;
957
+ },
958
+
959
+ /* Parse a string value into a date object.
960
+ See formatDate below for the possible formats.
961
+
962
+ @param format string - the expected format of the date
963
+ @param value string - the date in the above format
964
+ @param settings Object - attributes include:
965
+ shortYearCutoff number - the cutoff year for determining the century (optional)
966
+ dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
967
+ dayNames string[7] - names of the days from Sunday (optional)
968
+ monthNamesShort string[12] - abbreviated names of the months (optional)
969
+ monthNames string[12] - names of the months (optional)
970
+ @return Date - the extracted date value or null if value is blank */
971
+ parseDate: function (format, value, settings) {
972
+ if (format == null || value == null)
973
+ throw 'Invalid arguments';
974
+ value = (typeof value == 'object' ? value.toString() : value + '');
975
+ if (value == '')
976
+ return null;
977
+ var shortYearCutoff = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff;
978
+ shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff :
979
+ new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10));
980
+ var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort;
981
+ var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames;
982
+ var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort;
983
+ var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames;
984
+ var year = -1;
985
+ var month = -1;
986
+ var day = -1;
987
+ var doy = -1;
988
+ var literal = false;
989
+ // Check whether a format character is doubled
990
+ var lookAhead = function(match) {
991
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match);
992
+ if (matches)
993
+ iFormat++;
994
+ return matches;
995
+ };
996
+ // Extract a number from the string value
997
+ var getNumber = function(match) {
998
+ var isDoubled = lookAhead(match);
999
+ var size = (match == '@' ? 14 : (match == '!' ? 20 :
1000
+ (match == 'y' && isDoubled ? 4 : (match == 'o' ? 3 : 2))));
1001
+ var digits = new RegExp('^\\d{1,' + size + '}');
1002
+ var num = value.substring(iValue).match(digits);
1003
+ if (!num)
1004
+ throw 'Missing number at position ' + iValue;
1005
+ iValue += num[0].length;
1006
+ return parseInt(num[0], 10);
1007
+ };
1008
+ // Extract a name from the string value and convert to an index
1009
+ var getName = function(match, shortNames, longNames) {
1010
+ var names = (lookAhead(match) ? longNames : shortNames);
1011
+ for (var i = 0; i < names.length; i++) {
1012
+ if (value.substr(iValue, names[i].length).toLowerCase() == names[i].toLowerCase()) {
1013
+ iValue += names[i].length;
1014
+ return i + 1;
1015
+ }
1016
+ }
1017
+ throw 'Unknown name at position ' + iValue;
1018
+ };
1019
+ // Confirm that a literal character matches the string value
1020
+ var checkLiteral = function() {
1021
+ if (value.charAt(iValue) != format.charAt(iFormat))
1022
+ throw 'Unexpected literal at position ' + iValue;
1023
+ iValue++;
1024
+ };
1025
+ var iValue = 0;
1026
+ for (var iFormat = 0; iFormat < format.length; iFormat++) {
1027
+ if (literal)
1028
+ if (format.charAt(iFormat) == "'" && !lookAhead("'"))
1029
+ literal = false;
1030
+ else
1031
+ checkLiteral();
1032
+ else
1033
+ switch (format.charAt(iFormat)) {
1034
+ case 'd':
1035
+ day = getNumber('d');
1036
+ break;
1037
+ case 'D':
1038
+ getName('D', dayNamesShort, dayNames);
1039
+ break;
1040
+ case 'o':
1041
+ doy = getNumber('o');
1042
+ break;
1043
+ case 'm':
1044
+ month = getNumber('m');
1045
+ break;
1046
+ case 'M':
1047
+ month = getName('M', monthNamesShort, monthNames);
1048
+ break;
1049
+ case 'y':
1050
+ year = getNumber('y');
1051
+ break;
1052
+ case '@':
1053
+ var date = new Date(getNumber('@'));
1054
+ year = date.getFullYear();
1055
+ month = date.getMonth() + 1;
1056
+ day = date.getDate();
1057
+ break;
1058
+ case '!':
1059
+ var date = new Date((getNumber('!') - this._ticksTo1970) / 10000);
1060
+ year = date.getFullYear();
1061
+ month = date.getMonth() + 1;
1062
+ day = date.getDate();
1063
+ break;
1064
+ case "'":
1065
+ if (lookAhead("'"))
1066
+ checkLiteral();
1067
+ else
1068
+ literal = true;
1069
+ break;
1070
+ default:
1071
+ checkLiteral();
1072
+ }
1073
+ }
1074
+ if (year == -1)
1075
+ year = new Date().getFullYear();
1076
+ else if (year < 100)
1077
+ year += new Date().getFullYear() - new Date().getFullYear() % 100 +
1078
+ (year <= shortYearCutoff ? 0 : -100);
1079
+ if (doy > -1) {
1080
+ month = 1;
1081
+ day = doy;
1082
+ do {
1083
+ var dim = this._getDaysInMonth(year, month - 1);
1084
+ if (day <= dim)
1085
+ break;
1086
+ month++;
1087
+ day -= dim;
1088
+ } while (true);
1089
+ }
1090
+ var date = this._daylightSavingAdjust(new Date(year, month - 1, day));
1091
+ if (date.getFullYear() != year || date.getMonth() + 1 != month || date.getDate() != day)
1092
+ throw 'Invalid date'; // E.g. 31/02/*
1093
+ return date;
1094
+ },
1095
+
1096
+ /* Standard date formats. */
1097
+ ATOM: 'yy-mm-dd', // RFC 3339 (ISO 8601)
1098
+ COOKIE: 'D, dd M yy',
1099
+ ISO_8601: 'yy-mm-dd',
1100
+ RFC_822: 'D, d M y',
1101
+ RFC_850: 'DD, dd-M-y',
1102
+ RFC_1036: 'D, d M y',
1103
+ RFC_1123: 'D, d M yy',
1104
+ RFC_2822: 'D, d M yy',
1105
+ RSS: 'D, d M y', // RFC 822
1106
+ TICKS: '!',
1107
+ TIMESTAMP: '@',
1108
+ W3C: 'yy-mm-dd', // ISO 8601
1109
+
1110
+ _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) +
1111
+ Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000),
1112
+
1113
+ /* Format a date object into a string value.
1114
+ The format can be combinations of the following:
1115
+ d - day of month (no leading zero)
1116
+ dd - day of month (two digit)
1117
+ o - day of year (no leading zeros)
1118
+ oo - day of year (three digit)
1119
+ D - day name short
1120
+ DD - day name long
1121
+ m - month of year (no leading zero)
1122
+ mm - month of year (two digit)
1123
+ M - month name short
1124
+ MM - month name long
1125
+ y - year (two digit)
1126
+ yy - year (four digit)
1127
+ @ - Unix timestamp (ms since 01/01/1970)
1128
+ ! - Windows ticks (100ns since 01/01/0001)
1129
+ '...' - literal text
1130
+ '' - single quote
1131
+
1132
+ @param format string - the desired format of the date
1133
+ @param date Date - the date value to format
1134
+ @param settings Object - attributes include:
1135
+ dayNamesShort string[7] - abbreviated names of the days from Sunday (optional)
1136
+ dayNames string[7] - names of the days from Sunday (optional)
1137
+ monthNamesShort string[12] - abbreviated names of the months (optional)
1138
+ monthNames string[12] - names of the months (optional)
1139
+ @return string - the date in the above format */
1140
+ formatDate: function (format, date, settings) {
1141
+ if (!date)
1142
+ return '';
1143
+ var dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort;
1144
+ var dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames;
1145
+ var monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort;
1146
+ var monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames;
1147
+ // Check whether a format character is doubled
1148
+ var lookAhead = function(match) {
1149
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match);
1150
+ if (matches)
1151
+ iFormat++;
1152
+ return matches;
1153
+ };
1154
+ // Format a number, with leading zero if necessary
1155
+ var formatNumber = function(match, value, len) {
1156
+ var num = '' + value;
1157
+ if (lookAhead(match))
1158
+ while (num.length < len)
1159
+ num = '0' + num;
1160
+ return num;
1161
+ };
1162
+ // Format a name, short or long as requested
1163
+ var formatName = function(match, value, shortNames, longNames) {
1164
+ return (lookAhead(match) ? longNames[value] : shortNames[value]);
1165
+ };
1166
+ var output = '';
1167
+ var literal = false;
1168
+ if (date)
1169
+ for (var iFormat = 0; iFormat < format.length; iFormat++) {
1170
+ if (literal)
1171
+ if (format.charAt(iFormat) == "'" && !lookAhead("'"))
1172
+ literal = false;
1173
+ else
1174
+ output += format.charAt(iFormat);
1175
+ else
1176
+ switch (format.charAt(iFormat)) {
1177
+ case 'd':
1178
+ output += formatNumber('d', date.getDate(), 2);
1179
+ break;
1180
+ case 'D':
1181
+ output += formatName('D', date.getDay(), dayNamesShort, dayNames);
1182
+ break;
1183
+ case 'o':
1184
+ output += formatNumber('o',
1185
+ (date.getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000, 3);
1186
+ break;
1187
+ case 'm':
1188
+ output += formatNumber('m', date.getMonth() + 1, 2);
1189
+ break;
1190
+ case 'M':
1191
+ output += formatName('M', date.getMonth(), monthNamesShort, monthNames);
1192
+ break;
1193
+ case 'y':
1194
+ output += (lookAhead('y') ? date.getFullYear() :
1195
+ (date.getYear() % 100 < 10 ? '0' : '') + date.getYear() % 100);
1196
+ break;
1197
+ case '@':
1198
+ output += date.getTime();
1199
+ break;
1200
+ case '!':
1201
+ output += date.getTime() * 10000 + this._ticksTo1970;
1202
+ break;
1203
+ case "'":
1204
+ if (lookAhead("'"))
1205
+ output += "'";
1206
+ else
1207
+ literal = true;
1208
+ break;
1209
+ default:
1210
+ output += format.charAt(iFormat);
1211
+ }
1212
+ }
1213
+ return output;
1214
+ },
1215
+
1216
+ /* Extract all possible characters from the date format. */
1217
+ _possibleChars: function (format) {
1218
+ var chars = '';
1219
+ var literal = false;
1220
+ // Check whether a format character is doubled
1221
+ var lookAhead = function(match) {
1222
+ var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) == match);
1223
+ if (matches)
1224
+ iFormat++;
1225
+ return matches;
1226
+ };
1227
+ for (var iFormat = 0; iFormat < format.length; iFormat++)
1228
+ if (literal)
1229
+ if (format.charAt(iFormat) == "'" && !lookAhead("'"))
1230
+ literal = false;
1231
+ else
1232
+ chars += format.charAt(iFormat);
1233
+ else
1234
+ switch (format.charAt(iFormat)) {
1235
+ case 'd': case 'm': case 'y': case '@':
1236
+ chars += '0123456789';
1237
+ break;
1238
+ case 'D': case 'M':
1239
+ return null; // Accept anything
1240
+ case "'":
1241
+ if (lookAhead("'"))
1242
+ chars += "'";
1243
+ else
1244
+ literal = true;
1245
+ break;
1246
+ default:
1247
+ chars += format.charAt(iFormat);
1248
+ }
1249
+ return chars;
1250
+ },
1251
+
1252
+ /* Get a setting value, defaulting if necessary. */
1253
+ _get: function(inst, name) {
1254
+ return inst.settings[name] !== undefined ?
1255
+ inst.settings[name] : this._defaults[name];
1256
+ },
1257
+
1258
+ /* Parse existing date and initialise date picker. */
1259
+ _setDateFromField: function(inst, noDefault) {
1260
+ if (inst.input.val() == inst.lastVal) {
1261
+ return;
1262
+ }
1263
+ var dateFormat = this._get(inst, 'dateFormat');
1264
+ var dates = inst.lastVal = inst.input ? inst.input.val() : null;
1265
+ var date, defaultDate;
1266
+ date = defaultDate = this._getDefaultDate(inst);
1267
+ var settings = this._getFormatConfig(inst);
1268
+ try {
1269
+ date = this.parseDate(dateFormat, dates, settings) || defaultDate;
1270
+ } catch (event) {
1271
+ this.log(event);
1272
+ dates = (noDefault ? '' : dates);
1273
+ }
1274
+ inst.selectedDay = date.getDate();
1275
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
1276
+ inst.drawYear = inst.selectedYear = date.getFullYear();
1277
+ inst.currentDay = (dates ? date.getDate() : 0);
1278
+ inst.currentMonth = (dates ? date.getMonth() : 0);
1279
+ inst.currentYear = (dates ? date.getFullYear() : 0);
1280
+ this._adjustInstDate(inst);
1281
+ },
1282
+
1283
+ /* Retrieve the default date shown on opening. */
1284
+ _getDefaultDate: function(inst) {
1285
+ return this._restrictMinMax(inst,
1286
+ this._determineDate(inst, this._get(inst, 'defaultDate'), new Date()));
1287
+ },
1288
+
1289
+ /* A date may be specified as an exact value or a relative one. */
1290
+ _determineDate: function(inst, date, defaultDate) {
1291
+ var offsetNumeric = function(offset) {
1292
+ var date = new Date();
1293
+ date.setDate(date.getDate() + offset);
1294
+ return date;
1295
+ };
1296
+ var offsetString = function(offset) {
1297
+ try {
1298
+ return $.datepicker.parseDate($.datepicker._get(inst, 'dateFormat'),
1299
+ offset, $.datepicker._getFormatConfig(inst));
1300
+ }
1301
+ catch (e) {
1302
+ // Ignore
1303
+ }
1304
+ var date = (offset.toLowerCase().match(/^c/) ?
1305
+ $.datepicker._getDate(inst) : null) || new Date();
1306
+ var year = date.getFullYear();
1307
+ var month = date.getMonth();
1308
+ var day = date.getDate();
1309
+ var pattern = /([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;
1310
+ var matches = pattern.exec(offset);
1311
+ while (matches) {
1312
+ switch (matches[2] || 'd') {
1313
+ case 'd' : case 'D' :
1314
+ day += parseInt(matches[1],10); break;
1315
+ case 'w' : case 'W' :
1316
+ day += parseInt(matches[1],10) * 7; break;
1317
+ case 'm' : case 'M' :
1318
+ month += parseInt(matches[1],10);
1319
+ day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
1320
+ break;
1321
+ case 'y': case 'Y' :
1322
+ year += parseInt(matches[1],10);
1323
+ day = Math.min(day, $.datepicker._getDaysInMonth(year, month));
1324
+ break;
1325
+ }
1326
+ matches = pattern.exec(offset);
1327
+ }
1328
+ return new Date(year, month, day);
1329
+ };
1330
+ var newDate = (date == null || date === '' ? defaultDate : (typeof date == 'string' ? offsetString(date) :
1331
+ (typeof date == 'number' ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime()))));
1332
+ newDate = (newDate && newDate.toString() == 'Invalid Date' ? defaultDate : newDate);
1333
+ if (newDate) {
1334
+ newDate.setHours(0);
1335
+ newDate.setMinutes(0);
1336
+ newDate.setSeconds(0);
1337
+ newDate.setMilliseconds(0);
1338
+ }
1339
+ return this._daylightSavingAdjust(newDate);
1340
+ },
1341
+
1342
+ /* Handle switch to/from daylight saving.
1343
+ Hours may be non-zero on daylight saving cut-over:
1344
+ > 12 when midnight changeover, but then cannot generate
1345
+ midnight datetime, so jump to 1AM, otherwise reset.
1346
+ @param date (Date) the date to check
1347
+ @return (Date) the corrected date */
1348
+ _daylightSavingAdjust: function(date) {
1349
+ if (!date) return null;
1350
+ date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);
1351
+ return date;
1352
+ },
1353
+
1354
+ /* Set the date(s) directly. */
1355
+ _setDate: function(inst, date, noChange) {
1356
+ var clear = !date;
1357
+ var origMonth = inst.selectedMonth;
1358
+ var origYear = inst.selectedYear;
1359
+ var newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date()));
1360
+ inst.selectedDay = inst.currentDay = newDate.getDate();
1361
+ inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth();
1362
+ inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear();
1363
+ if ((origMonth != inst.selectedMonth || origYear != inst.selectedYear) && !noChange)
1364
+ this._notifyChange(inst);
1365
+ this._adjustInstDate(inst);
1366
+ if (inst.input) {
1367
+ inst.input.val(clear ? '' : this._formatDate(inst));
1368
+ }
1369
+ },
1370
+
1371
+ /* Retrieve the date(s) directly. */
1372
+ _getDate: function(inst) {
1373
+ var startDate = (!inst.currentYear || (inst.input && inst.input.val() == '') ? null :
1374
+ this._daylightSavingAdjust(new Date(
1375
+ inst.currentYear, inst.currentMonth, inst.currentDay)));
1376
+ return startDate;
1377
+ },
1378
+
1379
+ /* Generate the HTML for the current state of the date picker. */
1380
+ _generateHTML: function(inst) {
1381
+ var today = new Date();
1382
+ today = this._daylightSavingAdjust(
1383
+ new Date(today.getFullYear(), today.getMonth(), today.getDate())); // clear time
1384
+ var isRTL = this._get(inst, 'isRTL');
1385
+ var showButtonPanel = this._get(inst, 'showButtonPanel');
1386
+ var hideIfNoPrevNext = this._get(inst, 'hideIfNoPrevNext');
1387
+ var navigationAsDateFormat = this._get(inst, 'navigationAsDateFormat');
1388
+ var numMonths = this._getNumberOfMonths(inst);
1389
+ var showCurrentAtPos = this._get(inst, 'showCurrentAtPos');
1390
+ var stepMonths = this._get(inst, 'stepMonths');
1391
+ var isMultiMonth = (numMonths[0] != 1 || numMonths[1] != 1);
1392
+ var currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) :
1393
+ new Date(inst.currentYear, inst.currentMonth, inst.currentDay)));
1394
+ var minDate = this._getMinMaxDate(inst, 'min');
1395
+ var maxDate = this._getMinMaxDate(inst, 'max');
1396
+ var drawMonth = inst.drawMonth - showCurrentAtPos;
1397
+ var drawYear = inst.drawYear;
1398
+ if (drawMonth < 0) {
1399
+ drawMonth += 12;
1400
+ drawYear--;
1401
+ }
1402
+ if (maxDate) {
1403
+ var maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(),
1404
+ maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate()));
1405
+ maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw);
1406
+ while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) {
1407
+ drawMonth--;
1408
+ if (drawMonth < 0) {
1409
+ drawMonth = 11;
1410
+ drawYear--;
1411
+ }
1412
+ }
1413
+ }
1414
+ inst.drawMonth = drawMonth;
1415
+ inst.drawYear = drawYear;
1416
+ var prevText = this._get(inst, 'prevText');
1417
+ prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText,
1418
+ this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)),
1419
+ this._getFormatConfig(inst)));
1420
+ var prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ?
1421
+ '<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_' + dpuuid +
1422
+ '.datepicker._adjustDate(\'#' + inst.id + '\', -' + stepMonths + ', \'M\');"' +
1423
+ ' title="' + prevText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'e' : 'w') + '">' + prevText + '</span></a>' :
1424
+ (hideIfNoPrevNext ? '' : '<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+ prevText +'"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'e' : 'w') + '">' + prevText + '</span></a>'));
1425
+ var nextText = this._get(inst, 'nextText');
1426
+ nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText,
1427
+ this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)),
1428
+ this._getFormatConfig(inst)));
1429
+ var next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ?
1430
+ '<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_' + dpuuid +
1431
+ '.datepicker._adjustDate(\'#' + inst.id + '\', +' + stepMonths + ', \'M\');"' +
1432
+ ' title="' + nextText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'w' : 'e') + '">' + nextText + '</span></a>' :
1433
+ (hideIfNoPrevNext ? '' : '<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+ nextText + '"><span class="ui-icon ui-icon-circle-triangle-' + ( isRTL ? 'w' : 'e') + '">' + nextText + '</span></a>'));
1434
+ var currentText = this._get(inst, 'currentText');
1435
+ var gotoDate = (this._get(inst, 'gotoCurrent') && inst.currentDay ? currentDate : today);
1436
+ currentText = (!navigationAsDateFormat ? currentText :
1437
+ this.formatDate(currentText, gotoDate, this._getFormatConfig(inst)));
1438
+ var controls = (!inst.inline ? '<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_' + dpuuid +
1439
+ '.datepicker._hideDatepicker();">' + this._get(inst, 'closeText') + '</button>' : '');
1440
+ var buttonPanel = (showButtonPanel) ? '<div class="ui-datepicker-buttonpane ui-widget-content">' + (isRTL ? controls : '') +
1441
+ (this._isInRange(inst, gotoDate) ? '<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_' + dpuuid +
1442
+ '.datepicker._gotoToday(\'#' + inst.id + '\');"' +
1443
+ '>' + currentText + '</button>' : '') + (isRTL ? '' : controls) + '</div>' : '';
1444
+ var firstDay = parseInt(this._get(inst, 'firstDay'),10);
1445
+ firstDay = (isNaN(firstDay) ? 0 : firstDay);
1446
+ var showWeek = this._get(inst, 'showWeek');
1447
+ var dayNames = this._get(inst, 'dayNames');
1448
+ var dayNamesShort = this._get(inst, 'dayNamesShort');
1449
+ var dayNamesMin = this._get(inst, 'dayNamesMin');
1450
+ var monthNames = this._get(inst, 'monthNames');
1451
+ var monthNamesShort = this._get(inst, 'monthNamesShort');
1452
+ var beforeShowDay = this._get(inst, 'beforeShowDay');
1453
+ var showOtherMonths = this._get(inst, 'showOtherMonths');
1454
+ var selectOtherMonths = this._get(inst, 'selectOtherMonths');
1455
+ var calculateWeek = this._get(inst, 'calculateWeek') || this.iso8601Week;
1456
+ var defaultDate = this._getDefaultDate(inst);
1457
+ var html = '';
1458
+ for (var row = 0; row < numMonths[0]; row++) {
1459
+ var group = '';
1460
+ for (var col = 0; col < numMonths[1]; col++) {
1461
+ var selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay));
1462
+ var cornerClass = ' ui-corner-all';
1463
+ var calender = '';
1464
+ if (isMultiMonth) {
1465
+ calender += '<div class="ui-datepicker-group';
1466
+ if (numMonths[1] > 1)
1467
+ switch (col) {
1468
+ case 0: calender += ' ui-datepicker-group-first';
1469
+ cornerClass = ' ui-corner-' + (isRTL ? 'right' : 'left'); break;
1470
+ case numMonths[1]-1: calender += ' ui-datepicker-group-last';
1471
+ cornerClass = ' ui-corner-' + (isRTL ? 'left' : 'right'); break;
1472
+ default: calender += ' ui-datepicker-group-middle'; cornerClass = ''; break;
1473
+ }
1474
+ calender += '">';
1475
+ }
1476
+ calender += '<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix' + cornerClass + '">' +
1477
+ (/all|left/.test(cornerClass) && row == 0 ? (isRTL ? next : prev) : '') +
1478
+ (/all|right/.test(cornerClass) && row == 0 ? (isRTL ? prev : next) : '') +
1479
+ this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate,
1480
+ row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers
1481
+ '</div><table class="ui-datepicker-calendar"><thead>' +
1482
+ '<tr>';
1483
+ var thead = (showWeek ? '<th class="ui-datepicker-week-col">' + this._get(inst, 'weekHeader') + '</th>' : '');
1484
+ for (var dow = 0; dow < 7; dow++) { // days of the week
1485
+ var day = (dow + firstDay) % 7;
1486
+ thead += '<th' + ((dow + firstDay + 6) % 7 >= 5 ? ' class="ui-datepicker-week-end"' : '') + '>' +
1487
+ '<span title="' + dayNames[day] + '">' + dayNamesMin[day] + '</span></th>';
1488
+ }
1489
+ calender += thead + '</tr></thead><tbody>';
1490
+ var daysInMonth = this._getDaysInMonth(drawYear, drawMonth);
1491
+ if (drawYear == inst.selectedYear && drawMonth == inst.selectedMonth)
1492
+ inst.selectedDay = Math.min(inst.selectedDay, daysInMonth);
1493
+ var leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7;
1494
+ var numRows = (isMultiMonth ? 6 : Math.ceil((leadDays + daysInMonth) / 7)); // calculate the number of rows to generate
1495
+ var printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays));
1496
+ for (var dRow = 0; dRow < numRows; dRow++) { // create date picker rows
1497
+ calender += '<tr>';
1498
+ var tbody = (!showWeek ? '' : '<td class="ui-datepicker-week-col">' +
1499
+ this._get(inst, 'calculateWeek')(printDate) + '</td>');
1500
+ for (var dow = 0; dow < 7; dow++) { // create date picker days
1501
+ var daySettings = (beforeShowDay ?
1502
+ beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, '']);
1503
+ var otherMonth = (printDate.getMonth() != drawMonth);
1504
+ var unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] ||
1505
+ (minDate && printDate < minDate) || (maxDate && printDate > maxDate);
1506
+ tbody += '<td class="' +
1507
+ ((dow + firstDay + 6) % 7 >= 5 ? ' ui-datepicker-week-end' : '') + // highlight weekends
1508
+ (otherMonth ? ' ui-datepicker-other-month' : '') + // highlight days from other months
1509
+ ((printDate.getTime() == selectedDate.getTime() && drawMonth == inst.selectedMonth && inst._keyEvent) || // user pressed key
1510
+ (defaultDate.getTime() == printDate.getTime() && defaultDate.getTime() == selectedDate.getTime()) ?
1511
+ // or defaultDate is current printedDate and defaultDate is selectedDate
1512
+ ' ' + this._dayOverClass : '') + // highlight selected day
1513
+ (unselectable ? ' ' + this._unselectableClass + ' ui-state-disabled': '') + // highlight unselectable days
1514
+ (otherMonth && !showOtherMonths ? '' : ' ' + daySettings[1] + // highlight custom dates
1515
+ (printDate.getTime() == currentDate.getTime() ? ' ' + this._currentClass : '') + // highlight selected day
1516
+ (printDate.getTime() == today.getTime() ? ' ui-datepicker-today' : '')) + '"' + // highlight today (if different)
1517
+ ((!otherMonth || showOtherMonths) && daySettings[2] ? ' title="' + daySettings[2] + '"' : '') + // cell title
1518
+ (unselectable ? '' : ' onclick="DP_jQuery_' + dpuuid + '.datepicker._selectDay(\'#' +
1519
+ inst.id + '\',' + printDate.getMonth() + ',' + printDate.getFullYear() + ', this);return false;"') + '>' + // actions
1520
+ (otherMonth && !showOtherMonths ? '&#xa0;' : // display for other months
1521
+ (unselectable ? '<span class="ui-state-default">' + printDate.getDate() + '</span>' : '<a class="ui-state-default' +
1522
+ (printDate.getTime() == today.getTime() ? ' ui-state-highlight' : '') +
1523
+ (printDate.getTime() == currentDate.getTime() ? ' ui-state-active' : '') + // highlight selected day
1524
+ (otherMonth ? ' ui-priority-secondary' : '') + // distinguish dates from other months
1525
+ '" href="#">' + printDate.getDate() + '</a>')) + '</td>'; // display selectable date
1526
+ printDate.setDate(printDate.getDate() + 1);
1527
+ printDate = this._daylightSavingAdjust(printDate);
1528
+ }
1529
+ calender += tbody + '</tr>';
1530
+ }
1531
+ drawMonth++;
1532
+ if (drawMonth > 11) {
1533
+ drawMonth = 0;
1534
+ drawYear++;
1535
+ }
1536
+ calender += '</tbody></table>' + (isMultiMonth ? '</div>' +
1537
+ ((numMonths[0] > 0 && col == numMonths[1]-1) ? '<div class="ui-datepicker-row-break"></div>' : '') : '');
1538
+ group += calender;
1539
+ }
1540
+ html += group;
1541
+ }
1542
+ html += buttonPanel + ($.browser.msie && parseInt($.browser.version,10) < 7 && !inst.inline ?
1543
+ '<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>' : '');
1544
+ inst._keyEvent = false;
1545
+ return html;
1546
+ },
1547
+
1548
+ /* Generate the month and year header. */
1549
+ _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate,
1550
+ secondary, monthNames, monthNamesShort) {
1551
+ var changeMonth = this._get(inst, 'changeMonth');
1552
+ var changeYear = this._get(inst, 'changeYear');
1553
+ var showMonthAfterYear = this._get(inst, 'showMonthAfterYear');
1554
+ var html = '<div class="ui-datepicker-title">';
1555
+ var monthHtml = '';
1556
+ // month selection
1557
+ if (secondary || !changeMonth)
1558
+ monthHtml += '<span class="ui-datepicker-month">' + monthNames[drawMonth] + '</span>';
1559
+ else {
1560
+ var inMinYear = (minDate && minDate.getFullYear() == drawYear);
1561
+ var inMaxYear = (maxDate && maxDate.getFullYear() == drawYear);
1562
+ monthHtml += '<select class="ui-datepicker-month" ' +
1563
+ 'onchange="DP_jQuery_' + dpuuid + '.datepicker._selectMonthYear(\'#' + inst.id + '\', this, \'M\');" ' +
1564
+ 'onclick="DP_jQuery_' + dpuuid + '.datepicker._clickMonthYear(\'#' + inst.id + '\');"' +
1565
+ '>';
1566
+ for (var month = 0; month < 12; month++) {
1567
+ if ((!inMinYear || month >= minDate.getMonth()) &&
1568
+ (!inMaxYear || month <= maxDate.getMonth()))
1569
+ monthHtml += '<option value="' + month + '"' +
1570
+ (month == drawMonth ? ' selected="selected"' : '') +
1571
+ '>' + monthNamesShort[month] + '</option>';
1572
+ }
1573
+ monthHtml += '</select>';
1574
+ }
1575
+ if (!showMonthAfterYear)
1576
+ html += monthHtml + (secondary || !(changeMonth && changeYear) ? '&#xa0;' : '');
1577
+ // year selection
1578
+ inst.yearshtml = '';
1579
+ if (secondary || !changeYear)
1580
+ html += '<span class="ui-datepicker-year">' + drawYear + '</span>';
1581
+ else {
1582
+ // determine range of years to display
1583
+ var years = this._get(inst, 'yearRange').split(':');
1584
+ var thisYear = new Date().getFullYear();
1585
+ var determineYear = function(value) {
1586
+ var year = (value.match(/c[+-].*/) ? drawYear + parseInt(value.substring(1), 10) :
1587
+ (value.match(/[+-].*/) ? thisYear + parseInt(value, 10) :
1588
+ parseInt(value, 10)));
1589
+ return (isNaN(year) ? thisYear : year);
1590
+ };
1591
+ var year = determineYear(years[0]);
1592
+ var endYear = Math.max(year, determineYear(years[1] || ''));
1593
+ year = (minDate ? Math.max(year, minDate.getFullYear()) : year);
1594
+ endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear);
1595
+ inst.yearshtml += '<select class="ui-datepicker-year" ' +
1596
+ 'onchange="DP_jQuery_' + dpuuid + '.datepicker._selectMonthYear(\'#' + inst.id + '\', this, \'Y\');" ' +
1597
+ 'onclick="DP_jQuery_' + dpuuid + '.datepicker._clickMonthYear(\'#' + inst.id + '\');"' +
1598
+ '>';
1599
+ for (; year <= endYear; year++) {
1600
+ inst.yearshtml += '<option value="' + year + '"' +
1601
+ (year == drawYear ? ' selected="selected"' : '') +
1602
+ '>' + year + '</option>';
1603
+ }
1604
+ inst.yearshtml += '</select>';
1605
+ //when showing there is no need for later update
1606
+ if( ! $.browser.mozilla ){
1607
+ html += inst.yearshtml;
1608
+ inst.yearshtml = null;
1609
+ } else {
1610
+ // will be replaced later with inst.yearshtml
1611
+ html += '<select class="ui-datepicker-year"><option value="' + drawYear + '" selected="selected">' + drawYear + '</option></select>';
1612
+ }
1613
+ }
1614
+ html += this._get(inst, 'yearSuffix');
1615
+ if (showMonthAfterYear)
1616
+ html += (secondary || !(changeMonth && changeYear) ? '&#xa0;' : '') + monthHtml;
1617
+ html += '</div>'; // Close datepicker_header
1618
+ return html;
1619
+ },
1620
+
1621
+ /* Adjust one of the date sub-fields. */
1622
+ _adjustInstDate: function(inst, offset, period) {
1623
+ var year = inst.drawYear + (period == 'Y' ? offset : 0);
1624
+ var month = inst.drawMonth + (period == 'M' ? offset : 0);
1625
+ var day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) +
1626
+ (period == 'D' ? offset : 0);
1627
+ var date = this._restrictMinMax(inst,
1628
+ this._daylightSavingAdjust(new Date(year, month, day)));
1629
+ inst.selectedDay = date.getDate();
1630
+ inst.drawMonth = inst.selectedMonth = date.getMonth();
1631
+ inst.drawYear = inst.selectedYear = date.getFullYear();
1632
+ if (period == 'M' || period == 'Y')
1633
+ this._notifyChange(inst);
1634
+ },
1635
+
1636
+ /* Ensure a date is within any min/max bounds. */
1637
+ _restrictMinMax: function(inst, date) {
1638
+ var minDate = this._getMinMaxDate(inst, 'min');
1639
+ var maxDate = this._getMinMaxDate(inst, 'max');
1640
+ var newDate = (minDate && date < minDate ? minDate : date);
1641
+ newDate = (maxDate && newDate > maxDate ? maxDate : newDate);
1642
+ return newDate;
1643
+ },
1644
+
1645
+ /* Notify change of month/year. */
1646
+ _notifyChange: function(inst) {
1647
+ var onChange = this._get(inst, 'onChangeMonthYear');
1648
+ if (onChange)
1649
+ onChange.apply((inst.input ? inst.input[0] : null),
1650
+ [inst.selectedYear, inst.selectedMonth + 1, inst]);
1651
+ },
1652
+
1653
+ /* Determine the number of months to show. */
1654
+ _getNumberOfMonths: function(inst) {
1655
+ var numMonths = this._get(inst, 'numberOfMonths');
1656
+ return (numMonths == null ? [1, 1] : (typeof numMonths == 'number' ? [1, numMonths] : numMonths));
1657
+ },
1658
+
1659
+ /* Determine the current maximum date - ensure no time components are set. */
1660
+ _getMinMaxDate: function(inst, minMax) {
1661
+ return this._determineDate(inst, this._get(inst, minMax + 'Date'), null);
1662
+ },
1663
+
1664
+ /* Find the number of days in a given month. */
1665
+ _getDaysInMonth: function(year, month) {
1666
+ return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate();
1667
+ },
1668
+
1669
+ /* Find the day of the week of the first of a month. */
1670
+ _getFirstDayOfMonth: function(year, month) {
1671
+ return new Date(year, month, 1).getDay();
1672
+ },
1673
+
1674
+ /* Determines if we should allow a "next/prev" month display change. */
1675
+ _canAdjustMonth: function(inst, offset, curYear, curMonth) {
1676
+ var numMonths = this._getNumberOfMonths(inst);
1677
+ var date = this._daylightSavingAdjust(new Date(curYear,
1678
+ curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1));
1679
+ if (offset < 0)
1680
+ date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth()));
1681
+ return this._isInRange(inst, date);
1682
+ },
1683
+
1684
+ /* Is the given date in the accepted range? */
1685
+ _isInRange: function(inst, date) {
1686
+ var minDate = this._getMinMaxDate(inst, 'min');
1687
+ var maxDate = this._getMinMaxDate(inst, 'max');
1688
+ return ((!minDate || date.getTime() >= minDate.getTime()) &&
1689
+ (!maxDate || date.getTime() <= maxDate.getTime()));
1690
+ },
1691
+
1692
+ /* Provide the configuration settings for formatting/parsing. */
1693
+ _getFormatConfig: function(inst) {
1694
+ var shortYearCutoff = this._get(inst, 'shortYearCutoff');
1695
+ shortYearCutoff = (typeof shortYearCutoff != 'string' ? shortYearCutoff :
1696
+ new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10));
1697
+ return {shortYearCutoff: shortYearCutoff,
1698
+ dayNamesShort: this._get(inst, 'dayNamesShort'), dayNames: this._get(inst, 'dayNames'),
1699
+ monthNamesShort: this._get(inst, 'monthNamesShort'), monthNames: this._get(inst, 'monthNames')};
1700
+ },
1701
+
1702
+ /* Format the given date for display. */
1703
+ _formatDate: function(inst, day, month, year) {
1704
+ if (!day) {
1705
+ inst.currentDay = inst.selectedDay;
1706
+ inst.currentMonth = inst.selectedMonth;
1707
+ inst.currentYear = inst.selectedYear;
1708
+ }
1709
+ var date = (day ? (typeof day == 'object' ? day :
1710
+ this._daylightSavingAdjust(new Date(year, month, day))) :
1711
+ this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay)));
1712
+ return this.formatDate(this._get(inst, 'dateFormat'), date, this._getFormatConfig(inst));
1713
+ }
1714
+ });
1715
+
1716
+ /* jQuery extend now ignores nulls! */
1717
+ function extendRemove(target, props) {
1718
+ $.extend(target, props);
1719
+ for (var name in props)
1720
+ if (props[name] == null || props[name] == undefined)
1721
+ target[name] = props[name];
1722
+ return target;
1723
+ };
1724
+
1725
+ /* Determine whether an object is an array. */
1726
+ function isArray(a) {
1727
+ return (a && (($.browser.safari && typeof a == 'object' && a.length) ||
1728
+ (a.constructor && a.constructor.toString().match(/\Array\(\)/))));
1729
+ };
1730
+
1731
+ /* Invoke the datepicker functionality.
1732
+ @param options string - a command, optionally followed by additional parameters or
1733
+ Object - settings for attaching new datepicker functionality
1734
+ @return jQuery object */
1735
+ $.fn.datepicker = function(options){
1736
+
1737
+ /* Verify an empty collection wasn't passed - Fixes #6976 */
1738
+ if ( !this.length ) {
1739
+ return this;
1740
+ }
1741
+
1742
+ /* Initialise the date picker. */
1743
+ if (!$.datepicker.initialized) {
1744
+ $(document).mousedown($.datepicker._checkExternalClick).
1745
+ find('body').append($.datepicker.dpDiv);
1746
+ $.datepicker.initialized = true;
1747
+ }
1748
+
1749
+ var otherArgs = Array.prototype.slice.call(arguments, 1);
1750
+ if (typeof options == 'string' && (options == 'isDisabled' || options == 'getDate' || options == 'widget'))
1751
+ return $.datepicker['_' + options + 'Datepicker'].
1752
+ apply($.datepicker, [this[0]].concat(otherArgs));
1753
+ if (options == 'option' && arguments.length == 2 && typeof arguments[1] == 'string')
1754
+ return $.datepicker['_' + options + 'Datepicker'].
1755
+ apply($.datepicker, [this[0]].concat(otherArgs));
1756
+ return this.each(function() {
1757
+ typeof options == 'string' ?
1758
+ $.datepicker['_' + options + 'Datepicker'].
1759
+ apply($.datepicker, [this].concat(otherArgs)) :
1760
+ $.datepicker._attachDatepicker(this, options);
1761
+ });
1762
+ };
1763
+
1764
+ $.datepicker = new Datepicker(); // singleton instance
1765
+ $.datepicker.initialized = false;
1766
+ $.datepicker.uuid = new Date().getTime();
1767
+ $.datepicker.version = "1.8.11";
1768
+
1769
+ // Workaround for #4055
1770
+ // Add another global to avoid noConflict issues with inline event handlers
1771
+ window['DP_jQuery_' + dpuuid] = $;
1772
+
1773
+ })(jQuery);