alchemy 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,1201 @@
1
+ Flot Reference
2
+ --------------
3
+
4
+ Consider a call to the plot function:
5
+
6
+ var plot = $.plot(placeholder, data, options)
7
+
8
+ The placeholder is a jQuery object or DOM element or jQuery expression
9
+ that the plot will be put into. This placeholder needs to have its
10
+ width and height set as explained in the README (go read that now if
11
+ you haven't, it's short). The plot will modify some properties of the
12
+ placeholder so it's recommended you simply pass in a div that you
13
+ don't use for anything else. Make sure you check any fancy styling
14
+ you apply to the div, e.g. background images have been reported to be a
15
+ problem on IE 7.
16
+
17
+ The format of the data is documented below, as is the available
18
+ options. The plot object returned from the call has some methods you
19
+ can call. These are documented separately below.
20
+
21
+ Note that in general Flot gives no guarantees if you change any of the
22
+ objects you pass in to the plot function or get out of it since
23
+ they're not necessarily deep-copied.
24
+
25
+
26
+ Data Format
27
+ -----------
28
+
29
+ The data is an array of data series:
30
+
31
+ [ series1, series2, ... ]
32
+
33
+ A series can either be raw data or an object with properties. The raw
34
+ data format is an array of points:
35
+
36
+ [ [x1, y1], [x2, y2], ... ]
37
+
38
+ E.g.
39
+
40
+ [ [1, 3], [2, 14.01], [3.5, 3.14] ]
41
+
42
+ Note that to simplify the internal logic in Flot both the x and y
43
+ values must be numbers (even if specifying time series, see below for
44
+ how to do this). This is a common problem because you might retrieve
45
+ data from the database and serialize them directly to JSON without
46
+ noticing the wrong type. If you're getting mysterious errors, double
47
+ check that you're inputting numbers and not strings.
48
+
49
+ If a null is specified as a point or if one of the coordinates is null
50
+ or couldn't be converted to a number, the point is ignored when
51
+ drawing. As a special case, a null value for lines is interpreted as a
52
+ line segment end, i.e. the points before and after the null value are
53
+ not connected.
54
+
55
+ Lines and points take two coordinates. For filled lines and bars, you
56
+ can specify a third coordinate which is the bottom of the filled
57
+ area/bar (defaults to 0).
58
+
59
+ The format of a single series object is as follows:
60
+
61
+ {
62
+ color: color or number
63
+ data: rawdata
64
+ label: string
65
+ lines: specific lines options
66
+ bars: specific bars options
67
+ points: specific points options
68
+ xaxis: number
69
+ yaxis: number
70
+ clickable: boolean
71
+ hoverable: boolean
72
+ shadowSize: number
73
+ }
74
+
75
+ You don't have to specify any of them except the data, the rest are
76
+ options that will get default values. Typically you'd only specify
77
+ label and data, like this:
78
+
79
+ {
80
+ label: "y = 3",
81
+ data: [[0, 3], [10, 3]]
82
+ }
83
+
84
+ The label is used for the legend, if you don't specify one, the series
85
+ will not show up in the legend.
86
+
87
+ If you don't specify color, the series will get a color from the
88
+ auto-generated colors. The color is either a CSS color specification
89
+ (like "rgb(255, 100, 123)") or an integer that specifies which of
90
+ auto-generated colors to select, e.g. 0 will get color no. 0, etc.
91
+
92
+ The latter is mostly useful if you let the user add and remove series,
93
+ in which case you can hard-code the color index to prevent the colors
94
+ from jumping around between the series.
95
+
96
+ The "xaxis" and "yaxis" options specify which axis to use. The axes
97
+ are numbered from 1 (default), so { yaxis: 2} means that the series
98
+ should be plotted against the second y axis.
99
+
100
+ "clickable" and "hoverable" can be set to false to disable
101
+ interactivity for specific series if interactivity is turned on in
102
+ the plot, see below.
103
+
104
+ The rest of the options are all documented below as they are the same
105
+ as the default options passed in via the options parameter in the plot
106
+ commmand. When you specify them for a specific data series, they will
107
+ override the default options for the plot for that data series.
108
+
109
+ Here's a complete example of a simple data specification:
110
+
111
+ [ { label: "Foo", data: [ [10, 1], [17, -14], [30, 5] ] },
112
+ { label: "Bar", data: [ [11, 13], [19, 11], [30, -7] ] } ]
113
+
114
+
115
+ Plot Options
116
+ ------------
117
+
118
+ All options are completely optional. They are documented individually
119
+ below, to change them you just specify them in an object, e.g.
120
+
121
+ var options = {
122
+ series: {
123
+ lines: { show: true },
124
+ points: { show: true }
125
+ }
126
+ };
127
+
128
+ $.plot(placeholder, data, options);
129
+
130
+
131
+ Customizing the legend
132
+ ======================
133
+
134
+ legend: {
135
+ show: boolean
136
+ labelFormatter: null or (fn: string, series object -> string)
137
+ labelBoxBorderColor: color
138
+ noColumns: number
139
+ position: "ne" or "nw" or "se" or "sw"
140
+ margin: number of pixels or [x margin, y margin]
141
+ backgroundColor: null or color
142
+ backgroundOpacity: number between 0 and 1
143
+ container: null or jQuery object/DOM element/jQuery expression
144
+ }
145
+
146
+ The legend is generated as a table with the data series labels and
147
+ small label boxes with the color of the series. If you want to format
148
+ the labels in some way, e.g. make them to links, you can pass in a
149
+ function for "labelFormatter". Here's an example that makes them
150
+ clickable:
151
+
152
+ labelFormatter: function(label, series) {
153
+ // series is the series object for the label
154
+ return '<a href="#' + label + '">' + label + '</a>';
155
+ }
156
+
157
+ "noColumns" is the number of columns to divide the legend table into.
158
+ "position" specifies the overall placement of the legend within the
159
+ plot (top-right, top-left, etc.) and margin the distance to the plot
160
+ edge (this can be either a number or an array of two numbers like [x,
161
+ y]). "backgroundColor" and "backgroundOpacity" specifies the
162
+ background. The default is a partly transparent auto-detected
163
+ background.
164
+
165
+ If you want the legend to appear somewhere else in the DOM, you can
166
+ specify "container" as a jQuery object/expression to put the legend
167
+ table into. The "position" and "margin" etc. options will then be
168
+ ignored. Note that Flot will overwrite the contents of the container.
169
+
170
+
171
+ Customizing the axes
172
+ ====================
173
+
174
+ xaxis, yaxis: {
175
+ show: null or true/false
176
+ position: "bottom" or "top" or "left" or "right"
177
+ mode: null or "time"
178
+
179
+ color: null or color spec
180
+ tickColor: null or color spec
181
+
182
+ min: null or number
183
+ max: null or number
184
+ autoscaleMargin: null or number
185
+
186
+ transform: null or fn: number -> number
187
+ inverseTransform: null or fn: number -> number
188
+
189
+ ticks: null or number or ticks array or (fn: range -> ticks array)
190
+ tickSize: number or array
191
+ minTickSize: number or array
192
+ tickFormatter: (fn: number, object -> string) or string
193
+ tickDecimals: null or number
194
+
195
+ labelWidth: null or number
196
+ labelHeight: null or number
197
+ reserveSpace: null or true
198
+
199
+ tickLength: null or number
200
+
201
+ alignTicksWithAxis: null or number
202
+ }
203
+
204
+ All axes have the same kind of options. The following describes how to
205
+ configure one axis, see below for what to do if you've got more than
206
+ one x axis or y axis.
207
+
208
+ If you don't set the "show" option (i.e. it is null), visibility is
209
+ auto-detected, i.e. the axis will show up if there's data associated
210
+ with it. You can override this by setting the "show" option to true or
211
+ false.
212
+
213
+ The "position" option specifies where the axis is placed, bottom or
214
+ top for x axes, left or right for y axes. The "mode" option determines
215
+ how the data is interpreted, the default of null means as decimal
216
+ numbers. Use "time" for time series data, see the time series data
217
+ section.
218
+
219
+ The "color" option determines the color of the labels and ticks for
220
+ the axis (default is the grid color). For more fine-grained control
221
+ you can also set the color of the ticks separately with "tickColor"
222
+ (otherwise it's autogenerated as the base color with some
223
+ transparency).
224
+
225
+ The options "min"/"max" are the precise minimum/maximum value on the
226
+ scale. If you don't specify either of them, a value will automatically
227
+ be chosen based on the minimum/maximum data values. Note that Flot
228
+ always examines all the data values you feed to it, even if a
229
+ restriction on another axis may make some of them invisible (this
230
+ makes interactive use more stable).
231
+
232
+ The "autoscaleMargin" is a bit esoteric: it's the fraction of margin
233
+ that the scaling algorithm will add to avoid that the outermost points
234
+ ends up on the grid border. Note that this margin is only applied when
235
+ a min or max value is not explicitly set. If a margin is specified,
236
+ the plot will furthermore extend the axis end-point to the nearest
237
+ whole tick. The default value is "null" for the x axes and 0.02 for y
238
+ axes which seems appropriate for most cases.
239
+
240
+ "transform" and "inverseTransform" are callbacks you can put in to
241
+ change the way the data is drawn. You can design a function to
242
+ compress or expand certain parts of the axis non-linearly, e.g.
243
+ suppress weekends or compress far away points with a logarithm or some
244
+ other means. When Flot draws the plot, each value is first put through
245
+ the transform function. Here's an example, the x axis can be turned
246
+ into a natural logarithm axis with the following code:
247
+
248
+ xaxis: {
249
+ transform: function (v) { return Math.log(v); },
250
+ inverseTransform: function (v) { return Math.exp(v); }
251
+ }
252
+
253
+ Similarly, for reversing the y axis so the values appear in inverse
254
+ order:
255
+
256
+ yaxis: {
257
+ transform: function (v) { return -v; },
258
+ inverseTransform: function (v) { return -v; }
259
+ }
260
+
261
+ Note that for finding extrema, Flot assumes that the transform
262
+ function does not reorder values (it should be monotone).
263
+
264
+ The inverseTransform is simply the inverse of the transform function
265
+ (so v == inverseTransform(transform(v)) for all relevant v). It is
266
+ required for converting from canvas coordinates to data coordinates,
267
+ e.g. for a mouse interaction where a certain pixel is clicked. If you
268
+ don't use any interactive features of Flot, you may not need it.
269
+
270
+
271
+ The rest of the options deal with the ticks.
272
+
273
+ If you don't specify any ticks, a tick generator algorithm will make
274
+ some for you. The algorithm has two passes. It first estimates how
275
+ many ticks would be reasonable and uses this number to compute a nice
276
+ round tick interval size. Then it generates the ticks.
277
+
278
+ You can specify how many ticks the algorithm aims for by setting
279
+ "ticks" to a number. The algorithm always tries to generate reasonably
280
+ round tick values so even if you ask for three ticks, you might get
281
+ five if that fits better with the rounding. If you don't want any
282
+ ticks at all, set "ticks" to 0 or an empty array.
283
+
284
+ Another option is to skip the rounding part and directly set the tick
285
+ interval size with "tickSize". If you set it to 2, you'll get ticks at
286
+ 2, 4, 6, etc. Alternatively, you can specify that you just don't want
287
+ ticks at a size less than a specific tick size with "minTickSize".
288
+ Note that for time series, the format is an array like [2, "month"],
289
+ see the next section.
290
+
291
+ If you want to completely override the tick algorithm, you can specify
292
+ an array for "ticks", either like this:
293
+
294
+ ticks: [0, 1.2, 2.4]
295
+
296
+ Or like this where the labels are also customized:
297
+
298
+ ticks: [[0, "zero"], [1.2, "one mark"], [2.4, "two marks"]]
299
+
300
+ You can mix the two if you like.
301
+
302
+ For extra flexibility you can specify a function as the "ticks"
303
+ parameter. The function will be called with an object with the axis
304
+ min and max and should return a ticks array. Here's a simplistic tick
305
+ generator that spits out intervals of pi, suitable for use on the x
306
+ axis for trigonometric functions:
307
+
308
+ function piTickGenerator(axis) {
309
+ var res = [], i = Math.floor(axis.min / Math.PI);
310
+ do {
311
+ var v = i * Math.PI;
312
+ res.push([v, i + "\u03c0"]);
313
+ ++i;
314
+ } while (v < axis.max);
315
+
316
+ return res;
317
+ }
318
+
319
+ You can control how the ticks look like with "tickDecimals", the
320
+ number of decimals to display (default is auto-detected).
321
+
322
+ Alternatively, for ultimate control over how ticks are formatted you can
323
+ provide a function to "tickFormatter". The function is passed two
324
+ parameters, the tick value and an axis object with information, and
325
+ should return a string. The default formatter looks like this:
326
+
327
+ function formatter(val, axis) {
328
+ return val.toFixed(axis.tickDecimals);
329
+ }
330
+
331
+ The axis object has "min" and "max" with the range of the axis,
332
+ "tickDecimals" with the number of decimals to round the value to and
333
+ "tickSize" with the size of the interval between ticks as calculated
334
+ by the automatic axis scaling algorithm (or specified by you). Here's
335
+ an example of a custom formatter:
336
+
337
+ function suffixFormatter(val, axis) {
338
+ if (val > 1000000)
339
+ return (val / 1000000).toFixed(axis.tickDecimals) + " MB";
340
+ else if (val > 1000)
341
+ return (val / 1000).toFixed(axis.tickDecimals) + " kB";
342
+ else
343
+ return val.toFixed(axis.tickDecimals) + " B";
344
+ }
345
+
346
+ "labelWidth" and "labelHeight" specifies a fixed size of the tick
347
+ labels in pixels. They're useful in case you need to align several
348
+ plots. "reserveSpace" means that even if an axis isn't shown, Flot
349
+ should reserve space for it - it is useful in combination with
350
+ labelWidth and labelHeight for aligning multi-axis charts.
351
+
352
+ "tickLength" is the length of the tick lines in pixels. By default, the
353
+ innermost axes will have ticks that extend all across the plot, while
354
+ any extra axes use small ticks. A value of null means use the default,
355
+ while a number means small ticks of that length - set it to 0 to hide
356
+ the lines completely.
357
+
358
+ If you set "alignTicksWithAxis" to the number of another axis, e.g.
359
+ alignTicksWithAxis: 1, Flot will ensure that the autogenerated ticks
360
+ of this axis are aligned with the ticks of the other axis. This may
361
+ improve the looks, e.g. if you have one y axis to the left and one to
362
+ the right, because the grid lines will then match the ticks in both
363
+ ends. The trade-off is that the forced ticks won't necessarily be at
364
+ natural places.
365
+
366
+
367
+ Multiple axes
368
+ =============
369
+
370
+ If you need more than one x axis or y axis, you need to specify for
371
+ each data series which axis they are to use, as described under the
372
+ format of the data series, e.g. { data: [...], yaxis: 2 } specifies
373
+ that a series should be plotted against the second y axis.
374
+
375
+ To actually configure that axis, you can't use the xaxis/yaxis options
376
+ directly - instead there are two arrays in the options:
377
+
378
+ xaxes: []
379
+ yaxes: []
380
+
381
+ Here's an example of configuring a single x axis and two y axes (we
382
+ can leave options of the first y axis empty as the defaults are fine):
383
+
384
+ {
385
+ xaxes: [ { position: "top" } ],
386
+ yaxes: [ { }, { position: "right", min: 20 } ]
387
+ }
388
+
389
+ The arrays get their default values from the xaxis/yaxis settings, so
390
+ say you want to have all y axes start at zero, you can simply specify
391
+ yaxis: { min: 0 } instead of adding a min parameter to all the axes.
392
+
393
+ Generally, the various interfaces in Flot dealing with data points
394
+ either accept an xaxis/yaxis parameter to specify which axis number to
395
+ use (starting from 1), or lets you specify the coordinate directly as
396
+ x2/x3/... or x2axis/x3axis/... instead of "x" or "xaxis".
397
+
398
+
399
+ Time series data
400
+ ================
401
+
402
+ Time series are a bit more difficult than scalar data because
403
+ calendars don't follow a simple base 10 system. For many cases, Flot
404
+ abstracts most of this away, but it can still be a bit difficult to
405
+ get the data into Flot. So we'll first discuss the data format.
406
+
407
+ The time series support in Flot is based on Javascript timestamps,
408
+ i.e. everywhere a time value is expected or handed over, a Javascript
409
+ timestamp number is used. This is a number, not a Date object. A
410
+ Javascript timestamp is the number of milliseconds since January 1,
411
+ 1970 00:00:00 UTC. This is almost the same as Unix timestamps, except it's
412
+ in milliseconds, so remember to multiply by 1000!
413
+
414
+ You can see a timestamp like this
415
+
416
+ alert((new Date()).getTime())
417
+
418
+ Normally you want the timestamps to be displayed according to a
419
+ certain time zone, usually the time zone in which the data has been
420
+ produced. However, Flot always displays timestamps according to UTC.
421
+ It has to as the only alternative with core Javascript is to interpret
422
+ the timestamps according to the time zone that the visitor is in,
423
+ which means that the ticks will shift unpredictably with the time zone
424
+ and daylight savings of each visitor.
425
+
426
+ So given that there's no good support for custom time zones in
427
+ Javascript, you'll have to take care of this server-side.
428
+
429
+ The easiest way to think about it is to pretend that the data
430
+ production time zone is UTC, even if it isn't. So if you have a
431
+ datapoint at 2002-02-20 08:00, you can generate a timestamp for eight
432
+ o'clock UTC even if it really happened eight o'clock UTC+0200.
433
+
434
+ In PHP you can get an appropriate timestamp with
435
+ 'strtotime("2002-02-20 UTC") * 1000', in Python with
436
+ 'calendar.timegm(datetime_object.timetuple()) * 1000', in .NET with
437
+ something like:
438
+
439
+ public static int GetJavascriptTimestamp(System.DateTime input)
440
+ {
441
+ System.TimeSpan span = new System.TimeSpan(System.DateTime.Parse("1/1/1970").Ticks);
442
+ System.DateTime time = input.Subtract(span);
443
+ return (long)(time.Ticks / 10000);
444
+ }
445
+
446
+ Javascript also has some support for parsing date strings, so it is
447
+ possible to generate the timestamps manually client-side.
448
+
449
+ If you've already got the real UTC timestamp, it's too late to use the
450
+ pretend trick described above. But you can fix up the timestamps by
451
+ adding the time zone offset, e.g. for UTC+0200 you would add 2 hours
452
+ to the UTC timestamp you got. Then it'll look right on the plot. Most
453
+ programming environments have some means of getting the timezone
454
+ offset for a specific date (note that you need to get the offset for
455
+ each individual timestamp to account for daylight savings).
456
+
457
+ Once you've gotten the timestamps into the data and specified "time"
458
+ as the axis mode, Flot will automatically generate relevant ticks and
459
+ format them. As always, you can tweak the ticks via the "ticks" option
460
+ - just remember that the values should be timestamps (numbers), not
461
+ Date objects.
462
+
463
+ Tick generation and formatting can also be controlled separately
464
+ through the following axis options:
465
+
466
+ minTickSize: array
467
+ timeformat: null or format string
468
+ monthNames: null or array of size 12 of strings
469
+ twelveHourClock: boolean
470
+
471
+ Here "timeformat" is a format string to use. You might use it like
472
+ this:
473
+
474
+ xaxis: {
475
+ mode: "time"
476
+ timeformat: "%y/%m/%d"
477
+ }
478
+
479
+ This will result in tick labels like "2000/12/24". The following
480
+ specifiers are supported
481
+
482
+ %h: hours
483
+ %H: hours (left-padded with a zero)
484
+ %M: minutes (left-padded with a zero)
485
+ %S: seconds (left-padded with a zero)
486
+ %d: day of month (1-31), use %0d for zero-padding
487
+ %m: month (1-12), use %0m for zero-padding
488
+ %y: year (four digits)
489
+ %b: month name (customizable)
490
+ %p: am/pm, additionally switches %h/%H to 12 hour instead of 24
491
+ %P: AM/PM (uppercase version of %p)
492
+
493
+ Inserting a zero like %0m or %0d means that the specifier will be
494
+ left-padded with a zero if it's only single-digit. So %y-%0m-%0d
495
+ results in unambigious ISO timestamps like 2007-05-10 (for May 10th).
496
+
497
+ You can customize the month names with the "monthNames" option. For
498
+ instance, for Danish you might specify:
499
+
500
+ monthNames: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]
501
+
502
+ If you set "twelveHourClock" to true, the autogenerated timestamps
503
+ will use 12 hour AM/PM timestamps instead of 24 hour.
504
+
505
+ The format string and month names are used by a very simple built-in
506
+ format function that takes a date object, a format string (and
507
+ optionally an array of month names) and returns the formatted string.
508
+ If needed, you can access it as $.plot.formatDate(date, formatstring,
509
+ monthNames) or even replace it with another more advanced function
510
+ from a date library if you're feeling adventurous.
511
+
512
+ If everything else fails, you can control the formatting by specifying
513
+ a custom tick formatter function as usual. Here's a simple example
514
+ which will format December 24 as 24/12:
515
+
516
+ tickFormatter: function (val, axis) {
517
+ var d = new Date(val);
518
+ return d.getUTCDate() + "/" + (d.getUTCMonth() + 1);
519
+ }
520
+
521
+ Note that for the time mode "tickSize" and "minTickSize" are a bit
522
+ special in that they are arrays on the form "[value, unit]" where unit
523
+ is one of "second", "minute", "hour", "day", "month" and "year". So
524
+ you can specify
525
+
526
+ minTickSize: [1, "month"]
527
+
528
+ to get a tick interval size of at least 1 month and correspondingly,
529
+ if axis.tickSize is [2, "day"] in the tick formatter, the ticks have
530
+ been produced with two days in-between.
531
+
532
+
533
+
534
+ Customizing the data series
535
+ ===========================
536
+
537
+ series: {
538
+ lines, points, bars: {
539
+ show: boolean
540
+ lineWidth: number
541
+ fill: boolean or number
542
+ fillColor: null or color/gradient
543
+ }
544
+
545
+ points: {
546
+ radius: number
547
+ symbol: "circle" or function
548
+ }
549
+
550
+ bars: {
551
+ barWidth: number
552
+ align: "left" or "center"
553
+ horizontal: boolean
554
+ }
555
+
556
+ lines: {
557
+ steps: boolean
558
+ }
559
+
560
+ shadowSize: number
561
+ }
562
+
563
+ colors: [ color1, color2, ... ]
564
+
565
+ The options inside "series: {}" are copied to each of the series. So
566
+ you can specify that all series should have bars by putting it in the
567
+ global options, or override it for individual series by specifying
568
+ bars in a particular the series object in the array of data.
569
+
570
+ The most important options are "lines", "points" and "bars" that
571
+ specify whether and how lines, points and bars should be shown for
572
+ each data series. In case you don't specify anything at all, Flot will
573
+ default to showing lines (you can turn this off with
574
+ lines: { show: false }). You can specify the various types
575
+ independently of each other, and Flot will happily draw each of them
576
+ in turn (this is probably only useful for lines and points), e.g.
577
+
578
+ var options = {
579
+ series: {
580
+ lines: { show: true, fill: true, fillColor: "rgba(255, 255, 255, 0.8)" },
581
+ points: { show: true, fill: false }
582
+ }
583
+ };
584
+
585
+ "lineWidth" is the thickness of the line or outline in pixels. You can
586
+ set it to 0 to prevent a line or outline from being drawn; this will
587
+ also hide the shadow.
588
+
589
+ "fill" is whether the shape should be filled. For lines, this produces
590
+ area graphs. You can use "fillColor" to specify the color of the fill.
591
+ If "fillColor" evaluates to false (default for everything except
592
+ points which are filled with white), the fill color is auto-set to the
593
+ color of the data series. You can adjust the opacity of the fill by
594
+ setting fill to a number between 0 (fully transparent) and 1 (fully
595
+ opaque).
596
+
597
+ For bars, fillColor can be a gradient, see the gradient documentation
598
+ below. "barWidth" is the width of the bars in units of the x axis (or
599
+ the y axis if "horizontal" is true), contrary to most other measures
600
+ that are specified in pixels. For instance, for time series the unit
601
+ is milliseconds so 24 * 60 * 60 * 1000 produces bars with the width of
602
+ a day. "align" specifies whether a bar should be left-aligned
603
+ (default) or centered on top of the value it represents. When
604
+ "horizontal" is on, the bars are drawn horizontally, i.e. from the y
605
+ axis instead of the x axis; note that the bar end points are still
606
+ defined in the same way so you'll probably want to swap the
607
+ coordinates if you've been plotting vertical bars first.
608
+
609
+ For lines, "steps" specifies whether two adjacent data points are
610
+ connected with a straight (possibly diagonal) line or with first a
611
+ horizontal and then a vertical line. Note that this transforms the
612
+ data by adding extra points.
613
+
614
+ For points, you can specify the radius and the symbol. The only
615
+ built-in symbol type is circles, for other types you can use a plugin
616
+ or define them yourself by specifying a callback:
617
+
618
+ function cross(ctx, x, y, radius, shadow) {
619
+ var size = radius * Math.sqrt(Math.PI) / 2;
620
+ ctx.moveTo(x - size, y - size);
621
+ ctx.lineTo(x + size, y + size);
622
+ ctx.moveTo(x - size, y + size);
623
+ ctx.lineTo(x + size, y - size);
624
+ }
625
+
626
+ The parameters are the drawing context, x and y coordinates of the
627
+ center of the point, a radius which corresponds to what the circle
628
+ would have used and whether the call is to draw a shadow (due to
629
+ limited canvas support, shadows are currently faked through extra
630
+ draws). It's good practice to ensure that the area covered by the
631
+ symbol is the same as for the circle with the given radius, this
632
+ ensures that all symbols have approximately the same visual weight.
633
+
634
+ "shadowSize" is the default size of shadows in pixels. Set it to 0 to
635
+ remove shadows.
636
+
637
+ The "colors" array specifies a default color theme to get colors for
638
+ the data series from. You can specify as many colors as you like, like
639
+ this:
640
+
641
+ colors: ["#d18b2c", "#dba255", "#919733"]
642
+
643
+ If there are more data series than colors, Flot will try to generate
644
+ extra colors by lightening and darkening colors in the theme.
645
+
646
+
647
+ Customizing the grid
648
+ ====================
649
+
650
+ grid: {
651
+ show: boolean
652
+ aboveData: boolean
653
+ color: color
654
+ backgroundColor: color/gradient or null
655
+ labelMargin: number
656
+ axisMargin: number
657
+ markings: array of markings or (fn: axes -> array of markings)
658
+ borderWidth: number
659
+ borderColor: color or null
660
+ minBorderMargin: number or null
661
+ clickable: boolean
662
+ hoverable: boolean
663
+ autoHighlight: boolean
664
+ mouseActiveRadius: number
665
+ }
666
+
667
+ The grid is the thing with the axes and a number of ticks. Many of the
668
+ things in the grid are configured under the individual axes, but not
669
+ all. "color" is the color of the grid itself whereas "backgroundColor"
670
+ specifies the background color inside the grid area, here null means
671
+ that the background is transparent. You can also set a gradient, see
672
+ the gradient documentation below.
673
+
674
+ You can turn off the whole grid including tick labels by setting
675
+ "show" to false. "aboveData" determines whether the grid is drawn
676
+ above the data or below (below is default).
677
+
678
+ "labelMargin" is the space in pixels between tick labels and axis
679
+ line, and "axisMargin" is the space in pixels between axes when there
680
+ are two next to each other. Note that you can style the tick labels
681
+ with CSS, e.g. to change the color. They have class "tickLabel".
682
+
683
+ "borderWidth" is the width of the border around the plot. Set it to 0
684
+ to disable the border. You can also set "borderColor" if you want the
685
+ border to have a different color than the grid lines.
686
+ "minBorderMargin" controls the default minimum margin around the
687
+ border - it's used to make sure that points aren't accidentally
688
+ clipped by the canvas edge so by default the value is computed from
689
+ the point radius.
690
+
691
+ "markings" is used to draw simple lines and rectangular areas in the
692
+ background of the plot. You can either specify an array of ranges on
693
+ the form { xaxis: { from, to }, yaxis: { from, to } } (with multiple
694
+ axes, you can specify coordinates for other axes instead, e.g. as
695
+ x2axis/x3axis/...) or with a function that returns such an array given
696
+ the axes for the plot in an object as the first parameter.
697
+
698
+ You can set the color of markings by specifying "color" in the ranges
699
+ object. Here's an example array:
700
+
701
+ markings: [ { xaxis: { from: 0, to: 2 }, yaxis: { from: 10, to: 10 }, color: "#bb0000" }, ... ]
702
+
703
+ If you leave out one of the values, that value is assumed to go to the
704
+ border of the plot. So for example if you only specify { xaxis: {
705
+ from: 0, to: 2 } } it means an area that extends from the top to the
706
+ bottom of the plot in the x range 0-2.
707
+
708
+ A line is drawn if from and to are the same, e.g.
709
+
710
+ markings: [ { yaxis: { from: 1, to: 1 } }, ... ]
711
+
712
+ would draw a line parallel to the x axis at y = 1. You can control the
713
+ line width with "lineWidth" in the range object.
714
+
715
+ An example function that makes vertical stripes might look like this:
716
+
717
+ markings: function (axes) {
718
+ var markings = [];
719
+ for (var x = Math.floor(axes.xaxis.min); x < axes.xaxis.max; x += 2)
720
+ markings.push({ xaxis: { from: x, to: x + 1 } });
721
+ return markings;
722
+ }
723
+
724
+
725
+ If you set "clickable" to true, the plot will listen for click events
726
+ on the plot area and fire a "plotclick" event on the placeholder with
727
+ a position and a nearby data item object as parameters. The coordinates
728
+ are available both in the unit of the axes (not in pixels) and in
729
+ global screen coordinates.
730
+
731
+ Likewise, if you set "hoverable" to true, the plot will listen for
732
+ mouse move events on the plot area and fire a "plothover" event with
733
+ the same parameters as the "plotclick" event. If "autoHighlight" is
734
+ true (the default), nearby data items are highlighted automatically.
735
+ If needed, you can disable highlighting and control it yourself with
736
+ the highlight/unhighlight plot methods described elsewhere.
737
+
738
+ You can use "plotclick" and "plothover" events like this:
739
+
740
+ $.plot($("#placeholder"), [ d ], { grid: { clickable: true } });
741
+
742
+ $("#placeholder").bind("plotclick", function (event, pos, item) {
743
+ alert("You clicked at " + pos.x + ", " + pos.y);
744
+ // axis coordinates for other axes, if present, are in pos.x2, pos.x3, ...
745
+ // if you need global screen coordinates, they are pos.pageX, pos.pageY
746
+
747
+ if (item) {
748
+ highlight(item.series, item.datapoint);
749
+ alert("You clicked a point!");
750
+ }
751
+ });
752
+
753
+ The item object in this example is either null or a nearby object on the form:
754
+
755
+ item: {
756
+ datapoint: the point, e.g. [0, 2]
757
+ dataIndex: the index of the point in the data array
758
+ series: the series object
759
+ seriesIndex: the index of the series
760
+ pageX, pageY: the global screen coordinates of the point
761
+ }
762
+
763
+ For instance, if you have specified the data like this
764
+
765
+ $.plot($("#placeholder"), [ { label: "Foo", data: [[0, 10], [7, 3]] } ], ...);
766
+
767
+ and the mouse is near the point (7, 3), "datapoint" is [7, 3],
768
+ "dataIndex" will be 1, "series" is a normalized series object with
769
+ among other things the "Foo" label in series.label and the color in
770
+ series.color, and "seriesIndex" is 0. Note that plugins and options
771
+ that transform the data can shift the indexes from what you specified
772
+ in the original data array.
773
+
774
+ If you use the above events to update some other information and want
775
+ to clear out that info in case the mouse goes away, you'll probably
776
+ also need to listen to "mouseout" events on the placeholder div.
777
+
778
+ "mouseActiveRadius" specifies how far the mouse can be from an item
779
+ and still activate it. If there are two or more points within this
780
+ radius, Flot chooses the closest item. For bars, the top-most bar
781
+ (from the latest specified data series) is chosen.
782
+
783
+ If you want to disable interactivity for a specific data series, you
784
+ can set "hoverable" and "clickable" to false in the options for that
785
+ series, like this { data: [...], label: "Foo", clickable: false }.
786
+
787
+
788
+ Specifying gradients
789
+ ====================
790
+
791
+ A gradient is specified like this:
792
+
793
+ { colors: [ color1, color2, ... ] }
794
+
795
+ For instance, you might specify a background on the grid going from
796
+ black to gray like this:
797
+
798
+ grid: {
799
+ backgroundColor: { colors: ["#000", "#999"] }
800
+ }
801
+
802
+ For the series you can specify the gradient as an object that
803
+ specifies the scaling of the brightness and the opacity of the series
804
+ color, e.g.
805
+
806
+ { colors: [{ opacity: 0.8 }, { brightness: 0.6, opacity: 0.8 } ] }
807
+
808
+ where the first color simply has its alpha scaled, whereas the second
809
+ is also darkened. For instance, for bars the following makes the bars
810
+ gradually disappear, without outline:
811
+
812
+ bars: {
813
+ show: true,
814
+ lineWidth: 0,
815
+ fill: true,
816
+ fillColor: { colors: [ { opacity: 0.8 }, { opacity: 0.1 } ] }
817
+ }
818
+
819
+ Flot currently only supports vertical gradients drawn from top to
820
+ bottom because that's what works with IE.
821
+
822
+
823
+ Plot Methods
824
+ ------------
825
+
826
+ The Plot object returned from the plot function has some methods you
827
+ can call:
828
+
829
+ - highlight(series, datapoint)
830
+
831
+ Highlight a specific datapoint in the data series. You can either
832
+ specify the actual objects, e.g. if you got them from a
833
+ "plotclick" event, or you can specify the indices, e.g.
834
+ highlight(1, 3) to highlight the fourth point in the second series
835
+ (remember, zero-based indexing).
836
+
837
+
838
+ - unhighlight(series, datapoint) or unhighlight()
839
+
840
+ Remove the highlighting of the point, same parameters as
841
+ highlight.
842
+
843
+ If you call unhighlight with no parameters, e.g. as
844
+ plot.unhighlight(), all current highlights are removed.
845
+
846
+
847
+ - setData(data)
848
+
849
+ You can use this to reset the data used. Note that axis scaling,
850
+ ticks, legend etc. will not be recomputed (use setupGrid() to do
851
+ that). You'll probably want to call draw() afterwards.
852
+
853
+ You can use this function to speed up redrawing a small plot if
854
+ you know that the axes won't change. Put in the new data with
855
+ setData(newdata), call draw(), and you're good to go. Note that
856
+ for large datasets, almost all the time is consumed in draw()
857
+ plotting the data so in this case don't bother.
858
+
859
+
860
+ - setupGrid()
861
+
862
+ Recalculate and set axis scaling, ticks, legend etc.
863
+
864
+ Note that because of the drawing model of the canvas, this
865
+ function will immediately redraw (actually reinsert in the DOM)
866
+ the labels and the legend, but not the actual tick lines because
867
+ they're drawn on the canvas. You need to call draw() to get the
868
+ canvas redrawn.
869
+
870
+ - draw()
871
+
872
+ Redraws the plot canvas.
873
+
874
+ - triggerRedrawOverlay()
875
+
876
+ Schedules an update of an overlay canvas used for drawing
877
+ interactive things like a selection and point highlights. This
878
+ is mostly useful for writing plugins. The redraw doesn't happen
879
+ immediately, instead a timer is set to catch multiple successive
880
+ redraws (e.g. from a mousemove). You can get to the overlay by
881
+ setting up a drawOverlay hook.
882
+
883
+ - width()/height()
884
+
885
+ Gets the width and height of the plotting area inside the grid.
886
+ This is smaller than the canvas or placeholder dimensions as some
887
+ extra space is needed (e.g. for labels).
888
+
889
+ - offset()
890
+
891
+ Returns the offset of the plotting area inside the grid relative
892
+ to the document, useful for instance for calculating mouse
893
+ positions (event.pageX/Y minus this offset is the pixel position
894
+ inside the plot).
895
+
896
+ - pointOffset({ x: xpos, y: ypos })
897
+
898
+ Returns the calculated offset of the data point at (x, y) in data
899
+ space within the placeholder div. If you are working with multiple axes, you
900
+ can specify the x and y axis references, e.g.
901
+
902
+ o = pointOffset({ x: xpos, y: ypos, xaxis: 2, yaxis: 3 })
903
+ // o.left and o.top now contains the offset within the div
904
+
905
+ - resize()
906
+
907
+ Tells Flot to resize the drawing canvas to the size of the
908
+ placeholder. You need to run setupGrid() and draw() afterwards as
909
+ canvas resizing is a destructive operation. This is used
910
+ internally by the resize plugin.
911
+
912
+ - shutdown()
913
+
914
+ Cleans up any event handlers Flot has currently registered. This
915
+ is used internally.
916
+
917
+
918
+ There are also some members that let you peek inside the internal
919
+ workings of Flot which is useful in some cases. Note that if you change
920
+ something in the objects returned, you're changing the objects used by
921
+ Flot to keep track of its state, so be careful.
922
+
923
+ - getData()
924
+
925
+ Returns an array of the data series currently used in normalized
926
+ form with missing settings filled in according to the global
927
+ options. So for instance to find out what color Flot has assigned
928
+ to the data series, you could do this:
929
+
930
+ var series = plot.getData();
931
+ for (var i = 0; i < series.length; ++i)
932
+ alert(series[i].color);
933
+
934
+ A notable other interesting field besides color is datapoints
935
+ which has a field "points" with the normalized data points in a
936
+ flat array (the field "pointsize" is the increment in the flat
937
+ array to get to the next point so for a dataset consisting only of
938
+ (x,y) pairs it would be 2).
939
+
940
+ - getAxes()
941
+
942
+ Gets an object with the axes. The axes are returned as the
943
+ attributes of the object, so for instance getAxes().xaxis is the
944
+ x axis.
945
+
946
+ Various things are stuffed inside an axis object, e.g. you could
947
+ use getAxes().xaxis.ticks to find out what the ticks are for the
948
+ xaxis. Two other useful attributes are p2c and c2p, functions for
949
+ transforming from data point space to the canvas plot space and
950
+ back. Both returns values that are offset with the plot offset.
951
+ Check the Flot source code for the complete set of attributes (or
952
+ output an axis with console.log() and inspect it).
953
+
954
+ With multiple axes, the extra axes are returned as x2axis, x3axis,
955
+ etc., e.g. getAxes().y2axis is the second y axis. You can check
956
+ y2axis.used to see whether the axis is associated with any data
957
+ points and y2axis.show to see if it is currently shown.
958
+
959
+ - getPlaceholder()
960
+
961
+ Returns placeholder that the plot was put into. This can be useful
962
+ for plugins for adding DOM elements or firing events.
963
+
964
+ - getCanvas()
965
+
966
+ Returns the canvas used for drawing in case you need to hack on it
967
+ yourself. You'll probably need to get the plot offset too.
968
+
969
+ - getPlotOffset()
970
+
971
+ Gets the offset that the grid has within the canvas as an object
972
+ with distances from the canvas edges as "left", "right", "top",
973
+ "bottom". I.e., if you draw a circle on the canvas with the center
974
+ placed at (left, top), its center will be at the top-most, left
975
+ corner of the grid.
976
+
977
+ - getOptions()
978
+
979
+ Gets the options for the plot, normalized, with default values
980
+ filled in. You get a reference to actual values used by Flot, so
981
+ if you modify the values in here, Flot will use the new values.
982
+ If you change something, you probably have to call draw() or
983
+ setupGrid() or triggerRedrawOverlay() to see the change.
984
+
985
+
986
+ Hooks
987
+ =====
988
+
989
+ In addition to the public methods, the Plot object also has some hooks
990
+ that can be used to modify the plotting process. You can install a
991
+ callback function at various points in the process, the function then
992
+ gets access to the internal data structures in Flot.
993
+
994
+ Here's an overview of the phases Flot goes through:
995
+
996
+ 1. Plugin initialization, parsing options
997
+
998
+ 2. Constructing the canvases used for drawing
999
+
1000
+ 3. Set data: parsing data specification, calculating colors,
1001
+ copying raw data points into internal format,
1002
+ normalizing them, finding max/min for axis auto-scaling
1003
+
1004
+ 4. Grid setup: calculating axis spacing, ticks, inserting tick
1005
+ labels, the legend
1006
+
1007
+ 5. Draw: drawing the grid, drawing each of the series in turn
1008
+
1009
+ 6. Setting up event handling for interactive features
1010
+
1011
+ 7. Responding to events, if any
1012
+
1013
+ 8. Shutdown: this mostly happens in case a plot is overwritten
1014
+
1015
+ Each hook is simply a function which is put in the appropriate array.
1016
+ You can add them through the "hooks" option, and they are also available
1017
+ after the plot is constructed as the "hooks" attribute on the returned
1018
+ plot object, e.g.
1019
+
1020
+ // define a simple draw hook
1021
+ function hellohook(plot, canvascontext) { alert("hello!"); };
1022
+
1023
+ // pass it in, in an array since we might want to specify several
1024
+ var plot = $.plot(placeholder, data, { hooks: { draw: [hellohook] } });
1025
+
1026
+ // we can now find it again in plot.hooks.draw[0] unless a plugin
1027
+ // has added other hooks
1028
+
1029
+ The available hooks are described below. All hook callbacks get the
1030
+ plot object as first parameter. You can find some examples of defined
1031
+ hooks in the plugins bundled with Flot.
1032
+
1033
+ - processOptions [phase 1]
1034
+
1035
+ function(plot, options)
1036
+
1037
+ Called after Flot has parsed and merged options. Useful in the
1038
+ instance where customizations beyond simple merging of default
1039
+ values is needed. A plugin might use it to detect that it has been
1040
+ enabled and then turn on or off other options.
1041
+
1042
+
1043
+ - processRawData [phase 3]
1044
+
1045
+ function(plot, series, data, datapoints)
1046
+
1047
+ Called before Flot copies and normalizes the raw data for the given
1048
+ series. If the function fills in datapoints.points with normalized
1049
+ points and sets datapoints.pointsize to the size of the points,
1050
+ Flot will skip the copying/normalization step for this series.
1051
+
1052
+ In any case, you might be interested in setting datapoints.format,
1053
+ an array of objects for specifying how a point is normalized and
1054
+ how it interferes with axis scaling.
1055
+
1056
+ The default format array for points is something along the lines of:
1057
+
1058
+ [
1059
+ { x: true, number: true, required: true },
1060
+ { y: true, number: true, required: true }
1061
+ ]
1062
+
1063
+ The first object means that for the first coordinate it should be
1064
+ taken into account when scaling the x axis, that it must be a
1065
+ number, and that it is required - so if it is null or cannot be
1066
+ converted to a number, the whole point will be zeroed out with
1067
+ nulls. Beyond these you can also specify "defaultValue", a value to
1068
+ use if the coordinate is null. This is for instance handy for bars
1069
+ where one can omit the third coordinate (the bottom of the bar)
1070
+ which then defaults to 0.
1071
+
1072
+
1073
+ - processDatapoints [phase 3]
1074
+
1075
+ function(plot, series, datapoints)
1076
+
1077
+ Called after normalization of the given series but before finding
1078
+ min/max of the data points. This hook is useful for implementing data
1079
+ transformations. "datapoints" contains the normalized data points in
1080
+ a flat array as datapoints.points with the size of a single point
1081
+ given in datapoints.pointsize. Here's a simple transform that
1082
+ multiplies all y coordinates by 2:
1083
+
1084
+ function multiply(plot, series, datapoints) {
1085
+ var points = datapoints.points, ps = datapoints.pointsize;
1086
+ for (var i = 0; i < points.length; i += ps)
1087
+ points[i + 1] *= 2;
1088
+ }
1089
+
1090
+ Note that you must leave datapoints in a good condition as Flot
1091
+ doesn't check it or do any normalization on it afterwards.
1092
+
1093
+
1094
+ - drawSeries [phase 5]
1095
+
1096
+ function(plot, canvascontext, series)
1097
+
1098
+ Hook for custom drawing of a single series. Called just before the
1099
+ standard drawing routine has been called in the loop that draws
1100
+ each series.
1101
+
1102
+
1103
+ - draw [phase 5]
1104
+
1105
+ function(plot, canvascontext)
1106
+
1107
+ Hook for drawing on the canvas. Called after the grid is drawn
1108
+ (unless it's disabled or grid.aboveData is set) and the series have
1109
+ been plotted (in case any points, lines or bars have been turned
1110
+ on). For examples of how to draw things, look at the source code.
1111
+
1112
+
1113
+ - bindEvents [phase 6]
1114
+
1115
+ function(plot, eventHolder)
1116
+
1117
+ Called after Flot has setup its event handlers. Should set any
1118
+ necessary event handlers on eventHolder, a jQuery object with the
1119
+ canvas, e.g.
1120
+
1121
+ function (plot, eventHolder) {
1122
+ eventHolder.mousedown(function (e) {
1123
+ alert("You pressed the mouse at " + e.pageX + " " + e.pageY);
1124
+ });
1125
+ }
1126
+
1127
+ Interesting events include click, mousemove, mouseup/down. You can
1128
+ use all jQuery events. Usually, the event handlers will update the
1129
+ state by drawing something (add a drawOverlay hook and call
1130
+ triggerRedrawOverlay) or firing an externally visible event for
1131
+ user code. See the crosshair plugin for an example.
1132
+
1133
+ Currently, eventHolder actually contains both the static canvas
1134
+ used for the plot itself and the overlay canvas used for
1135
+ interactive features because some versions of IE get the stacking
1136
+ order wrong. The hook only gets one event, though (either for the
1137
+ overlay or for the static canvas).
1138
+
1139
+ Note that custom plot events generated by Flot are not generated on
1140
+ eventHolder, but on the div placeholder supplied as the first
1141
+ argument to the plot call. You can get that with
1142
+ plot.getPlaceholder() - that's probably also the one you should use
1143
+ if you need to fire a custom event.
1144
+
1145
+
1146
+ - drawOverlay [phase 7]
1147
+
1148
+ function (plot, canvascontext)
1149
+
1150
+ The drawOverlay hook is used for interactive things that need a
1151
+ canvas to draw on. The model currently used by Flot works the way
1152
+ that an extra overlay canvas is positioned on top of the static
1153
+ canvas. This overlay is cleared and then completely redrawn
1154
+ whenever something interesting happens. This hook is called when
1155
+ the overlay canvas is to be redrawn.
1156
+
1157
+ "canvascontext" is the 2D context of the overlay canvas. You can
1158
+ use this to draw things. You'll most likely need some of the
1159
+ metrics computed by Flot, e.g. plot.width()/plot.height(). See the
1160
+ crosshair plugin for an example.
1161
+
1162
+
1163
+ - shutdown [phase 8]
1164
+
1165
+ function (plot, eventHolder)
1166
+
1167
+ Run when plot.shutdown() is called, which usually only happens in
1168
+ case a plot is overwritten by a new plot. If you're writing a
1169
+ plugin that adds extra DOM elements or event handlers, you should
1170
+ add a callback to clean up after you. Take a look at the section in
1171
+ PLUGINS.txt for more info.
1172
+
1173
+
1174
+ Plugins
1175
+ -------
1176
+
1177
+ Plugins extend the functionality of Flot. To use a plugin, simply
1178
+ include its Javascript file after Flot in the HTML page.
1179
+
1180
+ If you're worried about download size/latency, you can concatenate all
1181
+ the plugins you use, and Flot itself for that matter, into one big file
1182
+ (make sure you get the order right), then optionally run it through a
1183
+ Javascript minifier such as YUI Compressor.
1184
+
1185
+ Here's a brief explanation of how the plugin plumbings work:
1186
+
1187
+ Each plugin registers itself in the global array $.plot.plugins. When
1188
+ you make a new plot object with $.plot, Flot goes through this array
1189
+ calling the "init" function of each plugin and merging default options
1190
+ from the "option" attribute of the plugin. The init function gets a
1191
+ reference to the plot object created and uses this to register hooks
1192
+ and add new public methods if needed.
1193
+
1194
+ See the PLUGINS.txt file for details on how to write a plugin. As the
1195
+ above description hints, it's actually pretty easy.
1196
+
1197
+
1198
+ Version number
1199
+ --------------
1200
+
1201
+ The version number of Flot is available in $.plot.version.