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.
- data/LICENSE +20 -0
- data/README.md +6 -0
- data/Rakefile +21 -0
- data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.eot +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.svg +154 -0
- data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.ttf +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Bold-webfont.woff +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.eot +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.svg +154 -0
- data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.ttf +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.woff +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.eot +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.svg +154 -0
- data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.ttf +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Italic-webfont.woff +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.eot +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.svg +154 -0
- data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.ttf +0 -0
- data/app/assets/fonts/alchemy/LiberationSans-Regular-webfont.woff +0 -0
- data/app/assets/fonts/alchemy/Red Hat Liberation License.txt +78 -0
- data/app/assets/fonts/alchemy/overpass_bold-web.eot +0 -0
- data/app/assets/fonts/alchemy/overpass_bold-web.svg +470 -0
- data/app/assets/fonts/alchemy/overpass_bold-web.ttf +0 -0
- data/app/assets/fonts/alchemy/overpass_bold-web.woff +0 -0
- data/app/assets/fonts/alchemy/overpass_regular-web.eot +0 -0
- data/app/assets/fonts/alchemy/overpass_regular-web.svg +470 -0
- data/app/assets/fonts/alchemy/overpass_regular-web.ttf +0 -0
- data/app/assets/fonts/alchemy/overpass_regular-web.woff +0 -0
- data/app/assets/images/alchemy/icons/action-icons.png +0 -0
- data/app/assets/images/alchemy/icons/arrow_icon.png +0 -0
- data/app/assets/images/alchemy/icons/chosen-sprite.png +0 -0
- data/app/assets/images/alchemy/icons/error_icon.png +0 -0
- data/app/assets/images/alchemy/icons/objects.png +0 -0
- data/app/assets/images/alchemy/icons/spinner.gif +0 -0
- data/app/assets/images/alchemy/icons/spinner_head.gif +0 -0
- data/app/assets/images/alchemy/icons/success_icon.png +0 -0
- data/app/assets/images/alchemy/icons/warning_icon.png +0 -0
- data/app/assets/javascripts/alchemy/flash_messages.js +12 -0
- data/app/assets/javascripts/alchemy/forms.js +25 -0
- data/app/assets/javascripts/alchemy/i18n.js +36 -0
- data/app/assets/javascripts/alchemy/login.js +130 -0
- data/app/assets/javascripts/alchemy/password.js +99 -0
- data/app/assets/stylesheets/alchemy/components/_chosen.scss +423 -0
- data/app/assets/stylesheets/alchemy/components/_content.scss +58 -0
- data/app/assets/stylesheets/alchemy/components/_helpers.scss +38 -0
- data/app/assets/stylesheets/alchemy/components/_media.scss +49 -0
- data/app/assets/stylesheets/alchemy/components/_normalize.scss +448 -0
- data/app/assets/stylesheets/alchemy/components/_shared.scss +18 -0
- data/app/assets/stylesheets/alchemy/components/buttons/_buttons.scss +241 -0
- data/app/assets/stylesheets/alchemy/components/buttons/_buttons_vars.scss +10 -0
- data/app/assets/stylesheets/alchemy/components/flash_messages/_flash_messages.scss +93 -0
- data/app/assets/stylesheets/alchemy/components/flash_messages/_flash_messages_vars.scss +3 -0
- data/app/assets/stylesheets/alchemy/components/fonts/_liberation.scss +44 -0
- data/app/assets/stylesheets/alchemy/components/fonts/_overpass.scss +24 -0
- data/app/assets/stylesheets/alchemy/components/footer/_footer.scss +53 -0
- data/app/assets/stylesheets/alchemy/components/footer/_footer_vars.scss +4 -0
- data/app/assets/stylesheets/alchemy/components/forms/_forms.scss +536 -0
- data/app/assets/stylesheets/alchemy/components/forms/_forms_ie.scss +45 -0
- data/app/assets/stylesheets/alchemy/components/forms/_forms_mixins.scss +18 -0
- data/app/assets/stylesheets/alchemy/components/forms/_forms_responsive.scss +161 -0
- data/app/assets/stylesheets/alchemy/components/forms/_forms_vars.scss +25 -0
- data/app/assets/stylesheets/alchemy/components/header/_header.scss +214 -0
- data/app/assets/stylesheets/alchemy/components/header/_header_vars.scss +11 -0
- data/app/assets/stylesheets/alchemy/components/login/_login.scss +169 -0
- data/app/assets/stylesheets/alchemy/components/login/_login_mixins.scss +7 -0
- data/app/assets/stylesheets/alchemy/components/login/_login_vars.scss +19 -0
- data/app/assets/stylesheets/alchemy/components/sprites/_sprites.scss +110 -0
- data/app/assets/stylesheets/alchemy/components/sprites/_sprites_mixins.scss +9 -0
- data/app/assets/stylesheets/alchemy/components/text/_text.scss +30 -0
- data/app/assets/stylesheets/alchemy/components/text/_text_vars.scss +1 -0
- data/app/assets/stylesheets/alchemy/composites/content_elements.scss +6 -0
- data/app/assets/stylesheets/alchemy/composites/login.scss +9 -0
- data/app/assets/stylesheets/alchemy/composites/shell.scss +4 -0
- data/app/assets/stylesheets/alchemy/partials/_base.scss +8 -0
- data/app/assets/stylesheets/alchemy/partials/_colors.scss +99 -0
- data/app/assets/stylesheets/alchemy/partials/_mixins.scss +24 -0
- data/app/assets/stylesheets/alchemy/partials/_vars.scss +31 -0
- data/app/helpers/alchemy/gettext_translations.rb +27 -0
- data/app/helpers/alchemy/layout_helper.rb +19 -0
- data/app/helpers/alchemy/rails_translations.rb +21 -0
- data/app/helpers/alchemy/translation_helper.rb +19 -0
- data/app/views/alchemy/layouts/_base.haml +20 -0
- data/app/views/alchemy/layouts/_change_password_layout.html.haml +20 -0
- data/app/views/alchemy/layouts/_common_i18n.haml +4 -0
- data/app/views/alchemy/layouts/_header_layout.haml +13 -0
- data/app/views/alchemy/layouts/_login_layout.html.haml +58 -0
- data/app/views/alchemy/layouts/_user_session_layout.haml +17 -0
- data/app/views/alchemy/layouts/shell_layout.haml +10 -0
- data/lib/alchemy.rb +6 -0
- data/lib/alchemy/version.rb +3 -0
- data/test/alchemy_test.rb +7 -0
- data/test/test_helper.rb +9 -0
- data/vendor/assets/javascripts/alchemy/html5shiv.js +298 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- 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
- 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
- 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
- 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
- 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
- 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
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_8f8f8f_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_97baed_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/css/custom-theme/jquery-ui-1.8.11.custom.css +573 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/AUTHORS.txt +30 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/GPL-LICENSE.txt +278 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/MIT-LICENSE.txt +25 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/collapsible.html +57 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/custom-icons.html +69 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/default.html +85 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/fillspace.html +76 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/hoverintent.html +134 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/index.html +25 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/mouseover.html +57 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/no-auto-height.html +60 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/accordion/sortable.html +83 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/addClass/default.html +52 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/addClass/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/animate/default.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/animate/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/categories.html +71 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/combobox.html +171 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/custom-data.html +95 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/default.html +64 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/folding.html +62 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/jquery_32x32.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/jqueryui_32x32.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/transparent_1x1.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/index.html +27 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/london.xml +114 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/maxheight.html +79 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/multiple-remote.html +84 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/multiple.html +99 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote-jsonp.html +86 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote-with-cache.html +59 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/remote.html +59 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/search.php +640 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/autocomplete/xml.html +72 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/checkbox.html +44 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/default.html +38 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/icons.html +56 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/index.html +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/radio.html +39 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/splitbutton.html +55 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/button/toolbar.html +120 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/alt-field.html +36 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/animation.html +58 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/buttonbar.html +35 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/date-formats.html +47 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/date-range.html +49 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/default.html +33 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/dropdown-month-year.html +36 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/icon-trigger.html +37 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/images/calendar.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/index.html +31 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/inline.html +33 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/localization.html +162 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/min-max.html +33 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/multiple-calendars.html +36 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/other-months.html +37 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/datepicker/show-week.html +39 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/demos.css +334 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/animated.html +56 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/default.html +54 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/index.html +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-confirmation.html +69 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-form.html +167 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal-message.html +71 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/dialog/modal.html +60 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/constrain-movement.html +69 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/cursor-style.html +49 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/default.html +39 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/delay-start.html +45 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/events.html +77 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/handle.html +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/index.html +28 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/revert.html +44 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/scroll.html +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/snap-to.html +68 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/sortable.html +57 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/draggable/visual-feedback.html +77 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/accepted-elements.html +60 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/default.html +53 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/index.html +24 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/photo-manager.html +184 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/propagation.html +80 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/revert.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/shopping-cart.html +101 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/droppable/visual-feedback.html +78 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/default.html +109 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/easing.html +108 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/effect/index.html +19 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/hide/default.html +102 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/hide/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/calendar.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-config-on.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/demo-spindown-open.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/icon-docs-info.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/images/pbar-ani.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/index.html +321 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/cycler.html +122 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/default.html +153 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/earth.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/flight.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/images/rocket.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/position/index.html +19 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/animated.html +44 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/default.html +35 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/images/pbar-ani.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/index.html +20 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/progressbar/resize.html +40 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/removeClass/default.html +52 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/removeClass/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/animate.html +43 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/aspect-ratio.html +42 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/constrain-area.html +47 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/default.html +40 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/delay-start.html +52 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/helper.html +43 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/index.html +28 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/max-min.html +45 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/snap-to-grid.html +42 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/synchronous-resize.html +49 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/textarea.html +41 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/resizable/visual-feedback.html +43 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/default.html +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/display-grid.html +55 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/index.html +20 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/selectable/serialize.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/show/default.html +104 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/show/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/colorpicker.html +95 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/default.html +37 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/hotelrooms.html +59 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/index.html +29 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/multiple-vertical.html +77 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/range-vertical.html +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/range.html +52 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/rangemax.html +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/rangemin.html +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/side-scroll.html +140 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/slider-vertical.html +52 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/steps.html +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/slider/tabs.html +67 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/connect-lists-through-tabs.html +78 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/connect-lists.html +58 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/default.html +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/delay-start.html +67 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/display-grid.html +54 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/empty-lists.html +69 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/index.html +26 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/items.html +70 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/placeholder.html +56 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/sortable/portlets.html +96 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/switchClass/default.html +47 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/switchClass/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax.html +53 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content1.html +4 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content2.html +4 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content3-slow.php +7 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/ajax/content4-broken.php +3 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/bottom.html +60 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/collapsible.html +55 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/cookie.html +56 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/default.html +49 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/index.html +25 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/manipulation.html +124 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/mouseover.html +53 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/sortable.html +58 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/tabs/vertical.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggle/default.html +94 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggle/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggleClass/default.html +46 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/demos/toggleClass/index.html +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/accordion.html +1017 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/addClass.html +109 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/animate.html +78 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/autocomplete.html +833 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/button.html +500 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/datepicker.html +2570 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/dialog.html +1698 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/draggable.html +1577 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/droppable.html +829 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/effect.html +143 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/hide.html +144 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/position.html +227 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/progressbar.html +460 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/removeClass.html +113 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/resizable.html +1201 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/selectable.html +848 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/show.html +144 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/slider.html +860 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/sortable.html +1952 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/switchClass.html +129 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/tabs.html +1549 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/toggle.html +144 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/docs/toggleClass.html +111 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.bgiframe-2.1.2.js +39 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.cookie.js +89 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/jquery.metadata.js +122 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/qunit.css +153 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/external/qunit.js +1261 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/jquery-1.5.1.js +8316 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.accordion.css +19 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.all.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.autocomplete.css +53 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.base.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.button.css +38 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.core.css +41 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.datepicker.css +68 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.dialog.css +21 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.progressbar.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.resizable.css +20 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.selectable.css +10 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.slider.css +24 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.tabs.css +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/base/jquery.ui.theme.css +252 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_8f8f8f_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_97baed_256x240.png +0 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
- 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
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.accordion.css +19 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.all.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.autocomplete.css +53 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.base.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.button.css +38 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.core.css +41 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.datepicker.css +68 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.dialog.css +21 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.progressbar.css +11 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.resizable.css +20 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.selectable.css +10 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.slider.css +24 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.tabs.css +18 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/themes/custom-theme/jquery.ui.theme.css +254 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery-ui-i18n.js +1379 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-kz.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery-ui-1.8.11.custom.js +11577 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.blind.js +49 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.bounce.js +78 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.clip.js +54 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.core.js +747 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.drop.js +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.explode.js +79 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.fade.js +32 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.fold.js +56 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.highlight.js +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.pulsate.js +51 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.scale.js +178 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.shake.js +57 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.slide.js +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.effects.transfer.js +45 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.accordion.js +611 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.autocomplete.js +612 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.button.js +387 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.core.js +308 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.datepicker.js +1773 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.dialog.js +857 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.draggable.js +799 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.droppable.js +285 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.mouse.js +156 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.position.js +252 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.progressbar.js +108 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.resizable.js +812 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.selectable.js +266 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.slider.js +682 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.sortable.js +1073 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.tabs.js +758 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/jquery.ui.widget.js +262 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.blind.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.bounce.min.js +15 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.clip.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.core.min.js +30 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.drop.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.explode.min.js +15 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.fade.min.js +13 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.fold.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.highlight.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.pulsate.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.scale.min.js +20 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.shake.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.slide.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.effects.transfer.min.js +14 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.accordion.min.js +30 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.autocomplete.min.js +32 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.button.min.js +25 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.core.min.js +17 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.datepicker.min.js +82 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.dialog.min.js +40 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.draggable.min.js +50 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.droppable.min.js +26 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.mouse.min.js +17 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.position.min.js +16 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.progressbar.min.js +16 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.resizable.min.js +47 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.selectable.min.js +22 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.slider.min.js +33 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.sortable.min.js +60 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.tabs.min.js +35 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/ui/minified/jquery.ui.widget.min.js +15 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/development-bundle/version.txt +1 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/js/jquery-1.5.1.min.js +16 -0
- data/vendor/assets/javascripts/alchemy/jquery-ui-1.8.11.custom/js/jquery-ui-1.8.11.custom.min.js +783 -0
- data/vendor/assets/javascripts/alchemy/jquery/jquery-1.6.2.js +8981 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/chosen.jquery.js +1003 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/API.txt +1201 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/FAQ.txt +76 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/LICENSE.txt +22 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/Makefile +9 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/NEWS.txt +508 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/PLUGINS.txt +137 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/README.txt +90 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/ajax.html +143 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/annotating.html +75 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-down.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-left.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-right.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/arrow-up.gif +0 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/basic.html +38 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-1.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-2.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-3.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-4.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth-5.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-eu-gdp-growth.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-japan-gdp-growth.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/data-usa-gdp-growth.json +4 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/graph-types.html +75 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/hs-2004-27-a-large_web.jpg +0 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/image.html +45 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/index.html +44 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/interacting-axes.html +97 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/interacting.html +93 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/layout.css +6 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/multiple-axes.html +60 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/navigate.html +118 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/percentiles.html +57 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/pie.html +756 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/realtime.html +83 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/resize.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/selection.html +114 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/setting-options.html +61 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/stacking.html +77 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/symbols.html +49 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/thresholding.html +54 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/time.html +71 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/tracking.html +95 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/turning-series.html +98 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/visitors.html +90 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/examples/zooming.html +98 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/excanvas.js +1427 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/excanvas.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.colorhelpers.js +179 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.colorhelpers.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.crosshair.js +167 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.crosshair.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.fillbetween.js +183 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.fillbetween.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.image.js +238 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.image.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.js +2599 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.min.js +6 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.navigate.js +336 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.navigate.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.pie.js +750 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.pie.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.resize.js +60 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.resize.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.selection.js +344 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.selection.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.stack.js +184 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.stack.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.symbol.js +70 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.symbol.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.threshold.js +103 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/flot-0.7/jquery.flot.threshold.min.js +1 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/blank.svg +3 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/custom_test.js +67 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.css +9 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.js +1101 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.min.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svg.pack.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.js +396 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.min.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svgfilter.pack.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.js +1337 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.min.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/jquery.svggraph.pack.js +7 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/lion.svg +161 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery-svg/test.js +714 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ajaxfileupload.js +205 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ba-bbq.js +1137 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ba-resize.js +246 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.cookie.js +92 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.easing.1.3.js +205 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.fancyqueries.js +106 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.flash.js +288 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.form.js +964 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.hoverIntent.js +106 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jeditable.ajaxupload.js +62 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jeditable.js +556 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jnotify.js +210 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jscrollpane.js +1390 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.jscrollpane.min.js +11 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.linkHover.js +89 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.loadmask.min.js +10 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.mousewheel.js +78 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.multiselect.filter.js +176 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.multiselect.js +668 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.pack.js +11 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.periodicalupdater.js +175 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.sortElements.js +75 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.sparkline.min.js +94 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.text-overflow.js +60 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.timepickr.js +214 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.timers.js +142 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.tipsy.js +358 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.treeTable.js +226 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.trunk8.js +203 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ui.multiselect.js +338 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.ui.totop.js +58 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/jquery.uitablefilter.js +95 -0
- data/vendor/assets/javascripts/alchemy/jquery/plugins/ui.spinner.js +683 -0
- data/vendor/assets/javascripts/alchemy/rails.js +331 -0
- data/vendor/assets/javascripts/alchemy/underscore-1.3.1.js +999 -0
- metadata +683 -0
@@ -0,0 +1,205 @@
|
|
1
|
+
jQuery.extend({
|
2
|
+
|
3
|
+
createUploadIframe: function(id, uri)
|
4
|
+
{
|
5
|
+
//create frame
|
6
|
+
var frameId = 'jUploadFrame' + id;
|
7
|
+
|
8
|
+
if(window.ActiveXObject) {
|
9
|
+
var io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
|
10
|
+
if(typeof uri== 'boolean'){
|
11
|
+
io.src = 'javascript:false';
|
12
|
+
}
|
13
|
+
else if(typeof uri== 'string'){
|
14
|
+
io.src = uri;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
else {
|
18
|
+
var io = document.createElement('iframe');
|
19
|
+
io.id = frameId;
|
20
|
+
io.name = frameId;
|
21
|
+
}
|
22
|
+
io.style.position = 'absolute';
|
23
|
+
io.style.top = '-1000px';
|
24
|
+
io.style.left = '-1000px';
|
25
|
+
|
26
|
+
document.body.appendChild(io);
|
27
|
+
|
28
|
+
return io
|
29
|
+
},
|
30
|
+
createUploadForm: function(id, fileElementId)
|
31
|
+
{
|
32
|
+
//create form
|
33
|
+
var formId = 'jUploadForm' + id;
|
34
|
+
var fileId = 'jUploadFile' + id;
|
35
|
+
var form = $('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
|
36
|
+
var oldElement = $('#' + fileElementId);
|
37
|
+
var newElement = $(oldElement).clone();
|
38
|
+
$(oldElement).attr('id', fileId);
|
39
|
+
$(oldElement).before(newElement);
|
40
|
+
$(oldElement).appendTo(form);
|
41
|
+
//set attributes
|
42
|
+
$(form).css('position', 'absolute');
|
43
|
+
$(form).css('top', '-1200px');
|
44
|
+
$(form).css('left', '-1200px');
|
45
|
+
$(form).appendTo('body');
|
46
|
+
return form;
|
47
|
+
},
|
48
|
+
|
49
|
+
ajaxFileUpload: function(s) {
|
50
|
+
// TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
|
51
|
+
s = jQuery.extend({}, jQuery.ajaxSettings, s);
|
52
|
+
var id = new Date().getTime()
|
53
|
+
var form = jQuery.createUploadForm(id, s.fileElementId);
|
54
|
+
var io = jQuery.createUploadIframe(id, s.secureuri);
|
55
|
+
var frameId = 'jUploadFrame' + id;
|
56
|
+
var formId = 'jUploadForm' + id;
|
57
|
+
// Watch for a new set of requests
|
58
|
+
if ( s.global && ! jQuery.active++ )
|
59
|
+
{
|
60
|
+
jQuery.event.trigger( "ajaxStart" );
|
61
|
+
}
|
62
|
+
var requestDone = false;
|
63
|
+
// Create the request object
|
64
|
+
var xml = {}
|
65
|
+
if ( s.global )
|
66
|
+
jQuery.event.trigger("ajaxSend", [xml, s]);
|
67
|
+
// Wait for a response to come back
|
68
|
+
var uploadCallback = function(isTimeout)
|
69
|
+
{
|
70
|
+
var io = document.getElementById(frameId);
|
71
|
+
try
|
72
|
+
{
|
73
|
+
if(io.contentWindow)
|
74
|
+
{
|
75
|
+
xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null;
|
76
|
+
xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
|
77
|
+
|
78
|
+
}else if(io.contentDocument)
|
79
|
+
{
|
80
|
+
xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null;
|
81
|
+
xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document;
|
82
|
+
}
|
83
|
+
}catch(e)
|
84
|
+
{
|
85
|
+
jQuery.handleError(s, xml, null, e);
|
86
|
+
}
|
87
|
+
if ( xml || isTimeout == "timeout")
|
88
|
+
{
|
89
|
+
requestDone = true;
|
90
|
+
var status;
|
91
|
+
try {
|
92
|
+
status = isTimeout != "timeout" ? "success" : "error";
|
93
|
+
// Make sure that the request was successful or notmodified
|
94
|
+
if ( status != "error" )
|
95
|
+
{
|
96
|
+
// process the data (runs the xml through httpData regardless of callback)
|
97
|
+
var data = jQuery.uploadHttpData( xml, s.dataType );
|
98
|
+
// If a local callback was specified, fire it and pass it the data
|
99
|
+
if ( s.success )
|
100
|
+
s.success( data, status );
|
101
|
+
|
102
|
+
// Fire the global callback
|
103
|
+
if( s.global )
|
104
|
+
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
|
105
|
+
} else
|
106
|
+
jQuery.handleError(s, xml, status);
|
107
|
+
} catch(e)
|
108
|
+
{
|
109
|
+
status = "error";
|
110
|
+
jQuery.handleError(s, xml, status, e);
|
111
|
+
}
|
112
|
+
|
113
|
+
// The request was completed
|
114
|
+
if( s.global )
|
115
|
+
jQuery.event.trigger( "ajaxComplete", [xml, s] );
|
116
|
+
|
117
|
+
// Handle the global AJAX counter
|
118
|
+
if ( s.global && ! --jQuery.active )
|
119
|
+
jQuery.event.trigger( "ajaxStop" );
|
120
|
+
|
121
|
+
// Process result
|
122
|
+
if ( s.complete )
|
123
|
+
s.complete(xml, status);
|
124
|
+
|
125
|
+
jQuery(io).unbind()
|
126
|
+
|
127
|
+
setTimeout(function()
|
128
|
+
{ try
|
129
|
+
{
|
130
|
+
$(io).remove();
|
131
|
+
$(form).remove();
|
132
|
+
|
133
|
+
} catch(e)
|
134
|
+
{
|
135
|
+
jQuery.handleError(s, xml, null, e);
|
136
|
+
}
|
137
|
+
|
138
|
+
}, 100)
|
139
|
+
|
140
|
+
xml = null
|
141
|
+
|
142
|
+
}
|
143
|
+
}
|
144
|
+
// Timeout checker
|
145
|
+
if ( s.timeout > 0 )
|
146
|
+
{
|
147
|
+
setTimeout(function(){
|
148
|
+
// Check to see if the request is still happening
|
149
|
+
if( !requestDone ) uploadCallback( "timeout" );
|
150
|
+
}, s.timeout);
|
151
|
+
}
|
152
|
+
try
|
153
|
+
{
|
154
|
+
// var io = $('#' + frameId);
|
155
|
+
var form = $('#' + formId);
|
156
|
+
$(form).attr('action', s.url);
|
157
|
+
$(form).attr('method', 'POST');
|
158
|
+
$(form).attr('target', frameId);
|
159
|
+
if(typeof(AUTH_TOKEN) != "undefined")
|
160
|
+
{
|
161
|
+
$(form).append('<input type="hidden" value="'+AUTH_TOKEN+'" name="authenticity_token"/>');
|
162
|
+
}
|
163
|
+
if(form.encoding)
|
164
|
+
{
|
165
|
+
form.encoding = 'multipart/form-data';
|
166
|
+
}
|
167
|
+
else
|
168
|
+
{
|
169
|
+
form.enctype = 'multipart/form-data';
|
170
|
+
}
|
171
|
+
$(form).submit();
|
172
|
+
|
173
|
+
} catch(e)
|
174
|
+
{
|
175
|
+
jQuery.handleError(s, xml, null, e);
|
176
|
+
}
|
177
|
+
if(window.attachEvent){
|
178
|
+
document.getElementById(frameId).attachEvent('onload', uploadCallback);
|
179
|
+
}
|
180
|
+
else{
|
181
|
+
document.getElementById(frameId).addEventListener('load', uploadCallback, false);
|
182
|
+
}
|
183
|
+
return {abort: function () {}};
|
184
|
+
|
185
|
+
},
|
186
|
+
|
187
|
+
uploadHttpData: function( r, type ) {
|
188
|
+
var data = !type;
|
189
|
+
data = type == "xml" || data ? r.responseXML : r.responseText;
|
190
|
+
// If the type is "script", eval it in global context
|
191
|
+
if ( type == "script" )
|
192
|
+
jQuery.globalEval( data );
|
193
|
+
// Get the JavaScript object, if JSON is used.
|
194
|
+
if ( type == "json" )
|
195
|
+
eval( "data = " + data );
|
196
|
+
// evaluate scripts within html
|
197
|
+
if ( type == "html" )
|
198
|
+
jQuery("<div>").html(data);
|
199
|
+
//jQuery("<div>").html(data).evalScripts();
|
200
|
+
//alert($('param', data).each(function(){alert($(this).attr('value'));}));
|
201
|
+
return data;
|
202
|
+
}
|
203
|
+
})
|
204
|
+
|
205
|
+
|
@@ -0,0 +1,1137 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery BBQ: Back Button & Query Library - v1.2.1 - 2/17/2010
|
3
|
+
* http://benalman.com/projects/jquery-bbq-plugin/
|
4
|
+
*
|
5
|
+
* Copyright (c) 2010 "Cowboy" Ben Alman
|
6
|
+
* Dual licensed under the MIT and GPL licenses.
|
7
|
+
* http://benalman.com/about/license/
|
8
|
+
*/
|
9
|
+
|
10
|
+
// Script: jQuery BBQ: Back Button & Query Library
|
11
|
+
//
|
12
|
+
// *Version: 1.2.1, Last updated: 2/17/2010*
|
13
|
+
//
|
14
|
+
// Project Home - http://benalman.com/projects/jquery-bbq-plugin/
|
15
|
+
// GitHub - http://github.com/cowboy/jquery-bbq/
|
16
|
+
// Source - http://github.com/cowboy/jquery-bbq/raw/master/jquery.ba-bbq.js
|
17
|
+
// (Minified) - http://github.com/cowboy/jquery-bbq/raw/master/jquery.ba-bbq.min.js (4.0kb)
|
18
|
+
//
|
19
|
+
// About: License
|
20
|
+
//
|
21
|
+
// Copyright (c) 2010 "Cowboy" Ben Alman,
|
22
|
+
// Dual licensed under the MIT and GPL licenses.
|
23
|
+
// http://benalman.com/about/license/
|
24
|
+
//
|
25
|
+
// About: Examples
|
26
|
+
//
|
27
|
+
// These working examples, complete with fully commented code, illustrate a few
|
28
|
+
// ways in which this plugin can be used.
|
29
|
+
//
|
30
|
+
// Basic AJAX - http://benalman.com/code/projects/jquery-bbq/examples/fragment-basic/
|
31
|
+
// Advanced AJAX - http://benalman.com/code/projects/jquery-bbq/examples/fragment-advanced/
|
32
|
+
// jQuery UI Tabs - http://benalman.com/code/projects/jquery-bbq/examples/fragment-jquery-ui-tabs/
|
33
|
+
// Deparam - http://benalman.com/code/projects/jquery-bbq/examples/deparam/
|
34
|
+
//
|
35
|
+
// About: Support and Testing
|
36
|
+
//
|
37
|
+
// Information about what version or versions of jQuery this plugin has been
|
38
|
+
// tested with, what browsers it has been tested in, and where the unit tests
|
39
|
+
// reside (so you can test it yourself).
|
40
|
+
//
|
41
|
+
// jQuery Versions - 1.3.2, 1.4.1, 1.4.2
|
42
|
+
// Browsers Tested - Internet Explorer 6-8, Firefox 2-3.7, Safari 3-4,
|
43
|
+
// Chrome 4-5, Opera 9.6-10.1.
|
44
|
+
// Unit Tests - http://benalman.com/code/projects/jquery-bbq/unit/
|
45
|
+
//
|
46
|
+
// About: Release History
|
47
|
+
//
|
48
|
+
// 1.2.1 - (2/17/2010) Actually fixed the stale window.location Safari bug from
|
49
|
+
// <jQuery hashchange event> in BBQ, which was the main reason for the
|
50
|
+
// previous release!
|
51
|
+
// 1.2 - (2/16/2010) Integrated <jQuery hashchange event> v1.2, which fixes a
|
52
|
+
// Safari bug, the event can now be bound before DOM ready, and IE6/7
|
53
|
+
// page should no longer scroll when the event is first bound. Also
|
54
|
+
// added the <jQuery.param.fragment.noEscape> method, and reworked the
|
55
|
+
// <hashchange event (BBQ)> internal "add" method to be compatible with
|
56
|
+
// changes made to the jQuery 1.4.2 special events API.
|
57
|
+
// 1.1.1 - (1/22/2010) Integrated <jQuery hashchange event> v1.1, which fixes an
|
58
|
+
// obscure IE8 EmulateIE7 meta tag compatibility mode bug.
|
59
|
+
// 1.1 - (1/9/2010) Broke out the jQuery BBQ event.special <hashchange event>
|
60
|
+
// functionality into a separate plugin for users who want just the
|
61
|
+
// basic event & back button support, without all the extra awesomeness
|
62
|
+
// that BBQ provides. This plugin will be included as part of jQuery BBQ,
|
63
|
+
// but also be available separately. See <jQuery hashchange event>
|
64
|
+
// plugin for more information. Also added the <jQuery.bbq.removeState>
|
65
|
+
// method and added additional <jQuery.deparam> examples.
|
66
|
+
// 1.0.3 - (12/2/2009) Fixed an issue in IE 6 where location.search and
|
67
|
+
// location.hash would report incorrectly if the hash contained the ?
|
68
|
+
// character. Also <jQuery.param.querystring> and <jQuery.param.fragment>
|
69
|
+
// will no longer parse params out of a URL that doesn't contain ? or #,
|
70
|
+
// respectively.
|
71
|
+
// 1.0.2 - (10/10/2009) Fixed an issue in IE 6/7 where the hidden IFRAME caused
|
72
|
+
// a "This page contains both secure and nonsecure items." warning when
|
73
|
+
// used on an https:// page.
|
74
|
+
// 1.0.1 - (10/7/2009) Fixed an issue in IE 8. Since both "IE7" and "IE8
|
75
|
+
// Compatibility View" modes erroneously report that the browser
|
76
|
+
// supports the native window.onhashchange event, a slightly more
|
77
|
+
// robust test needed to be added.
|
78
|
+
// 1.0 - (10/2/2009) Initial release
|
79
|
+
|
80
|
+
(function($,window){
|
81
|
+
'$:nomunge'; // Used by YUI compressor.
|
82
|
+
|
83
|
+
// Some convenient shortcuts.
|
84
|
+
var undefined,
|
85
|
+
aps = Array.prototype.slice,
|
86
|
+
decode = decodeURIComponent,
|
87
|
+
|
88
|
+
// Method / object references.
|
89
|
+
jq_param = $.param,
|
90
|
+
jq_param_fragment,
|
91
|
+
jq_deparam,
|
92
|
+
jq_deparam_fragment,
|
93
|
+
jq_bbq = $.bbq = $.bbq || {},
|
94
|
+
jq_bbq_pushState,
|
95
|
+
jq_bbq_getState,
|
96
|
+
jq_elemUrlAttr,
|
97
|
+
jq_event_special = $.event.special,
|
98
|
+
|
99
|
+
// Reused strings.
|
100
|
+
str_hashchange = 'hashchange',
|
101
|
+
str_querystring = 'querystring',
|
102
|
+
str_fragment = 'fragment',
|
103
|
+
str_elemUrlAttr = 'elemUrlAttr',
|
104
|
+
str_location = 'location',
|
105
|
+
str_href = 'href',
|
106
|
+
str_src = 'src',
|
107
|
+
|
108
|
+
// Reused RegExp.
|
109
|
+
re_trim_querystring = /^.*\?|#.*$/g,
|
110
|
+
re_trim_fragment = /^.*\#/,
|
111
|
+
re_no_escape,
|
112
|
+
|
113
|
+
// Used by jQuery.elemUrlAttr.
|
114
|
+
elemUrlAttr_cache = {};
|
115
|
+
|
116
|
+
// A few commonly used bits, broken out to help reduce minified file size.
|
117
|
+
|
118
|
+
function is_string( arg ) {
|
119
|
+
return typeof arg === 'string';
|
120
|
+
};
|
121
|
+
|
122
|
+
// Why write the same function twice? Let's curry! Mmmm, curry..
|
123
|
+
|
124
|
+
function curry( func ) {
|
125
|
+
var args = aps.call( arguments, 1 );
|
126
|
+
|
127
|
+
return function() {
|
128
|
+
return func.apply( this, args.concat( aps.call( arguments ) ) );
|
129
|
+
};
|
130
|
+
};
|
131
|
+
|
132
|
+
// Get location.hash (or what you'd expect location.hash to be) sans any
|
133
|
+
// leading #. Thanks for making this necessary, Firefox!
|
134
|
+
function get_fragment( url ) {
|
135
|
+
return url.replace( /^[^#]*#?(.*)$/, '$1' );
|
136
|
+
};
|
137
|
+
|
138
|
+
// Get location.search (or what you'd expect location.search to be) sans any
|
139
|
+
// leading #. Thanks for making this necessary, IE6!
|
140
|
+
function get_querystring( url ) {
|
141
|
+
return url.replace( /(?:^[^?#]*\?([^#]*).*$)?.*/, '$1' );
|
142
|
+
};
|
143
|
+
|
144
|
+
// Section: Param (to string)
|
145
|
+
//
|
146
|
+
// Method: jQuery.param.querystring
|
147
|
+
//
|
148
|
+
// Retrieve the query string from a URL or if no arguments are passed, the
|
149
|
+
// current window.location.
|
150
|
+
//
|
151
|
+
// Usage:
|
152
|
+
//
|
153
|
+
// > jQuery.param.querystring( [ url ] );
|
154
|
+
//
|
155
|
+
// Arguments:
|
156
|
+
//
|
157
|
+
// url - (String) A URL containing query string params to be parsed. If url
|
158
|
+
// is not passed, the current window.location is used.
|
159
|
+
//
|
160
|
+
// Returns:
|
161
|
+
//
|
162
|
+
// (String) The parsed query string, with any leading "?" removed.
|
163
|
+
//
|
164
|
+
|
165
|
+
// Method: jQuery.param.querystring (build url)
|
166
|
+
//
|
167
|
+
// Merge a URL, with or without pre-existing query string params, plus any
|
168
|
+
// object, params string or URL containing query string params into a new URL.
|
169
|
+
//
|
170
|
+
// Usage:
|
171
|
+
//
|
172
|
+
// > jQuery.param.querystring( url, params [, merge_mode ] );
|
173
|
+
//
|
174
|
+
// Arguments:
|
175
|
+
//
|
176
|
+
// url - (String) A valid URL for params to be merged into. This URL may
|
177
|
+
// contain a query string and/or fragment (hash).
|
178
|
+
// params - (String) A params string or URL containing query string params to
|
179
|
+
// be merged into url.
|
180
|
+
// params - (Object) A params object to be merged into url.
|
181
|
+
// merge_mode - (Number) Merge behavior defaults to 0 if merge_mode is not
|
182
|
+
// specified, and is as-follows:
|
183
|
+
//
|
184
|
+
// * 0: params in the params argument will override any query string
|
185
|
+
// params in url.
|
186
|
+
// * 1: any query string params in url will override params in the params
|
187
|
+
// argument.
|
188
|
+
// * 2: params argument will completely replace any query string in url.
|
189
|
+
//
|
190
|
+
// Returns:
|
191
|
+
//
|
192
|
+
// (String) Either a params string with urlencoded data or a URL with a
|
193
|
+
// urlencoded query string in the format 'a=b&c=d&e=f'.
|
194
|
+
|
195
|
+
// Method: jQuery.param.fragment
|
196
|
+
//
|
197
|
+
// Retrieve the fragment (hash) from a URL or if no arguments are passed, the
|
198
|
+
// current window.location.
|
199
|
+
//
|
200
|
+
// Usage:
|
201
|
+
//
|
202
|
+
// > jQuery.param.fragment( [ url ] );
|
203
|
+
//
|
204
|
+
// Arguments:
|
205
|
+
//
|
206
|
+
// url - (String) A URL containing fragment (hash) params to be parsed. If
|
207
|
+
// url is not passed, the current window.location is used.
|
208
|
+
//
|
209
|
+
// Returns:
|
210
|
+
//
|
211
|
+
// (String) The parsed fragment (hash) string, with any leading "#" removed.
|
212
|
+
|
213
|
+
// Method: jQuery.param.fragment (build url)
|
214
|
+
//
|
215
|
+
// Merge a URL, with or without pre-existing fragment (hash) params, plus any
|
216
|
+
// object, params string or URL containing fragment (hash) params into a new
|
217
|
+
// URL.
|
218
|
+
//
|
219
|
+
// Usage:
|
220
|
+
//
|
221
|
+
// > jQuery.param.fragment( url, params [, merge_mode ] );
|
222
|
+
//
|
223
|
+
// Arguments:
|
224
|
+
//
|
225
|
+
// url - (String) A valid URL for params to be merged into. This URL may
|
226
|
+
// contain a query string and/or fragment (hash).
|
227
|
+
// params - (String) A params string or URL containing fragment (hash) params
|
228
|
+
// to be merged into url.
|
229
|
+
// params - (Object) A params object to be merged into url.
|
230
|
+
// merge_mode - (Number) Merge behavior defaults to 0 if merge_mode is not
|
231
|
+
// specified, and is as-follows:
|
232
|
+
//
|
233
|
+
// * 0: params in the params argument will override any fragment (hash)
|
234
|
+
// params in url.
|
235
|
+
// * 1: any fragment (hash) params in url will override params in the
|
236
|
+
// params argument.
|
237
|
+
// * 2: params argument will completely replace any query string in url.
|
238
|
+
//
|
239
|
+
// Returns:
|
240
|
+
//
|
241
|
+
// (String) Either a params string with urlencoded data or a URL with a
|
242
|
+
// urlencoded fragment (hash) in the format 'a=b&c=d&e=f'.
|
243
|
+
|
244
|
+
function jq_param_sub( is_fragment, get_func, url, params, merge_mode ) {
|
245
|
+
var result,
|
246
|
+
qs,
|
247
|
+
matches,
|
248
|
+
url_params,
|
249
|
+
hash;
|
250
|
+
|
251
|
+
if ( params !== undefined ) {
|
252
|
+
// Build URL by merging params into url string.
|
253
|
+
|
254
|
+
// matches[1] = url part that precedes params, not including trailing ?/#
|
255
|
+
// matches[2] = params, not including leading ?/#
|
256
|
+
// matches[3] = if in 'querystring' mode, hash including leading #, otherwise ''
|
257
|
+
matches = url.match( is_fragment ? /^([^#]*)\#?(.*)$/ : /^([^#?]*)\??([^#]*)(#?.*)/ );
|
258
|
+
|
259
|
+
// Get the hash if in 'querystring' mode, and it exists.
|
260
|
+
hash = matches[3] || '';
|
261
|
+
|
262
|
+
if ( merge_mode === 2 && is_string( params ) ) {
|
263
|
+
// If merge_mode is 2 and params is a string, merge the fragment / query
|
264
|
+
// string into the URL wholesale, without converting it into an object.
|
265
|
+
qs = params.replace( is_fragment ? re_trim_fragment : re_trim_querystring, '' );
|
266
|
+
|
267
|
+
} else {
|
268
|
+
// Convert relevant params in url to object.
|
269
|
+
url_params = jq_deparam( matches[2] );
|
270
|
+
|
271
|
+
params = is_string( params )
|
272
|
+
|
273
|
+
// Convert passed params string into object.
|
274
|
+
? jq_deparam[ is_fragment ? str_fragment : str_querystring ]( params )
|
275
|
+
|
276
|
+
// Passed params object.
|
277
|
+
: params;
|
278
|
+
|
279
|
+
qs = merge_mode === 2 ? params // passed params replace url params
|
280
|
+
: merge_mode === 1 ? $.extend( {}, params, url_params ) // url params override passed params
|
281
|
+
: $.extend( {}, url_params, params ); // passed params override url params
|
282
|
+
|
283
|
+
// Convert params object to a string.
|
284
|
+
qs = jq_param( qs );
|
285
|
+
|
286
|
+
// Unescape characters specified via $.param.noEscape. Since only hash-
|
287
|
+
// history users have requested this feature, it's only enabled for
|
288
|
+
// fragment-related params strings.
|
289
|
+
if ( is_fragment ) {
|
290
|
+
qs = qs.replace( re_no_escape, decode );
|
291
|
+
}
|
292
|
+
}
|
293
|
+
|
294
|
+
// Build URL from the base url, querystring and hash. In 'querystring'
|
295
|
+
// mode, ? is only added if a query string exists. In 'fragment' mode, #
|
296
|
+
// is always added.
|
297
|
+
result = matches[1] + ( is_fragment ? '#' : qs || !matches[1] ? '?' : '' ) + qs + hash;
|
298
|
+
|
299
|
+
} else {
|
300
|
+
// If URL was passed in, parse params from URL string, otherwise parse
|
301
|
+
// params from window.location.
|
302
|
+
result = get_func( url !== undefined ? url : window[ str_location ][ str_href ] );
|
303
|
+
}
|
304
|
+
|
305
|
+
return result;
|
306
|
+
};
|
307
|
+
|
308
|
+
jq_param[ str_querystring ] = curry( jq_param_sub, 0, get_querystring );
|
309
|
+
jq_param[ str_fragment ] = jq_param_fragment = curry( jq_param_sub, 1, get_fragment );
|
310
|
+
|
311
|
+
// Method: jQuery.param.fragment.noEscape
|
312
|
+
//
|
313
|
+
// Specify characters that will be left unescaped when fragments are created
|
314
|
+
// or merged using <jQuery.param.fragment>, or when the fragment is modified
|
315
|
+
// using <jQuery.bbq.pushState>. This option only applies to serialized data
|
316
|
+
// object fragments, and not set-as-string fragments. Does not affect the
|
317
|
+
// query string. Defaults to ",/" (comma, forward slash).
|
318
|
+
//
|
319
|
+
// Note that this is considered a purely aesthetic option, and will help to
|
320
|
+
// create URLs that "look pretty" in the address bar or bookmarks, without
|
321
|
+
// affecting functionality in any way. That being said, be careful to not
|
322
|
+
// unescape characters that are used as delimiters or serve a special
|
323
|
+
// purpose, such as the "#?&=+" (octothorpe, question mark, ampersand,
|
324
|
+
// equals, plus) characters.
|
325
|
+
//
|
326
|
+
// Usage:
|
327
|
+
//
|
328
|
+
// > jQuery.param.fragment.noEscape( [ chars ] );
|
329
|
+
//
|
330
|
+
// Arguments:
|
331
|
+
//
|
332
|
+
// chars - (String) The characters to not escape in the fragment. If
|
333
|
+
// unspecified, defaults to empty string (escape all characters).
|
334
|
+
//
|
335
|
+
// Returns:
|
336
|
+
//
|
337
|
+
// Nothing.
|
338
|
+
|
339
|
+
jq_param_fragment.noEscape = function( chars ) {
|
340
|
+
chars = chars || '';
|
341
|
+
var arr = $.map( chars.split(''), encodeURIComponent );
|
342
|
+
re_no_escape = new RegExp( arr.join('|'), 'g' );
|
343
|
+
};
|
344
|
+
|
345
|
+
// A sensible default. These are the characters people seem to complain about
|
346
|
+
// "uglifying up the URL" the most.
|
347
|
+
jq_param_fragment.noEscape( ',/' );
|
348
|
+
|
349
|
+
// Section: Deparam (from string)
|
350
|
+
//
|
351
|
+
// Method: jQuery.deparam
|
352
|
+
//
|
353
|
+
// Deserialize a params string into an object, optionally coercing numbers,
|
354
|
+
// booleans, null and undefined values; this method is the counterpart to the
|
355
|
+
// internal jQuery.param method.
|
356
|
+
//
|
357
|
+
// Usage:
|
358
|
+
//
|
359
|
+
// > jQuery.deparam( params [, coerce ] );
|
360
|
+
//
|
361
|
+
// Arguments:
|
362
|
+
//
|
363
|
+
// params - (String) A params string to be parsed.
|
364
|
+
// coerce - (Boolean) If true, coerces any numbers or true, false, null, and
|
365
|
+
// undefined to their actual value. Defaults to false if omitted.
|
366
|
+
//
|
367
|
+
// Returns:
|
368
|
+
//
|
369
|
+
// (Object) An object representing the deserialized params string.
|
370
|
+
|
371
|
+
$.deparam = jq_deparam = function( params, coerce ) {
|
372
|
+
var obj = {},
|
373
|
+
coerce_types = { 'true': !0, 'false': !1, 'null': null };
|
374
|
+
|
375
|
+
// Iterate over all name=value pairs.
|
376
|
+
$.each( params.replace( /\+/g, ' ' ).split( '&' ), function(j,v){
|
377
|
+
var param = v.split( '=' ),
|
378
|
+
key = decode( param[0] ),
|
379
|
+
val,
|
380
|
+
cur = obj,
|
381
|
+
i = 0,
|
382
|
+
|
383
|
+
// If key is more complex than 'foo', like 'a[]' or 'a[b][c]', split it
|
384
|
+
// into its component parts.
|
385
|
+
keys = key.split( '][' ),
|
386
|
+
keys_last = keys.length - 1;
|
387
|
+
|
388
|
+
// If the first keys part contains [ and the last ends with ], then []
|
389
|
+
// are correctly balanced.
|
390
|
+
if ( /\[/.test( keys[0] ) && /\]$/.test( keys[ keys_last ] ) ) {
|
391
|
+
// Remove the trailing ] from the last keys part.
|
392
|
+
keys[ keys_last ] = keys[ keys_last ].replace( /\]$/, '' );
|
393
|
+
|
394
|
+
// Split first keys part into two parts on the [ and add them back onto
|
395
|
+
// the beginning of the keys array.
|
396
|
+
keys = keys.shift().split('[').concat( keys );
|
397
|
+
|
398
|
+
keys_last = keys.length - 1;
|
399
|
+
} else {
|
400
|
+
// Basic 'foo' style key.
|
401
|
+
keys_last = 0;
|
402
|
+
}
|
403
|
+
|
404
|
+
// Are we dealing with a name=value pair, or just a name?
|
405
|
+
if ( param.length === 2 ) {
|
406
|
+
val = decode( param[1] );
|
407
|
+
|
408
|
+
// Coerce values.
|
409
|
+
if ( coerce ) {
|
410
|
+
val = val && !isNaN(val) ? +val // number
|
411
|
+
: val === 'undefined' ? undefined // undefined
|
412
|
+
: coerce_types[val] !== undefined ? coerce_types[val] // true, false, null
|
413
|
+
: val; // string
|
414
|
+
}
|
415
|
+
|
416
|
+
if ( keys_last ) {
|
417
|
+
// Complex key, build deep object structure based on a few rules:
|
418
|
+
// * The 'cur' pointer starts at the object top-level.
|
419
|
+
// * [] = array push (n is set to array length), [n] = array if n is
|
420
|
+
// numeric, otherwise object.
|
421
|
+
// * If at the last keys part, set the value.
|
422
|
+
// * For each keys part, if the current level is undefined create an
|
423
|
+
// object or array based on the type of the next keys part.
|
424
|
+
// * Move the 'cur' pointer to the next level.
|
425
|
+
// * Rinse & repeat.
|
426
|
+
for ( ; i <= keys_last; i++ ) {
|
427
|
+
key = keys[i] === '' ? cur.length : keys[i];
|
428
|
+
cur = cur[key] = i < keys_last
|
429
|
+
? cur[key] || ( keys[i+1] && isNaN( keys[i+1] ) ? {} : [] )
|
430
|
+
: val;
|
431
|
+
}
|
432
|
+
|
433
|
+
} else {
|
434
|
+
// Simple key, even simpler rules, since only scalars and shallow
|
435
|
+
// arrays are allowed.
|
436
|
+
|
437
|
+
if ( $.isArray( obj[key] ) ) {
|
438
|
+
// val is already an array, so push on the next value.
|
439
|
+
obj[key].push( val );
|
440
|
+
|
441
|
+
} else if ( obj[key] !== undefined ) {
|
442
|
+
// val isn't an array, but since a second value has been specified,
|
443
|
+
// convert val into an array.
|
444
|
+
obj[key] = [ obj[key], val ];
|
445
|
+
|
446
|
+
} else {
|
447
|
+
// val is a scalar.
|
448
|
+
obj[key] = val;
|
449
|
+
}
|
450
|
+
}
|
451
|
+
|
452
|
+
} else if ( key ) {
|
453
|
+
// No value was defined, so set something meaningful.
|
454
|
+
obj[key] = coerce
|
455
|
+
? undefined
|
456
|
+
: '';
|
457
|
+
}
|
458
|
+
});
|
459
|
+
|
460
|
+
return obj;
|
461
|
+
};
|
462
|
+
|
463
|
+
// Method: jQuery.deparam.querystring
|
464
|
+
//
|
465
|
+
// Parse the query string from a URL or the current window.location,
|
466
|
+
// deserializing it into an object, optionally coercing numbers, booleans,
|
467
|
+
// null and undefined values.
|
468
|
+
//
|
469
|
+
// Usage:
|
470
|
+
//
|
471
|
+
// > jQuery.deparam.querystring( [ url ] [, coerce ] );
|
472
|
+
//
|
473
|
+
// Arguments:
|
474
|
+
//
|
475
|
+
// url - (String) An optional params string or URL containing query string
|
476
|
+
// params to be parsed. If url is omitted, the current window.location
|
477
|
+
// is used.
|
478
|
+
// coerce - (Boolean) If true, coerces any numbers or true, false, null, and
|
479
|
+
// undefined to their actual value. Defaults to false if omitted.
|
480
|
+
//
|
481
|
+
// Returns:
|
482
|
+
//
|
483
|
+
// (Object) An object representing the deserialized params string.
|
484
|
+
|
485
|
+
// Method: jQuery.deparam.fragment
|
486
|
+
//
|
487
|
+
// Parse the fragment (hash) from a URL or the current window.location,
|
488
|
+
// deserializing it into an object, optionally coercing numbers, booleans,
|
489
|
+
// null and undefined values.
|
490
|
+
//
|
491
|
+
// Usage:
|
492
|
+
//
|
493
|
+
// > jQuery.deparam.fragment( [ url ] [, coerce ] );
|
494
|
+
//
|
495
|
+
// Arguments:
|
496
|
+
//
|
497
|
+
// url - (String) An optional params string or URL containing fragment (hash)
|
498
|
+
// params to be parsed. If url is omitted, the current window.location
|
499
|
+
// is used.
|
500
|
+
// coerce - (Boolean) If true, coerces any numbers or true, false, null, and
|
501
|
+
// undefined to their actual value. Defaults to false if omitted.
|
502
|
+
//
|
503
|
+
// Returns:
|
504
|
+
//
|
505
|
+
// (Object) An object representing the deserialized params string.
|
506
|
+
|
507
|
+
function jq_deparam_sub( is_fragment, url_or_params, coerce ) {
|
508
|
+
if ( url_or_params === undefined || typeof url_or_params === 'boolean' ) {
|
509
|
+
// url_or_params not specified.
|
510
|
+
coerce = url_or_params;
|
511
|
+
url_or_params = jq_param[ is_fragment ? str_fragment : str_querystring ]();
|
512
|
+
} else {
|
513
|
+
url_or_params = is_string( url_or_params )
|
514
|
+
? url_or_params.replace( is_fragment ? re_trim_fragment : re_trim_querystring, '' )
|
515
|
+
: url_or_params;
|
516
|
+
}
|
517
|
+
|
518
|
+
return jq_deparam( url_or_params, coerce );
|
519
|
+
};
|
520
|
+
|
521
|
+
jq_deparam[ str_querystring ] = curry( jq_deparam_sub, 0 );
|
522
|
+
jq_deparam[ str_fragment ] = jq_deparam_fragment = curry( jq_deparam_sub, 1 );
|
523
|
+
|
524
|
+
// Section: Element manipulation
|
525
|
+
//
|
526
|
+
// Method: jQuery.elemUrlAttr
|
527
|
+
//
|
528
|
+
// Get the internal "Default URL attribute per tag" list, or augment the list
|
529
|
+
// with additional tag-attribute pairs, in case the defaults are insufficient.
|
530
|
+
//
|
531
|
+
// In the <jQuery.fn.querystring> and <jQuery.fn.fragment> methods, this list
|
532
|
+
// is used to determine which attribute contains the URL to be modified, if
|
533
|
+
// an "attr" param is not specified.
|
534
|
+
//
|
535
|
+
// Default Tag-Attribute List:
|
536
|
+
//
|
537
|
+
// a - href
|
538
|
+
// base - href
|
539
|
+
// iframe - src
|
540
|
+
// img - src
|
541
|
+
// input - src
|
542
|
+
// form - action
|
543
|
+
// link - href
|
544
|
+
// script - src
|
545
|
+
//
|
546
|
+
// Usage:
|
547
|
+
//
|
548
|
+
// > jQuery.elemUrlAttr( [ tag_attr ] );
|
549
|
+
//
|
550
|
+
// Arguments:
|
551
|
+
//
|
552
|
+
// tag_attr - (Object) An object containing a list of tag names and their
|
553
|
+
// associated default attribute names in the format { tag: 'attr', ... } to
|
554
|
+
// be merged into the internal tag-attribute list.
|
555
|
+
//
|
556
|
+
// Returns:
|
557
|
+
//
|
558
|
+
// (Object) An object containing all stored tag-attribute values.
|
559
|
+
|
560
|
+
// Only define function and set defaults if function doesn't already exist, as
|
561
|
+
// the urlInternal plugin will provide this method as well.
|
562
|
+
$[ str_elemUrlAttr ] || ($[ str_elemUrlAttr ] = function( obj ) {
|
563
|
+
return $.extend( elemUrlAttr_cache, obj );
|
564
|
+
})({
|
565
|
+
a: str_href,
|
566
|
+
base: str_href,
|
567
|
+
iframe: str_src,
|
568
|
+
img: str_src,
|
569
|
+
input: str_src,
|
570
|
+
form: 'action',
|
571
|
+
link: str_href,
|
572
|
+
script: str_src
|
573
|
+
});
|
574
|
+
|
575
|
+
jq_elemUrlAttr = $[ str_elemUrlAttr ];
|
576
|
+
|
577
|
+
// Method: jQuery.fn.querystring
|
578
|
+
//
|
579
|
+
// Update URL attribute in one or more elements, merging the current URL (with
|
580
|
+
// or without pre-existing query string params) plus any params object or
|
581
|
+
// string into a new URL, which is then set into that attribute. Like
|
582
|
+
// <jQuery.param.querystring (build url)>, but for all elements in a jQuery
|
583
|
+
// collection.
|
584
|
+
//
|
585
|
+
// Usage:
|
586
|
+
//
|
587
|
+
// > jQuery('selector').querystring( [ attr, ] params [, merge_mode ] );
|
588
|
+
//
|
589
|
+
// Arguments:
|
590
|
+
//
|
591
|
+
// attr - (String) Optional name of an attribute that will contain a URL to
|
592
|
+
// merge params or url into. See <jQuery.elemUrlAttr> for a list of default
|
593
|
+
// attributes.
|
594
|
+
// params - (Object) A params object to be merged into the URL attribute.
|
595
|
+
// params - (String) A URL containing query string params, or params string
|
596
|
+
// to be merged into the URL attribute.
|
597
|
+
// merge_mode - (Number) Merge behavior defaults to 0 if merge_mode is not
|
598
|
+
// specified, and is as-follows:
|
599
|
+
//
|
600
|
+
// * 0: params in the params argument will override any params in attr URL.
|
601
|
+
// * 1: any params in attr URL will override params in the params argument.
|
602
|
+
// * 2: params argument will completely replace any query string in attr
|
603
|
+
// URL.
|
604
|
+
//
|
605
|
+
// Returns:
|
606
|
+
//
|
607
|
+
// (jQuery) The initial jQuery collection of elements, but with modified URL
|
608
|
+
// attribute values.
|
609
|
+
|
610
|
+
// Method: jQuery.fn.fragment
|
611
|
+
//
|
612
|
+
// Update URL attribute in one or more elements, merging the current URL (with
|
613
|
+
// or without pre-existing fragment/hash params) plus any params object or
|
614
|
+
// string into a new URL, which is then set into that attribute. Like
|
615
|
+
// <jQuery.param.fragment (build url)>, but for all elements in a jQuery
|
616
|
+
// collection.
|
617
|
+
//
|
618
|
+
// Usage:
|
619
|
+
//
|
620
|
+
// > jQuery('selector').fragment( [ attr, ] params [, merge_mode ] );
|
621
|
+
//
|
622
|
+
// Arguments:
|
623
|
+
//
|
624
|
+
// attr - (String) Optional name of an attribute that will contain a URL to
|
625
|
+
// merge params into. See <jQuery.elemUrlAttr> for a list of default
|
626
|
+
// attributes.
|
627
|
+
// params - (Object) A params object to be merged into the URL attribute.
|
628
|
+
// params - (String) A URL containing fragment (hash) params, or params
|
629
|
+
// string to be merged into the URL attribute.
|
630
|
+
// merge_mode - (Number) Merge behavior defaults to 0 if merge_mode is not
|
631
|
+
// specified, and is as-follows:
|
632
|
+
//
|
633
|
+
// * 0: params in the params argument will override any params in attr URL.
|
634
|
+
// * 1: any params in attr URL will override params in the params argument.
|
635
|
+
// * 2: params argument will completely replace any fragment (hash) in attr
|
636
|
+
// URL.
|
637
|
+
//
|
638
|
+
// Returns:
|
639
|
+
//
|
640
|
+
// (jQuery) The initial jQuery collection of elements, but with modified URL
|
641
|
+
// attribute values.
|
642
|
+
|
643
|
+
function jq_fn_sub( mode, force_attr, params, merge_mode ) {
|
644
|
+
if ( !is_string( params ) && typeof params !== 'object' ) {
|
645
|
+
// force_attr not specified.
|
646
|
+
merge_mode = params;
|
647
|
+
params = force_attr;
|
648
|
+
force_attr = undefined;
|
649
|
+
}
|
650
|
+
|
651
|
+
return this.each(function(){
|
652
|
+
var that = $(this),
|
653
|
+
|
654
|
+
// Get attribute specified, or default specified via $.elemUrlAttr.
|
655
|
+
attr = force_attr || jq_elemUrlAttr()[ ( this.nodeName || '' ).toLowerCase() ] || '',
|
656
|
+
|
657
|
+
// Get URL value.
|
658
|
+
url = attr && that.attr( attr ) || '';
|
659
|
+
|
660
|
+
// Update attribute with new URL.
|
661
|
+
that.attr( attr, jq_param[ mode ]( url, params, merge_mode ) );
|
662
|
+
});
|
663
|
+
|
664
|
+
};
|
665
|
+
|
666
|
+
$.fn[ str_querystring ] = curry( jq_fn_sub, str_querystring );
|
667
|
+
$.fn[ str_fragment ] = curry( jq_fn_sub, str_fragment );
|
668
|
+
|
669
|
+
// Section: History, hashchange event
|
670
|
+
//
|
671
|
+
// Method: jQuery.bbq.pushState
|
672
|
+
//
|
673
|
+
// Adds a 'state' into the browser history at the current position, setting
|
674
|
+
// location.hash and triggering any bound <hashchange event> callbacks
|
675
|
+
// (provided the new state is different than the previous state).
|
676
|
+
//
|
677
|
+
// If no arguments are passed, an empty state is created, which is just a
|
678
|
+
// shortcut for jQuery.bbq.pushState( {}, 2 ).
|
679
|
+
//
|
680
|
+
// Usage:
|
681
|
+
//
|
682
|
+
// > jQuery.bbq.pushState( [ params [, merge_mode ] ] );
|
683
|
+
//
|
684
|
+
// Arguments:
|
685
|
+
//
|
686
|
+
// params - (String) A serialized params string or a hash string beginning
|
687
|
+
// with # to merge into location.hash.
|
688
|
+
// params - (Object) A params object to merge into location.hash.
|
689
|
+
// merge_mode - (Number) Merge behavior defaults to 0 if merge_mode is not
|
690
|
+
// specified (unless a hash string beginning with # is specified, in which
|
691
|
+
// case merge behavior defaults to 2), and is as-follows:
|
692
|
+
//
|
693
|
+
// * 0: params in the params argument will override any params in the
|
694
|
+
// current state.
|
695
|
+
// * 1: any params in the current state will override params in the params
|
696
|
+
// argument.
|
697
|
+
// * 2: params argument will completely replace current state.
|
698
|
+
//
|
699
|
+
// Returns:
|
700
|
+
//
|
701
|
+
// Nothing.
|
702
|
+
//
|
703
|
+
// Additional Notes:
|
704
|
+
//
|
705
|
+
// * Setting an empty state may cause the browser to scroll.
|
706
|
+
// * Unlike the fragment and querystring methods, if a hash string beginning
|
707
|
+
// with # is specified as the params agrument, merge_mode defaults to 2.
|
708
|
+
|
709
|
+
jq_bbq.pushState = jq_bbq_pushState = function( params, merge_mode ) {
|
710
|
+
if ( is_string( params ) && /^#/.test( params ) && merge_mode === undefined ) {
|
711
|
+
// Params string begins with # and merge_mode not specified, so completely
|
712
|
+
// overwrite window.location.hash.
|
713
|
+
merge_mode = 2;
|
714
|
+
}
|
715
|
+
|
716
|
+
var has_args = params !== undefined,
|
717
|
+
// Merge params into window.location using $.param.fragment.
|
718
|
+
url = jq_param_fragment( window[ str_location ][ str_href ],
|
719
|
+
has_args ? params : {}, has_args ? merge_mode : 2 );
|
720
|
+
|
721
|
+
// Set new window.location.href. If hash is empty, use just # to prevent
|
722
|
+
// browser from reloading the page. Note that Safari 3 & Chrome barf on
|
723
|
+
// location.hash = '#'.
|
724
|
+
window[ str_location ][ str_href ] = url + ( /#/.test( url ) ? '' : '#' );
|
725
|
+
};
|
726
|
+
|
727
|
+
// Method: jQuery.bbq.getState
|
728
|
+
//
|
729
|
+
// Retrieves the current 'state' from the browser history, parsing
|
730
|
+
// location.hash for a specific key or returning an object containing the
|
731
|
+
// entire state, optionally coercing numbers, booleans, null and undefined
|
732
|
+
// values.
|
733
|
+
//
|
734
|
+
// Usage:
|
735
|
+
//
|
736
|
+
// > jQuery.bbq.getState( [ key ] [, coerce ] );
|
737
|
+
//
|
738
|
+
// Arguments:
|
739
|
+
//
|
740
|
+
// key - (String) An optional state key for which to return a value.
|
741
|
+
// coerce - (Boolean) If true, coerces any numbers or true, false, null, and
|
742
|
+
// undefined to their actual value. Defaults to false.
|
743
|
+
//
|
744
|
+
// Returns:
|
745
|
+
//
|
746
|
+
// (Anything) If key is passed, returns the value corresponding with that key
|
747
|
+
// in the location.hash 'state', or undefined. If not, an object
|
748
|
+
// representing the entire 'state' is returned.
|
749
|
+
|
750
|
+
jq_bbq.getState = jq_bbq_getState = function( key, coerce ) {
|
751
|
+
return key === undefined || typeof key === 'boolean'
|
752
|
+
? jq_deparam_fragment( key ) // 'key' really means 'coerce' here
|
753
|
+
: jq_deparam_fragment( coerce )[ key ];
|
754
|
+
};
|
755
|
+
|
756
|
+
// Method: jQuery.bbq.removeState
|
757
|
+
//
|
758
|
+
// Remove one or more keys from the current browser history 'state', creating
|
759
|
+
// a new state, setting location.hash and triggering any bound
|
760
|
+
// <hashchange event> callbacks (provided the new state is different than
|
761
|
+
// the previous state).
|
762
|
+
//
|
763
|
+
// If no arguments are passed, an empty state is created, which is just a
|
764
|
+
// shortcut for jQuery.bbq.pushState( {}, 2 ).
|
765
|
+
//
|
766
|
+
// Usage:
|
767
|
+
//
|
768
|
+
// > jQuery.bbq.removeState( [ key [, key ... ] ] );
|
769
|
+
//
|
770
|
+
// Arguments:
|
771
|
+
//
|
772
|
+
// key - (String) One or more key values to remove from the current state,
|
773
|
+
// passed as individual arguments.
|
774
|
+
// key - (Array) A single array argument that contains a list of key values
|
775
|
+
// to remove from the current state.
|
776
|
+
//
|
777
|
+
// Returns:
|
778
|
+
//
|
779
|
+
// Nothing.
|
780
|
+
//
|
781
|
+
// Additional Notes:
|
782
|
+
//
|
783
|
+
// * Setting an empty state may cause the browser to scroll.
|
784
|
+
|
785
|
+
jq_bbq.removeState = function( arr ) {
|
786
|
+
var state = {};
|
787
|
+
|
788
|
+
// If one or more arguments is passed..
|
789
|
+
if ( arr !== undefined ) {
|
790
|
+
|
791
|
+
// Get the current state.
|
792
|
+
state = jq_bbq_getState();
|
793
|
+
|
794
|
+
// For each passed key, delete the corresponding property from the current
|
795
|
+
// state.
|
796
|
+
$.each( $.isArray( arr ) ? arr : arguments, function(i,v){
|
797
|
+
delete state[ v ];
|
798
|
+
});
|
799
|
+
}
|
800
|
+
|
801
|
+
// Set the state, completely overriding any existing state.
|
802
|
+
jq_bbq_pushState( state, 2 );
|
803
|
+
};
|
804
|
+
|
805
|
+
// Event: hashchange event (BBQ)
|
806
|
+
//
|
807
|
+
// Usage in jQuery 1.4 and newer:
|
808
|
+
//
|
809
|
+
// In jQuery 1.4 and newer, the event object passed into any hashchange event
|
810
|
+
// callback is augmented with a copy of the location.hash fragment at the time
|
811
|
+
// the event was triggered as its event.fragment property. In addition, the
|
812
|
+
// event.getState method operates on this property (instead of location.hash)
|
813
|
+
// which allows this fragment-as-a-state to be referenced later, even after
|
814
|
+
// window.location may have changed.
|
815
|
+
//
|
816
|
+
// Note that event.fragment and event.getState are not defined according to
|
817
|
+
// W3C (or any other) specification, but will still be available whether or
|
818
|
+
// not the hashchange event exists natively in the browser, because of the
|
819
|
+
// utility they provide.
|
820
|
+
//
|
821
|
+
// The event.fragment property contains the output of <jQuery.param.fragment>
|
822
|
+
// and the event.getState method is equivalent to the <jQuery.bbq.getState>
|
823
|
+
// method.
|
824
|
+
//
|
825
|
+
// > $(window).bind( 'hashchange', function( event ) {
|
826
|
+
// > var hash_str = event.fragment,
|
827
|
+
// > param_obj = event.getState(),
|
828
|
+
// > param_val = event.getState( 'param_name' ),
|
829
|
+
// > param_val_coerced = event.getState( 'param_name', true );
|
830
|
+
// > ...
|
831
|
+
// > });
|
832
|
+
//
|
833
|
+
// Usage in jQuery 1.3.2:
|
834
|
+
//
|
835
|
+
// In jQuery 1.3.2, the event object cannot to be augmented as in jQuery 1.4+,
|
836
|
+
// so the fragment state isn't bound to the event object and must instead be
|
837
|
+
// parsed using the <jQuery.param.fragment> and <jQuery.bbq.getState> methods.
|
838
|
+
//
|
839
|
+
// > $(window).bind( 'hashchange', function( event ) {
|
840
|
+
// > var hash_str = $.param.fragment(),
|
841
|
+
// > param_obj = $.bbq.getState(),
|
842
|
+
// > param_val = $.bbq.getState( 'param_name' ),
|
843
|
+
// > param_val_coerced = $.bbq.getState( 'param_name', true );
|
844
|
+
// > ...
|
845
|
+
// > });
|
846
|
+
//
|
847
|
+
// Additional Notes:
|
848
|
+
//
|
849
|
+
// * Due to changes in the special events API, jQuery BBQ v1.2 or newer is
|
850
|
+
// required to enable the augmented event object in jQuery 1.4.2 and newer.
|
851
|
+
// * See <jQuery hashchange event> for more detailed information.
|
852
|
+
|
853
|
+
jq_event_special[ str_hashchange ] = $.extend( jq_event_special[ str_hashchange ], {
|
854
|
+
|
855
|
+
// Augmenting the event object with the .fragment property and .getState
|
856
|
+
// method requires jQuery 1.4 or newer. Note: with 1.3.2, everything will
|
857
|
+
// work, but the event won't be augmented)
|
858
|
+
add: function( handleObj ) {
|
859
|
+
var old_handler;
|
860
|
+
|
861
|
+
function new_handler(e) {
|
862
|
+
// e.fragment is set to the value of location.hash (with any leading #
|
863
|
+
// removed) at the time the event is triggered.
|
864
|
+
var hash = e[ str_fragment ] = jq_param_fragment();
|
865
|
+
|
866
|
+
// e.getState() works just like $.bbq.getState(), but uses the
|
867
|
+
// e.fragment property stored on the event object.
|
868
|
+
e.getState = function( key, coerce ) {
|
869
|
+
return key === undefined || typeof key === 'boolean'
|
870
|
+
? jq_deparam( hash, key ) // 'key' really means 'coerce' here
|
871
|
+
: jq_deparam( hash, coerce )[ key ];
|
872
|
+
};
|
873
|
+
|
874
|
+
old_handler.apply( this, arguments );
|
875
|
+
};
|
876
|
+
|
877
|
+
// This may seem a little complicated, but it normalizes the special event
|
878
|
+
// .add method between jQuery 1.4/1.4.1 and 1.4.2+
|
879
|
+
if ( $.isFunction( handleObj ) ) {
|
880
|
+
// 1.4, 1.4.1
|
881
|
+
old_handler = handleObj;
|
882
|
+
return new_handler;
|
883
|
+
} else {
|
884
|
+
// 1.4.2+
|
885
|
+
old_handler = handleObj.handler;
|
886
|
+
handleObj.handler = new_handler;
|
887
|
+
}
|
888
|
+
}
|
889
|
+
|
890
|
+
});
|
891
|
+
|
892
|
+
})(jQuery,this);
|
893
|
+
|
894
|
+
/*!
|
895
|
+
* jQuery hashchange event - v1.2 - 2/11/2010
|
896
|
+
* http://benalman.com/projects/jquery-hashchange-plugin/
|
897
|
+
*
|
898
|
+
* Copyright (c) 2010 "Cowboy" Ben Alman
|
899
|
+
* Dual licensed under the MIT and GPL licenses.
|
900
|
+
* http://benalman.com/about/license/
|
901
|
+
*/
|
902
|
+
|
903
|
+
// Script: jQuery hashchange event
|
904
|
+
//
|
905
|
+
// *Version: 1.2, Last updated: 2/11/2010*
|
906
|
+
//
|
907
|
+
// Project Home - http://benalman.com/projects/jquery-hashchange-plugin/
|
908
|
+
// GitHub - http://github.com/cowboy/jquery-hashchange/
|
909
|
+
// Source - http://github.com/cowboy/jquery-hashchange/raw/master/jquery.ba-hashchange.js
|
910
|
+
// (Minified) - http://github.com/cowboy/jquery-hashchange/raw/master/jquery.ba-hashchange.min.js (1.1kb)
|
911
|
+
//
|
912
|
+
// About: License
|
913
|
+
//
|
914
|
+
// Copyright (c) 2010 "Cowboy" Ben Alman,
|
915
|
+
// Dual licensed under the MIT and GPL licenses.
|
916
|
+
// http://benalman.com/about/license/
|
917
|
+
//
|
918
|
+
// About: Examples
|
919
|
+
//
|
920
|
+
// This working example, complete with fully commented code, illustrate one way
|
921
|
+
// in which this plugin can be used.
|
922
|
+
//
|
923
|
+
// hashchange event - http://benalman.com/code/projects/jquery-hashchange/examples/hashchange/
|
924
|
+
//
|
925
|
+
// About: Support and Testing
|
926
|
+
//
|
927
|
+
// Information about what version or versions of jQuery this plugin has been
|
928
|
+
// tested with, what browsers it has been tested in, and where the unit tests
|
929
|
+
// reside (so you can test it yourself).
|
930
|
+
//
|
931
|
+
// jQuery Versions - 1.3.2, 1.4.1, 1.4.2
|
932
|
+
// Browsers Tested - Internet Explorer 6-8, Firefox 2-3.7, Safari 3-4, Chrome, Opera 9.6-10.1.
|
933
|
+
// Unit Tests - http://benalman.com/code/projects/jquery-hashchange/unit/
|
934
|
+
//
|
935
|
+
// About: Known issues
|
936
|
+
//
|
937
|
+
// While this jQuery hashchange event implementation is quite stable and robust,
|
938
|
+
// there are a few unfortunate browser bugs surrounding expected hashchange
|
939
|
+
// event-based behaviors, independent of any JavaScript window.onhashchange
|
940
|
+
// abstraction. See the following examples for more information:
|
941
|
+
//
|
942
|
+
// Chrome: Back Button - http://benalman.com/code/projects/jquery-hashchange/examples/bug-chrome-back-button/
|
943
|
+
// Firefox: Remote XMLHttpRequest - http://benalman.com/code/projects/jquery-hashchange/examples/bug-firefox-remote-xhr/
|
944
|
+
// WebKit: Back Button in an Iframe - http://benalman.com/code/projects/jquery-hashchange/examples/bug-webkit-hash-iframe/
|
945
|
+
// Safari: Back Button from a different domain - http://benalman.com/code/projects/jquery-hashchange/examples/bug-safari-back-from-diff-domain/
|
946
|
+
//
|
947
|
+
// About: Release History
|
948
|
+
//
|
949
|
+
// 1.2 - (2/11/2010) Fixed a bug where coming back to a page using this plugin
|
950
|
+
// from a page on another domain would cause an error in Safari 4. Also,
|
951
|
+
// IE6/7 Iframe is now inserted after the body (this actually works),
|
952
|
+
// which prevents the page from scrolling when the event is first bound.
|
953
|
+
// Event can also now be bound before DOM ready, but it won't be usable
|
954
|
+
// before then in IE6/7.
|
955
|
+
// 1.1 - (1/21/2010) Incorporated document.documentMode test to fix IE8 bug
|
956
|
+
// where browser version is incorrectly reported as 8.0, despite
|
957
|
+
// inclusion of the X-UA-Compatible IE=EmulateIE7 meta tag.
|
958
|
+
// 1.0 - (1/9/2010) Initial Release. Broke out the jQuery BBQ event.special
|
959
|
+
// window.onhashchange functionality into a separate plugin for users
|
960
|
+
// who want just the basic event & back button support, without all the
|
961
|
+
// extra awesomeness that BBQ provides. This plugin will be included as
|
962
|
+
// part of jQuery BBQ, but also be available separately.
|
963
|
+
|
964
|
+
(function($,window,undefined){
|
965
|
+
'$:nomunge'; // Used by YUI compressor.
|
966
|
+
|
967
|
+
// Method / object references.
|
968
|
+
var fake_onhashchange,
|
969
|
+
jq_event_special = $.event.special,
|
970
|
+
|
971
|
+
// Reused strings.
|
972
|
+
str_location = 'location',
|
973
|
+
str_hashchange = 'hashchange',
|
974
|
+
str_href = 'href',
|
975
|
+
|
976
|
+
// IE6/7 specifically need some special love when it comes to back-button
|
977
|
+
// support, so let's do a little browser sniffing..
|
978
|
+
browser = $.browser,
|
979
|
+
mode = document.documentMode,
|
980
|
+
is_old_ie = browser.msie && ( mode === undefined || mode < 8 ),
|
981
|
+
|
982
|
+
// Does the browser support window.onhashchange? Test for IE version, since
|
983
|
+
// IE8 incorrectly reports this when in "IE7" or "IE8 Compatibility View"!
|
984
|
+
supports_onhashchange = 'on' + str_hashchange in window && !is_old_ie;
|
985
|
+
|
986
|
+
// Get location.hash (or what you'd expect location.hash to be) sans any
|
987
|
+
// leading #. Thanks for making this necessary, Firefox!
|
988
|
+
function get_fragment( url ) {
|
989
|
+
url = url || window[ str_location ][ str_href ];
|
990
|
+
return url.replace( /^[^#]*#?(.*)$/, '$1' );
|
991
|
+
};
|
992
|
+
|
993
|
+
// Property: jQuery.hashchangeDelay
|
994
|
+
//
|
995
|
+
// The numeric interval (in milliseconds) at which the <hashchange event>
|
996
|
+
// polling loop executes. Defaults to 100.
|
997
|
+
|
998
|
+
$[ str_hashchange + 'Delay' ] = 100;
|
999
|
+
|
1000
|
+
// Event: hashchange event
|
1001
|
+
//
|
1002
|
+
// Fired when location.hash changes. In browsers that support it, the native
|
1003
|
+
// window.onhashchange event is used (IE8, FF3.6), otherwise a polling loop is
|
1004
|
+
// initialized, running every <jQuery.hashchangeDelay> milliseconds to see if
|
1005
|
+
// the hash has changed. In IE 6 and 7, a hidden Iframe is created to allow
|
1006
|
+
// the back button and hash-based history to work.
|
1007
|
+
//
|
1008
|
+
// Usage:
|
1009
|
+
//
|
1010
|
+
// > $(window).bind( 'hashchange', function(e) {
|
1011
|
+
// > var hash = location.hash;
|
1012
|
+
// > ...
|
1013
|
+
// > });
|
1014
|
+
//
|
1015
|
+
// Additional Notes:
|
1016
|
+
//
|
1017
|
+
// * The polling loop and Iframe are not created until at least one callback
|
1018
|
+
// is actually bound to 'hashchange'.
|
1019
|
+
// * If you need the bound callback(s) to execute immediately, in cases where
|
1020
|
+
// the page 'state' exists on page load (via bookmark or page refresh, for
|
1021
|
+
// example) use $(window).trigger( 'hashchange' );
|
1022
|
+
// * The event can be bound before DOM ready, but since it won't be usable
|
1023
|
+
// before then in IE6/7 (due to the necessary Iframe), recommended usage is
|
1024
|
+
// to bind it inside a $(document).ready() callback.
|
1025
|
+
|
1026
|
+
jq_event_special[ str_hashchange ] = $.extend( jq_event_special[ str_hashchange ], {
|
1027
|
+
|
1028
|
+
// Called only when the first 'hashchange' event is bound to window.
|
1029
|
+
setup: function() {
|
1030
|
+
// If window.onhashchange is supported natively, there's nothing to do..
|
1031
|
+
if ( supports_onhashchange ) { return false; }
|
1032
|
+
|
1033
|
+
// Otherwise, we need to create our own. And we don't want to call this
|
1034
|
+
// until the user binds to the event, just in case they never do, since it
|
1035
|
+
// will create a polling loop and possibly even a hidden Iframe.
|
1036
|
+
$( fake_onhashchange.start );
|
1037
|
+
},
|
1038
|
+
|
1039
|
+
// Called only when the last 'hashchange' event is unbound from window.
|
1040
|
+
teardown: function() {
|
1041
|
+
// If window.onhashchange is supported natively, there's nothing to do..
|
1042
|
+
if ( supports_onhashchange ) { return false; }
|
1043
|
+
|
1044
|
+
// Otherwise, we need to stop ours (if possible).
|
1045
|
+
$( fake_onhashchange.stop );
|
1046
|
+
}
|
1047
|
+
|
1048
|
+
});
|
1049
|
+
|
1050
|
+
// fake_onhashchange does all the work of triggering the window.onhashchange
|
1051
|
+
// event for browsers that don't natively support it, including creating a
|
1052
|
+
// polling loop to watch for hash changes and in IE 6/7 creating a hidden
|
1053
|
+
// Iframe to enable back and forward.
|
1054
|
+
fake_onhashchange = (function(){
|
1055
|
+
var self = {},
|
1056
|
+
timeout_id,
|
1057
|
+
iframe,
|
1058
|
+
set_history,
|
1059
|
+
get_history;
|
1060
|
+
|
1061
|
+
// Initialize. In IE 6/7, creates a hidden Iframe for history handling.
|
1062
|
+
function init(){
|
1063
|
+
// Most browsers don't need special methods here..
|
1064
|
+
set_history = get_history = function(val){ return val; };
|
1065
|
+
|
1066
|
+
// But IE6/7 do!
|
1067
|
+
if ( is_old_ie ) {
|
1068
|
+
|
1069
|
+
// Create hidden Iframe after the end of the body to prevent initial
|
1070
|
+
// page load from scrolling unnecessarily.
|
1071
|
+
iframe = $('<iframe src="javascript:0"/>').hide().insertAfter( 'body' )[0].contentWindow;
|
1072
|
+
|
1073
|
+
// Get history by looking at the hidden Iframe's location.hash.
|
1074
|
+
get_history = function() {
|
1075
|
+
return get_fragment( iframe.document[ str_location ][ str_href ] );
|
1076
|
+
};
|
1077
|
+
|
1078
|
+
// Set a new history item by opening and then closing the Iframe
|
1079
|
+
// document, *then* setting its location.hash.
|
1080
|
+
set_history = function( hash, history_hash ) {
|
1081
|
+
if ( hash !== history_hash ) {
|
1082
|
+
var doc = iframe.document;
|
1083
|
+
doc.open().close();
|
1084
|
+
doc[ str_location ].hash = '#' + hash;
|
1085
|
+
}
|
1086
|
+
};
|
1087
|
+
|
1088
|
+
// Set initial history.
|
1089
|
+
set_history( get_fragment() );
|
1090
|
+
}
|
1091
|
+
};
|
1092
|
+
|
1093
|
+
// Start the polling loop.
|
1094
|
+
self.start = function() {
|
1095
|
+
// Polling loop is already running!
|
1096
|
+
if ( timeout_id ) { return; }
|
1097
|
+
|
1098
|
+
// Remember the initial hash so it doesn't get triggered immediately.
|
1099
|
+
var last_hash = get_fragment();
|
1100
|
+
|
1101
|
+
// Initialize if not yet initialized.
|
1102
|
+
set_history || init();
|
1103
|
+
|
1104
|
+
// This polling loop checks every $.hashchangeDelay milliseconds to see if
|
1105
|
+
// location.hash has changed, and triggers the 'hashchange' event on
|
1106
|
+
// window when necessary.
|
1107
|
+
(function loopy(){
|
1108
|
+
var hash = get_fragment(),
|
1109
|
+
history_hash = get_history( last_hash );
|
1110
|
+
|
1111
|
+
if ( hash !== last_hash ) {
|
1112
|
+
set_history( last_hash = hash, history_hash );
|
1113
|
+
|
1114
|
+
$(window).trigger( str_hashchange );
|
1115
|
+
|
1116
|
+
} else if ( history_hash !== last_hash ) {
|
1117
|
+
window[ str_location ][ str_href ] = window[ str_location ][ str_href ].replace( /#.*/, '' ) + '#' + history_hash;
|
1118
|
+
}
|
1119
|
+
|
1120
|
+
timeout_id = setTimeout( loopy, $[ str_hashchange + 'Delay' ] );
|
1121
|
+
})();
|
1122
|
+
};
|
1123
|
+
|
1124
|
+
// Stop the polling loop, but only if an IE6/7 Iframe wasn't created. In
|
1125
|
+
// that case, even if there are no longer any bound event handlers, the
|
1126
|
+
// polling loop is still necessary for back/next to work at all!
|
1127
|
+
self.stop = function() {
|
1128
|
+
if ( !iframe ) {
|
1129
|
+
timeout_id && clearTimeout( timeout_id );
|
1130
|
+
timeout_id = 0;
|
1131
|
+
}
|
1132
|
+
};
|
1133
|
+
|
1134
|
+
return self;
|
1135
|
+
})();
|
1136
|
+
|
1137
|
+
})(jQuery,this);
|