rbbt-rest 1.1.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/Rakefile +55 -0
- data/config.ru +99 -0
- data/lib/rbbt/rest/client.rb +298 -0
- data/lib/rbbt/rest/common/cache.rb +115 -0
- data/lib/rbbt/rest/common/forms.rb +97 -0
- data/lib/rbbt/rest/common/locate.rb +75 -0
- data/lib/rbbt/rest/common/misc.rb +164 -0
- data/lib/rbbt/rest/common/render.rb +150 -0
- data/lib/rbbt/rest/common/resources.rb +80 -0
- data/lib/rbbt/rest/common/table.rb +169 -0
- data/lib/rbbt/rest/common/users.rb +68 -0
- data/lib/rbbt/rest/entity.rb +362 -0
- data/lib/rbbt/rest/entity/action_card.rb +22 -0
- data/lib/rbbt/rest/entity/action_controller.rb +38 -0
- data/lib/rbbt/rest/entity/entity_card.rb +26 -0
- data/lib/rbbt/rest/entity/entity_list_card.rb +26 -0
- data/lib/rbbt/rest/entity/favourites.rb +97 -0
- data/lib/rbbt/rest/entity/finder.rb +30 -0
- data/lib/rbbt/rest/entity/helpers.rb +130 -0
- data/lib/rbbt/rest/entity/list.rb +92 -0
- data/lib/rbbt/rest/entity/list_container.rb +22 -0
- data/lib/rbbt/rest/entity/locate.rb +281 -0
- data/lib/rbbt/rest/entity/render.rb +76 -0
- data/lib/rbbt/rest/entity/rest.rb +181 -0
- data/lib/rbbt/rest/file_server.rb +64 -0
- data/lib/rbbt/rest/helpers.rb +44 -0
- data/lib/rbbt/rest/main.rb +100 -0
- data/lib/rbbt/rest/workflow.rb +198 -0
- data/lib/rbbt/rest/workflow/jobs.rb +154 -0
- data/lib/rbbt/rest/workflow/locate.rb +41 -0
- data/lib/rbbt/rest/workflow/render.rb +33 -0
- data/share/views/compass/_foundation_setup.sass +79 -0
- data/share/views/compass/actions.sass +43 -0
- data/share/views/compass/app.sass +39 -0
- data/share/views/compass/colors.sass +224 -0
- data/share/views/compass/dom.sass +42 -0
- data/share/views/compass/entity_card.sass +100 -0
- data/share/views/compass/favourites.sass +33 -0
- data/share/views/compass/footer.sass +4 -0
- data/share/views/compass/form.sass +28 -0
- data/share/views/compass/fragment.sass +8 -0
- data/share/views/compass/list_container.sass +32 -0
- data/share/views/compass/lists.sass +33 -0
- data/share/views/compass/offcanvas.sass +66 -0
- data/share/views/compass/style.sass +100 -0
- data/share/views/compass/style_mixins.sass +12 -0
- data/share/views/compass/table.sass +44 -0
- data/share/views/compass/tabs.sass +41 -0
- data/share/views/compass/theme.sass +58 -0
- data/share/views/compass/topbar.sass +19 -0
- data/share/views/compass/web-fonts.sass +77 -0
- data/share/views/compass/workflow.sass +33 -0
- data/share/views/entity/Default.haml +20 -0
- data/share/views/entity_list/Default.haml +7 -0
- data/share/views/entity_list/Default/edit.haml +9 -0
- data/share/views/entity_list/Default/new.haml +9 -0
- data/share/views/entity_partials/action_card.haml +38 -0
- data/share/views/entity_partials/action_controller.haml +31 -0
- data/share/views/entity_partials/entity_card.haml +55 -0
- data/share/views/entity_partials/entity_list.haml +8 -0
- data/share/views/entity_partials/entity_list_card.haml +75 -0
- data/share/views/entity_partials/list_container.haml +30 -0
- data/share/views/error.haml +12 -0
- data/share/views/form.haml +11 -0
- data/share/views/job_info.haml +1 -0
- data/share/views/job_result.haml +23 -0
- data/share/views/job_result/annotations.haml +3 -0
- data/share/views/job_result/array.haml +4 -0
- data/share/views/job_result/binary.haml +1 -0
- data/share/views/job_result/boolea.haml +1 -0
- data/share/views/job_result/boolean.haml +1 -0
- data/share/views/job_result/job_control.haml +18 -0
- data/share/views/job_result/string.haml +1 -0
- data/share/views/job_result/tsv.haml +7 -0
- data/share/views/job_result/yaml.haml +1 -0
- data/share/views/layout.haml +89 -0
- data/share/views/layout/favourites.haml +36 -0
- data/share/views/layout/header.haml +40 -0
- data/share/views/main.haml +2 -0
- data/share/views/partials/form.haml +26 -0
- data/share/views/partials/table.haml +93 -0
- data/share/views/public/favicon.gif +0 -0
- data/share/views/public/js/_ajax_replace.js +130 -0
- data/share/views/public/js/_dom_update.js +28 -0
- data/share/views/public/js/_ellipsis.js +62 -0
- data/share/views/public/js/_fix_tablesorter_science.js +25 -0
- data/share/views/public/js/_foundation.js +42 -0
- data/share/views/public/js/_md5.js +379 -0
- data/share/views/public/js/actions.js +102 -0
- data/share/views/public/js/app.js +2 -0
- data/share/views/public/js/base.js +110 -0
- data/share/views/public/js/deffer.js +14 -0
- data/share/views/public/js/entities.js +75 -0
- data/share/views/public/js/favourites.js +210 -0
- data/share/views/public/js/helpers.js +57 -0
- data/share/views/public/js/lists.js +103 -0
- data/share/views/public/js/offcanvas.js +33 -0
- data/share/views/public/js/tables.js +193 -0
- data/share/views/public/js/tabs.js +7 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-icons_222222_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-icons_2e83ff_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-icons_454545_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-icons_888888_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/css/custom-theme/jquery-ui-1.8.14.custom.css +568 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/AUTHORS.txt +30 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/GPL-LICENSE.txt +278 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/MIT-LICENSE.txt +25 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/collapsible.html +57 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/custom-icons.html +69 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/default.html +85 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/fillspace.html +76 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/hoverintent.html +134 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/index.html +25 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/mouseover.html +57 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/no-auto-height.html +60 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/accordion/sortable.html +83 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/addClass/default.html +52 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/addClass/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/animate/default.html +61 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/animate/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/categories.html +71 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/combobox.html +174 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/custom-data.html +95 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/default.html +64 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/folding.html +62 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/index.html +27 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/london.xml +114 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/maxheight.html +79 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/multiple-remote.html +84 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/multiple.html +99 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/remote-jsonp.html +86 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/remote-with-cache.html +59 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/remote.html +59 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/search.php +640 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/autocomplete/xml.html +72 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/checkbox.html +44 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/default.html +38 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/icons.html +56 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/index.html +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/radio.html +39 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/splitbutton.html +55 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/button/toolbar.html +120 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/alt-field.html +36 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/animation.html +58 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/buttonbar.html +35 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/date-formats.html +47 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/date-range.html +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/default.html +33 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html +36 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html +37 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/index.html +31 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/inline.html +33 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/localization.html +162 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/min-max.html +33 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html +36 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/other-months.html +37 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/datepicker/show-week.html +39 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/demos.css +334 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/animated.html +56 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/default.html +54 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/index.html +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/modal-confirmation.html +69 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/modal-form.html +167 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/modal-message.html +71 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/dialog/modal.html +60 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/constrain-movement.html +69 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/cursor-style.html +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/default.html +39 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/delay-start.html +45 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/events.html +77 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/handle.html +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/index.html +28 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/revert.html +44 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/scroll.html +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/snap-to.html +68 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/sortable.html +57 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/draggable/visual-feedback.html +77 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/accepted-elements.html +60 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/default.html +53 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/index.html +24 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/photo-manager.html +184 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/propagation.html +80 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/revert.html +61 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/shopping-cart.html +101 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/droppable/visual-feedback.html +78 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/effect/default.html +109 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/effect/easing.html +108 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/effect/index.html +19 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/hide/default.html +102 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/hide/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/calendar.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/demo-config-on.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/icon-docs-info.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/images/pbar-ani.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/index.html +321 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/cycler.html +122 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/default.html +153 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/images/earth.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/images/flight.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/images/rocket.jpg +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/position/index.html +19 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/progressbar/animated.html +44 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/progressbar/default.html +35 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/progressbar/index.html +20 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/progressbar/resize.html +40 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/removeClass/default.html +52 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/removeClass/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/animate.html +43 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/aspect-ratio.html +42 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/constrain-area.html +47 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/default.html +40 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/delay-start.html +52 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/helper.html +43 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/index.html +28 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/max-min.html +45 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/snap-to-grid.html +42 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/synchronous-resize.html +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/textarea.html +41 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/resizable/visual-feedback.html +43 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/selectable/default.html +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/selectable/display-grid.html +55 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/selectable/index.html +20 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/selectable/serialize.html +61 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/show/default.html +104 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/show/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/colorpicker.html +95 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/default.html +37 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/hotelrooms.html +59 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/index.html +29 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/multiple-vertical.html +77 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/range-vertical.html +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/range.html +52 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/rangemax.html +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/rangemin.html +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/side-scroll.html +140 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/slider-vertical.html +52 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/steps.html +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/slider/tabs.html +67 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/connect-lists-through-tabs.html +78 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/connect-lists.html +58 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/default.html +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/delay-start.html +67 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/display-grid.html +54 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/empty-lists.html +69 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/index.html +26 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/items.html +70 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/placeholder.html +56 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/sortable/portlets.html +96 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/switchClass/default.html +47 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/switchClass/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/ajax.html +53 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/ajax/content1.html +4 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/ajax/content2.html +4 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/ajax/content3-slow.php +7 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php +3 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/bottom.html +60 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/collapsible.html +55 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/cookie.html +57 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/default.html +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/index.html +25 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/manipulation.html +124 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/mouseover.html +53 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/sortable.html +58 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/tabs/vertical.html +61 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/toggle/default.html +94 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/toggle/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/toggleClass/default.html +46 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/demos/toggleClass/index.html +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/accordion.html +1017 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/addClass.html +109 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/animate.html +78 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/autocomplete.html +875 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/button.html +500 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/datepicker.html +2570 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/dialog.html +1698 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/draggable.html +1577 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/droppable.html +829 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/effect.html +143 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/hide.html +144 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/position.html +227 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/progressbar.html +460 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/removeClass.html +113 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/resizable.html +1201 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/selectable.html +848 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/show.html +144 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/slider.html +860 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/sortable.html +1953 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/switchClass.html +129 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/tabs.html +1549 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/toggle.html +144 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/docs/toggleClass.html +111 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/external/jquery.bgiframe-2.1.2.js +39 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/external/jquery.cookie.js +89 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/external/jquery.metadata.js +122 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/external/qunit.css +153 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/external/qunit.js +1261 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/jquery-1.5.1.js +8316 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css +19 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.all.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.autocomplete.css +53 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.base.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.button.css +38 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.core.css +41 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.datepicker.css +68 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.dialog.css +21 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css +20 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css +10 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css +24 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.tabs.css +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/base/jquery.ui.theme.css +247 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_glass_75_ffffff_1x400.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-bg_inset-soft_95_fef1ec_1x100.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-icons_222222_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-icons_2e83ff_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-icons_454545_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-icons_888888_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery-ui-1.8.14.custom.css +568 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.accordion.css +19 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.all.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.autocomplete.css +53 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.base.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.button.css +38 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.core.css +41 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.datepicker.css +68 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.dialog.css +21 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.progressbar.css +11 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.resizable.css +20 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.selectable.css +10 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.slider.css +24 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.tabs.css +18 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/themes/custom-theme/jquery.ui.theme.css +249 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +1379 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kz.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery-ui-1.8.14.custom.js +11729 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.blind.js +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.bounce.js +78 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.clip.js +54 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.core.js +746 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.drop.js +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.explode.js +79 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.fade.js +32 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.fold.js +56 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.highlight.js +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.pulsate.js +51 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.scale.js +178 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.shake.js +57 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.slide.js +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.effects.transfer.js +45 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.accordion.js +611 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.autocomplete.js +612 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.button.js +416 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.core.js +312 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js +1814 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.dialog.js +878 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.draggable.js +823 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.droppable.js +296 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.mouse.js +160 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.position.js +252 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.progressbar.js +109 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.resizable.js +842 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.selectable.js +266 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.slider.js +666 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.sortable.js +1077 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.tabs.js +758 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/jquery.ui.widget.js +262 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.blind.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.bounce.min.js +15 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.clip.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.core.min.js +30 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.drop.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.explode.min.js +15 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.fade.min.js +13 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.fold.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.highlight.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.scale.min.js +20 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.shake.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.slide.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.effects.transfer.min.js +14 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.accordion.min.js +30 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.autocomplete.min.js +32 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.button.min.js +27 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.core.min.js +17 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.datepicker.min.js +83 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.dialog.min.js +40 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.draggable.min.js +50 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.droppable.min.js +27 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.mouse.min.js +17 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.position.min.js +16 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.progressbar.min.js +16 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.resizable.min.js +49 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.selectable.min.js +22 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.slider.min.js +33 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.sortable.min.js +60 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.tabs.min.js +35 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/ui/minified/jquery.ui.widget.min.js +15 -0
- data/share/views/public/plugins/jquery-ui/development-bundle/version.txt +1 -0
- data/share/views/public/plugins/jquery-ui/index.html +367 -0
- data/share/views/public/plugins/jquery-ui/js/jquery-1.5.1.min.js +16 -0
- data/share/views/public/plugins/jquery-ui/js/jquery-ui-1.8.14.custom.min.js +789 -0
- data/share/views/public/plugins/jquery.scrollTo/jquery.scrollTo.js +218 -0
- data/share/views/public/plugins/jquery.tablesorter/addons/pager/jquery.tablesorter.pager.css +25 -0
- data/share/views/public/plugins/jquery.tablesorter/addons/pager/jquery.tablesorter.pager.js +184 -0
- data/share/views/public/plugins/jquery.tablesorter/build.xml +26 -0
- data/share/views/public/plugins/jquery.tablesorter/build/ParseMaster.js +106 -0
- data/share/views/public/plugins/jquery.tablesorter/build/js.jar +0 -0
- data/share/views/public/plugins/jquery.tablesorter/build/jsmin.js +316 -0
- data/share/views/public/plugins/jquery.tablesorter/build/min.js +5 -0
- data/share/views/public/plugins/jquery.tablesorter/build/pack.js +5 -0
- data/share/views/public/plugins/jquery.tablesorter/build/packer.js +316 -0
- data/share/views/public/plugins/jquery.tablesorter/build/writeFile.js +19 -0
- data/share/views/public/plugins/jquery.tablesorter/changelog +41 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/assets/ajax-content.html +43 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/css/jq.css +29 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-ajax.html +119 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-empty-table.html +75 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-extending-defaults.html +109 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-meta-headers.html +108 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-meta-parsers.html +105 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-meta-sort-list.html +107 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-debug.html +116 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-digits.html +106 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-sort-force.html +107 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-sort-key.html +108 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-sort-list.html +108 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-sort-order.html +108 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-option-text-extraction.html +85 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-options-headers.html +118 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-pager.html +329 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-parsers.html +112 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-trigger-sort.html +113 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-triggers.html +336 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-update-cell.html +118 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/example-widgets.html +383 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/img/external.png +0 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/index.html +576 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/js/docs.js +23 -0
- data/share/views/public/plugins/jquery.tablesorter/docs/js/examples.js +29 -0
- data/share/views/public/plugins/jquery.tablesorter/jquery-latest.js +154 -0
- data/share/views/public/plugins/jquery.tablesorter/jquery.metadata.js +122 -0
- data/share/views/public/plugins/jquery.tablesorter/jquery.tablesorter.js +1037 -0
- data/share/views/public/plugins/jquery.tablesorter/jquery.tablesorter.min.js +4 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/assets/ajax-content.html +28 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/cell.metadata.html +112 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/checkbox.html +117 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/colspan.html +149 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/demo.html +353 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/index.html +22 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/large.html +30 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/lockedOrder.html +355 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/metadata.html +320 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/multiple-headers.html +67 -0
- data/share/views/public/plugins/jquery.tablesorter/tests/pager.html +553 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/blue/asc.gif +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/blue/bg.gif +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/blue/blue.zip +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/blue/desc.gif +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/blue/style.css +39 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/green/asc.png +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/green/bg.png +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/green/desc.png +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/green/green.zip +0 -0
- data/share/views/public/plugins/jquery.tablesorter/themes/green/style.css +39 -0
- data/share/views/public/plugins/jquery/js/jquery-1.8.0.min.js +2 -0
- data/share/views/public/plugins/jquery/js/jquery.cookie.js +47 -0
- data/share/views/public/plugins/jquery/js/jquery.form.js +980 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/demo.html +188 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/fonts/general_foundicons.eot +0 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/fonts/general_foundicons.svg +15 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/fonts/general_foundicons.ttf +0 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/fonts/general_foundicons.woff +0 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/sass/_settings.scss +28 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/sass/general_foundicons.scss +71 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/sass/general_foundicons_ie7.scss +56 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/stylesheets/general_foundicons.css +216 -0
- data/share/views/public/plugins/zurb-icons/foundation_icons_general/stylesheets/general_foundicons_ie7.css +194 -0
- data/share/views/public/plugins/zurb-responsive-tables/js/responsive-tables.js +66 -0
- data/share/views/public/plugins/zurb-responsive-tables/stylesheets/responsive-tables.css +50 -0
- data/share/views/tasks.haml +8 -0
- data/share/views/wait.haml +6 -0
- metadata +778 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
importPackage(java.io);
|
2
|
+
|
3
|
+
function writeFile( file, stream ) {
|
4
|
+
var buffer = new PrintWriter( new FileWriter( file ) );
|
5
|
+
buffer.print( stream );
|
6
|
+
buffer.close();
|
7
|
+
}
|
8
|
+
|
9
|
+
function read( file ) {
|
10
|
+
var jq = new File(file);
|
11
|
+
var reader = new BufferedReader(new FileReader(jq));
|
12
|
+
var line = null;
|
13
|
+
var buffer = new java.lang.StringBuffer(jq.length());
|
14
|
+
while( (line = reader.readLine()) != null) {
|
15
|
+
buffer.append(line);
|
16
|
+
buffer.append("\n");
|
17
|
+
}
|
18
|
+
return buffer.toString();
|
19
|
+
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
tablesorter changelog
|
2
|
+
======================
|
3
|
+
http://tablesorter.com
|
4
|
+
|
5
|
+
Changes in version 2.0.3 (2008-03-17)
|
6
|
+
-------------------------------------
|
7
|
+
|
8
|
+
Bug fixes
|
9
|
+
* Missing semicolon, broke the minified version
|
10
|
+
|
11
|
+
|
12
|
+
Changes in version 2.0.2 (2008-03-14)
|
13
|
+
-------------------------------------
|
14
|
+
|
15
|
+
General
|
16
|
+
* Added support for the new metadata plugin
|
17
|
+
* Added support for jQuery 1.2.3
|
18
|
+
* Added support for decimal numbers and negative and positive digits
|
19
|
+
* Updated documenation and website with new examples
|
20
|
+
* Removed packed version.
|
21
|
+
|
22
|
+
Bug fixes
|
23
|
+
* Sort force (Thanks to David Lynch)
|
24
|
+
|
25
|
+
|
26
|
+
Changes in version 2.0.1 (2007-09-17)
|
27
|
+
-------------------------------------
|
28
|
+
|
29
|
+
General
|
30
|
+
* Removed the need for Dimensions plugin when using the pagnation plugin thanks to offset being included in the jQuery 1.2 core.
|
31
|
+
* Added support for jQuery 1.2
|
32
|
+
* Added new Minified version of tablesorter
|
33
|
+
* Updated documenation and website with new examples
|
34
|
+
|
35
|
+
Bug fixes
|
36
|
+
* If row values are identical the original order is kept (Thanks to David hull)
|
37
|
+
* If thead includes a table $('tbody:first', table) breaks (Thanks to David Hull)
|
38
|
+
|
39
|
+
Speed improvements:
|
40
|
+
* appendToTable, setting innerHTML to "" before appending new content to table body.
|
41
|
+
* zebra widget. (Thanks to James Dempster)
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<tr>
|
2
|
+
<td>Peter</td>
|
3
|
+
<td>Parker</td>
|
4
|
+
<td>28</td>
|
5
|
+
<td>$9.99</td>
|
6
|
+
<td>20%</td>
|
7
|
+
|
8
|
+
<td>Jul 6, 2006 8:14 AM</td>
|
9
|
+
</tr>
|
10
|
+
<tr>
|
11
|
+
<td>John</td>
|
12
|
+
<td>Hood</td>
|
13
|
+
<td>33</td>
|
14
|
+
<td>$19.99</td>
|
15
|
+
<td>25%</td>
|
16
|
+
|
17
|
+
<td>Dec 10, 2002 5:14 AM</td>
|
18
|
+
</tr>
|
19
|
+
<tr>
|
20
|
+
<td>Clark</td>
|
21
|
+
<td>Kent</td>
|
22
|
+
<td>18</td>
|
23
|
+
<td>$15.89</td>
|
24
|
+
<td>44%</td>
|
25
|
+
<td>Jan 12, 2003 11:14 AM</td>
|
26
|
+
</tr>
|
27
|
+
<tr>
|
28
|
+
<td>Bruce</td>
|
29
|
+
<td>Almighty</td>
|
30
|
+
<td>45</td>
|
31
|
+
<td>$153.19</td>
|
32
|
+
<td>44%</td>
|
33
|
+
|
34
|
+
<td>Jan 18, 2001 9:12 AM</td>
|
35
|
+
</tr>
|
36
|
+
<tr>
|
37
|
+
<td>Bruce</td>
|
38
|
+
<td>Evans</td>
|
39
|
+
<td>22</td>
|
40
|
+
<td>$13.19</td>
|
41
|
+
<td>11%</td>
|
42
|
+
<td>Jan 18, 2007 9:12 AM</td>
|
43
|
+
</tr>
|
@@ -0,0 +1,29 @@
|
|
1
|
+
body,div,h1{font-family:'trebuchet ms', verdana, arial;margin:0;padding:0;}
|
2
|
+
body{background-color:#fff;color:#333;font-size:small;margin:0;padding:0;}
|
3
|
+
h1{font-size:large;font-weight:400;margin:0;}
|
4
|
+
h2{color:#333;font-size:small;font-weight:400;margin:0;}
|
5
|
+
pre{background-color:#eee;border:1px solid #ddd;border-left-width:5px;color:#333;font-size:small;overflow-x:auto;padding:15px;}
|
6
|
+
pre.normal{background-color:transparent;border:none;border-left-width:0;overflow-x:auto;}
|
7
|
+
#logo{background:url(images/jq.png);display:block;float:right;height:31px;margin-right:10px;margin-top:10px;width:110px;}
|
8
|
+
#main{margin:0 20px 20px;padding:0 15px 15px 0;}
|
9
|
+
#content{padding:20px;}
|
10
|
+
#busy{background-color:#e95555;border:1px ridge #ccc;color:#eee;display:none;padding:3px;position:absolute;right:7px;top:7px;}
|
11
|
+
hr{height:1px;}
|
12
|
+
code{font-size:108%;font-style:normal;padding:0;}
|
13
|
+
ul{color:#333;list-style:square;}
|
14
|
+
#banner{margin:20px;padding-bottom:10px;text-align:left;}
|
15
|
+
#banner *{color:#232121;font-family:Georgia, Palatino, Times New Roman;font-size:30px;font-style:normal;font-weight:400;margin:0;padding:0;}
|
16
|
+
#banner h1{display:block;float:left;}
|
17
|
+
#banner h1 em{color:#6cf;}
|
18
|
+
#banner h2{float:right;font-size:26px;margin:10px 10px -10px -10px;}
|
19
|
+
#banner h3{clear:both;display:block;font-size:12px;margin-top:-20px;}
|
20
|
+
#banner a{border-top:1px solid #888;display:block;font-size:14px;margin:5px 0 0;padding:10px 0 0;text-align:right;width:auto;}
|
21
|
+
a.external{background-image:url(../img/external.png);background-position:center right;background-repeat:no-repeat;padding-right:12px;}
|
22
|
+
form{font-size:10pt;margin-bottom:20px;width:auto;}
|
23
|
+
form fieldset{padding:10px;text-align:left;width:140px;}
|
24
|
+
div#main h1{border-bottom:1px solid #CDCDCD;display:block;margin-top:20px;padding:10px 0 2px;}
|
25
|
+
table#tablesorter-demo {margin: 10px 0 0 0;}
|
26
|
+
table#options *{font-size:small;}
|
27
|
+
p.tip em {padding: 2px; background-color: #6cf; color: #FFF;}
|
28
|
+
p.tip.update em {background-color: #FF0000;}
|
29
|
+
div.digg {float: right;}
|
@@ -0,0 +1,119 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
|
4
|
+
<head>
|
5
|
+
<title>jQuery plugin: Tablesorter 2.0 - Appending table data with ajax</title>
|
6
|
+
<link rel="stylesheet" href="css/jq.css" type="text/css" media="print, projection, screen" />
|
7
|
+
<link rel="stylesheet" href="../themes/blue/style.css" type="text/css" id="" media="print, projection, screen" />
|
8
|
+
<script type="text/javascript" src="../jquery-latest.js"></script>
|
9
|
+
<script type="text/javascript" src="../jquery.tablesorter.js"></script>
|
10
|
+
<script type="text/javascript" src="js/chili/chili-1.8b.js"></script>
|
11
|
+
<script type="text/javascript" src="js/docs.js"></script>
|
12
|
+
<script type="text/javascript" src="js/examples.js"></script>
|
13
|
+
<script type="text/javascript" id="js">
|
14
|
+
$(document).ready(function() {
|
15
|
+
$("table").tablesorter();
|
16
|
+
$("#ajax-append").click(function() {
|
17
|
+
$.get("assets/ajax-content.html", function(html) {
|
18
|
+
// append the "ajax'd" data to the table body
|
19
|
+
$("table tbody").append(html);
|
20
|
+
// let the plugin know that we made a update
|
21
|
+
$("table").trigger("update");
|
22
|
+
// set sorting column and direction, this will sort on the first and third column
|
23
|
+
var sorting = [[2,1],[0,0]];
|
24
|
+
// sort on the first column
|
25
|
+
$("table").trigger("sorton",[sorting]);
|
26
|
+
});
|
27
|
+
return false;
|
28
|
+
});
|
29
|
+
});
|
30
|
+
</script>
|
31
|
+
</head>
|
32
|
+
<body>
|
33
|
+
<div id="banner">
|
34
|
+
<h1>table<em>sorter</em></h1>
|
35
|
+
<h2>Appending table data with ajax</h2>
|
36
|
+
<h3>Flexible client-side table sorting</h3>
|
37
|
+
<a href="index.html">Back to documentation</a>
|
38
|
+
</div>
|
39
|
+
<div id="main">
|
40
|
+
<h1>Demo</h1>
|
41
|
+
<div id="demo">
|
42
|
+
<table cellspacing="1" class="tablesorter">
|
43
|
+
<thead>
|
44
|
+
<tr>
|
45
|
+
<th>First Name</th>
|
46
|
+
<th>Last Name</th>
|
47
|
+
<th>Age</th>
|
48
|
+
<th>Total</th>
|
49
|
+
<th>Discount</th>
|
50
|
+
<th>Date</th>
|
51
|
+
|
52
|
+
</tr>
|
53
|
+
</thead>
|
54
|
+
<tbody>
|
55
|
+
<tr>
|
56
|
+
<td>Peter</td>
|
57
|
+
<td>Parker</td>
|
58
|
+
<td>28</td>
|
59
|
+
<td>$9.99</td>
|
60
|
+
<td>20%</td>
|
61
|
+
|
62
|
+
<td>Jul 6, 2006 8:14 AM</td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td>John</td>
|
66
|
+
<td>Hood</td>
|
67
|
+
<td>33</td>
|
68
|
+
<td>$19.99</td>
|
69
|
+
<td>25%</td>
|
70
|
+
|
71
|
+
<td>Dec 10, 2002 5:14 AM</td>
|
72
|
+
</tr>
|
73
|
+
<tr>
|
74
|
+
<td>Clark</td>
|
75
|
+
<td>Kent</td>
|
76
|
+
<td>18</td>
|
77
|
+
<td>$15.89</td>
|
78
|
+
<td>44%</td>
|
79
|
+
<td>Jan 12, 2003 11:14 AM</td>
|
80
|
+
</tr>
|
81
|
+
<tr>
|
82
|
+
<td>Bruce</td>
|
83
|
+
<td>Almighty</td>
|
84
|
+
<td>45</td>
|
85
|
+
<td>$153.19</td>
|
86
|
+
<td>44%</td>
|
87
|
+
|
88
|
+
<td>Jan 18, 2001 9:12 AM</td>
|
89
|
+
</tr>
|
90
|
+
<tr>
|
91
|
+
<td>Bruce</td>
|
92
|
+
<td>Evans</td>
|
93
|
+
<td>22</td>
|
94
|
+
<td>$13.19</td>
|
95
|
+
<td>11%</td>
|
96
|
+
<td>Jan 18, 2007 9:12 AM</td>
|
97
|
+
</tr>
|
98
|
+
</tbody>
|
99
|
+
</table>
|
100
|
+
<a href="#" id="ajax-append">Append new table data</a>
|
101
|
+
<br/>
|
102
|
+
<br/>
|
103
|
+
</div>
|
104
|
+
<h1>Javascript</h1>
|
105
|
+
<div id="javascript">
|
106
|
+
<pre class="javascript"></pre>
|
107
|
+
</div>
|
108
|
+
<h1>HTML</h1>
|
109
|
+
<div id="html">
|
110
|
+
<pre class="html"></pre>
|
111
|
+
</div>
|
112
|
+
</div>
|
113
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
|
114
|
+
<script type="text/javascript">
|
115
|
+
_uacct = "UA-2189649-2";
|
116
|
+
urchinTracker();
|
117
|
+
</script>
|
118
|
+
</body>
|
119
|
+
</html>
|
@@ -0,0 +1,75 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
|
4
|
+
<head>
|
5
|
+
<title>jQuery plugin: Tablesorter 2.0 - Initializing tablesorter on a empty table</title>
|
6
|
+
<link rel="stylesheet" href="css/jq.css" type="text/css" media="print, projection, screen" />
|
7
|
+
<link rel="stylesheet" href="../themes/blue/style.css" type="text/css" id="" media="print, projection, screen" />
|
8
|
+
<script type="text/javascript" src="../jquery-latest.js"></script>
|
9
|
+
<script type="text/javascript" src="../jquery.tablesorter.js"></script>
|
10
|
+
<script type="text/javascript" src="js/chili/chili-1.8b.js"></script>
|
11
|
+
<script type="text/javascript" src="js/docs.js"></script>
|
12
|
+
<script type="text/javascript" src="js/examples.js"></script>
|
13
|
+
<script type="text/javascript" id="js">$(document).ready(function() {
|
14
|
+
$("table").tablesorter();
|
15
|
+
$("#append").click(function() {
|
16
|
+
// add some html
|
17
|
+
var html = "<tr><td>Peter</td><td>Parker</td><td>28</td><td>$9.99</td><td>20%</td><td>Jul 6, 2006 8:14 AM</td></tr>";
|
18
|
+
html += "<tr><td>John</td><td>Hood</td><td>33</td><td>$19.99</td><td>25%</td><td>Dec 10, 2002 5:14 AM</td></tr><tr><td>Clark</td><td>Kent</td><td>18</td><td>$15.89</td><td>44%</td><td>Jan 12, 2003 11:14 AM</td></tr>";
|
19
|
+
html += "<tr><td>Bruce</td><td>Almighty</td><td>45</td><td>$153.19</td><td>44%</td><td>Jan 18, 2001 9:12 AM</td></tr>";
|
20
|
+
// append new html to table body
|
21
|
+
$("table tbody").append(html);
|
22
|
+
// let the plugin know that we made a update
|
23
|
+
$("table").trigger("update");
|
24
|
+
// set sorting column and direction, this will sort on the first and third column
|
25
|
+
var sorting = [[2,1],[0,0]];
|
26
|
+
// sort on the first column
|
27
|
+
$("table").trigger("sorton",[sorting]);
|
28
|
+
return false;
|
29
|
+
});
|
30
|
+
});</script>
|
31
|
+
</head>
|
32
|
+
<body>
|
33
|
+
<div id="banner">
|
34
|
+
<h1>table<em>sorter</em></h1>
|
35
|
+
<h2>Initializing tablesorter on a empty table</h2>
|
36
|
+
<h3>Flexible client-side table sorting</h3>
|
37
|
+
<a href="index.html">Back to documentation</a>
|
38
|
+
</div>
|
39
|
+
<div id="main">
|
40
|
+
<h1>Demo</h1>
|
41
|
+
<div id="demo">
|
42
|
+
<table cellspacing="1" class="tablesorter">
|
43
|
+
<thead>
|
44
|
+
<tr>
|
45
|
+
<th>First Name</th>
|
46
|
+
<th>Last Name</th>
|
47
|
+
<th>Age</th>
|
48
|
+
<th>Total</th>
|
49
|
+
<th>Discount</th>
|
50
|
+
<th>Date</th>
|
51
|
+
</tr>
|
52
|
+
</thead>
|
53
|
+
<tbody>
|
54
|
+
</tbody>
|
55
|
+
</table>
|
56
|
+
<a href="#" id="append">Append new table data</a>
|
57
|
+
<br/>
|
58
|
+
<br/>
|
59
|
+
</div>
|
60
|
+
<h1>Javascript</h1>
|
61
|
+
<div id="javascript">
|
62
|
+
<pre class="javascript"></pre>
|
63
|
+
</div>
|
64
|
+
<h1>HTML</h1>
|
65
|
+
<div id="html">
|
66
|
+
<pre class="html"></pre>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
|
70
|
+
<script type="text/javascript">
|
71
|
+
_uacct = "UA-2189649-2";
|
72
|
+
urchinTracker();
|
73
|
+
</script>
|
74
|
+
</body>
|
75
|
+
</html>
|
@@ -0,0 +1,109 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
|
4
|
+
<head>
|
5
|
+
<title>jQuery plugin: Tablesorter 2.0 - Extending default options</title>
|
6
|
+
<link rel="stylesheet" href="css/jq.css" type="text/css" media="print, projection, screen" />
|
7
|
+
<link rel="stylesheet" href="../themes/blue/style.css" type="text/css" id="" media="print, projection, screen" />
|
8
|
+
<script type="text/javascript" src="../jquery-latest.js"></script>
|
9
|
+
|
10
|
+
<script type="text/javascript" src="../jquery.tablesorter.js"></script>
|
11
|
+
<script type="text/javascript" src="../addons/pager/jquery.tablesorter.pager.js"></script>
|
12
|
+
<script type="text/javascript" src="js/chili/chili-1.8b.js"></script>
|
13
|
+
<script type="text/javascript" src="js/docs.js"></script>
|
14
|
+
<script type="text/javascript" src="js/examples.js"></script>
|
15
|
+
<script type="text/javascript" id="js">$(document).ready(function() {
|
16
|
+
// extend the default setting to always include the zebra widget.
|
17
|
+
$.tablesorter.defaults.widgets = ['zebra'];
|
18
|
+
// extend the default setting to always sort on the first column
|
19
|
+
$.tablesorter.defaults.sortList = [[0,0]];
|
20
|
+
// call the tablesorter plugin
|
21
|
+
$("table").tablesorter();
|
22
|
+
}); </script>
|
23
|
+
</head>
|
24
|
+
<body>
|
25
|
+
<div id="banner">
|
26
|
+
<h1>table<em>sorter</em></h1>
|
27
|
+
<h2>Extending default options</h2>
|
28
|
+
<h3>Flexible client-side table sorting</h3>
|
29
|
+
<a href="index.html">Back to documentation</a>
|
30
|
+
</div>
|
31
|
+
<div id="main">
|
32
|
+
<h1>Demo</h1>
|
33
|
+
<div id="demo">
|
34
|
+
<table cellspacing="1" class="tablesorter">
|
35
|
+
<thead>
|
36
|
+
<tr>
|
37
|
+
<th>First Name</th>
|
38
|
+
<th>Last Name</th>
|
39
|
+
<th>Age</th>
|
40
|
+
<th>Total</th>
|
41
|
+
<th>Discount</th>
|
42
|
+
<th>Date</th>
|
43
|
+
|
44
|
+
</tr>
|
45
|
+
</thead>
|
46
|
+
<tbody>
|
47
|
+
<tr>
|
48
|
+
<td>Peter</td>
|
49
|
+
<td>Parker</td>
|
50
|
+
<td>28</td>
|
51
|
+
<td>$9.99</td>
|
52
|
+
<td>20%</td>
|
53
|
+
|
54
|
+
<td>Jul 6, 2006 8:14 AM</td>
|
55
|
+
</tr>
|
56
|
+
<tr>
|
57
|
+
<td>John</td>
|
58
|
+
<td>Hood</td>
|
59
|
+
<td>33</td>
|
60
|
+
<td>$19.99</td>
|
61
|
+
<td>25%</td>
|
62
|
+
|
63
|
+
<td>Dec 10, 2002 5:14 AM</td>
|
64
|
+
</tr>
|
65
|
+
<tr>
|
66
|
+
<td>Clark</td>
|
67
|
+
<td>Kent</td>
|
68
|
+
<td>18</td>
|
69
|
+
<td>$15.89</td>
|
70
|
+
<td>44%</td>
|
71
|
+
<td>Jan 12, 2003 11:14 AM</td>
|
72
|
+
</tr>
|
73
|
+
<tr>
|
74
|
+
<td>Bruce</td>
|
75
|
+
<td>Almighty</td>
|
76
|
+
<td>45</td>
|
77
|
+
<td>$153.19</td>
|
78
|
+
<td>44%</td>
|
79
|
+
|
80
|
+
<td>Jan 18, 2001 9:12 AM</td>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td>Bruce</td>
|
84
|
+
<td>Evans</td>
|
85
|
+
<td>22</td>
|
86
|
+
<td>$13.19</td>
|
87
|
+
<td>11%</td>
|
88
|
+
<td>Jan 18, 2007 9:12 AM</td>
|
89
|
+
</tr>
|
90
|
+
</tbody>
|
91
|
+
</table>
|
92
|
+
</div>
|
93
|
+
<h1>Javascript</h1>
|
94
|
+
<div id="javascript">
|
95
|
+
<pre class="javascript"></pre>
|
96
|
+
</div>
|
97
|
+
<h1>HTML</h1>
|
98
|
+
<div id="html">
|
99
|
+
<pre class="html"></pre>
|
100
|
+
</div>
|
101
|
+
</div>
|
102
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
|
103
|
+
<script type="text/javascript">
|
104
|
+
_uacct = "UA-2189649-2";
|
105
|
+
urchinTracker();
|
106
|
+
</script>
|
107
|
+
</body>
|
108
|
+
</html>
|
109
|
+
|
@@ -0,0 +1,108 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us">
|
4
|
+
<head>
|
5
|
+
<title>jQuery plugin: Tablesorter 2.0 - Disable headers using metadata</title>
|
6
|
+
<link rel="stylesheet" href="css/jq.css" type="text/css" media="print, projection, screen" />
|
7
|
+
<link rel="stylesheet" href="../themes/blue/style.css" type="text/css" id="" media="print, projection, screen" />
|
8
|
+
<script type="text/javascript" src="../jquery-latest.js"></script>
|
9
|
+
|
10
|
+
<script type="text/javascript" src="../jquery.metadata.js"></script>
|
11
|
+
<script type="text/javascript" src="../jquery.tablesorter.js"></script>
|
12
|
+
<script type="text/javascript" src="../addons/pager/jquery.tablesorter.pager.js"></script>
|
13
|
+
<script type="text/javascript" src="js/chili/chili-1.8b.js"></script>
|
14
|
+
<script type="text/javascript" src="js/docs.js"></script>
|
15
|
+
<script type="text/javascript">
|
16
|
+
window.tableFile="table-metadata-disable.html";
|
17
|
+
</script>
|
18
|
+
<script type="text/javascript" src="js/examples.js"></script>
|
19
|
+
<script type="text/javascript" id="js">$(document).ready(function() {
|
20
|
+
// call the tablesorter plugin, the magic happens in the markup
|
21
|
+
$("table").tablesorter();
|
22
|
+
}); </script>
|
23
|
+
</head>
|
24
|
+
<body>
|
25
|
+
<div id="banner">
|
26
|
+
<h1>table<em>sorter</em></h1>
|
27
|
+
<h2>Disable headers using metadata</h2>
|
28
|
+
<h3>Flexible client-side table sorting</h3>
|
29
|
+
<a href="index.html">Back to documentation</a>
|
30
|
+
</div>
|
31
|
+
<div id="main">
|
32
|
+
<h1>Demo</h1>
|
33
|
+
<div id="demo">
|
34
|
+
<table cellspacing="1" class="tablesorter">
|
35
|
+
<thead>
|
36
|
+
<tr>
|
37
|
+
<th class="{sorter: false}">First Name</th>
|
38
|
+
<th>Last Name</th>
|
39
|
+
<th>Age</th>
|
40
|
+
<th>Total</th>
|
41
|
+
<th class="{sorter: false}">Discount</th>
|
42
|
+
<th>Date</th>
|
43
|
+
</tr>
|
44
|
+
</thead>
|
45
|
+
<tbody>
|
46
|
+
<tr>
|
47
|
+
<td>Peter</td>
|
48
|
+
<td>Parker</td>
|
49
|
+
<td>28</td>
|
50
|
+
<td>$9.99</td>
|
51
|
+
<td>20%</td>
|
52
|
+
|
53
|
+
<td>Jul 6, 2006 8:14 AM</td>
|
54
|
+
</tr>
|
55
|
+
<tr>
|
56
|
+
<td>John</td>
|
57
|
+
<td>Hood</td>
|
58
|
+
<td>33</td>
|
59
|
+
<td>$19.99</td>
|
60
|
+
<td>25%</td>
|
61
|
+
|
62
|
+
<td>Dec 10, 2002 5:14 AM</td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td>Clark</td>
|
66
|
+
<td>Kent</td>
|
67
|
+
<td>18</td>
|
68
|
+
<td>$15.89</td>
|
69
|
+
<td>44%</td>
|
70
|
+
<td>Jan 12, 2003 11:14 AM</td>
|
71
|
+
</tr>
|
72
|
+
<tr>
|
73
|
+
<td>Bruce</td>
|
74
|
+
<td>Almighty</td>
|
75
|
+
<td>45</td>
|
76
|
+
<td>$153.19</td>
|
77
|
+
<td>44%</td>
|
78
|
+
|
79
|
+
<td>Jan 18, 2001 9:12 AM</td>
|
80
|
+
</tr>
|
81
|
+
<tr>
|
82
|
+
<td>Bruce</td>
|
83
|
+
<td>Evans</td>
|
84
|
+
<td>22</td>
|
85
|
+
<td>$13.19</td>
|
86
|
+
<td>11%</td>
|
87
|
+
<td>Jan 18, 2007 9:12 AM</td>
|
88
|
+
</tr>
|
89
|
+
</tbody>
|
90
|
+
</table>
|
91
|
+
</div>
|
92
|
+
<h1>Javascript</h1>
|
93
|
+
<div id="javascript">
|
94
|
+
<pre class="javascript"></pre>
|
95
|
+
</div>
|
96
|
+
<h1>HTML</h1>
|
97
|
+
<div id="html">
|
98
|
+
<pre class="html"></pre>
|
99
|
+
</div>
|
100
|
+
</div>
|
101
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
|
102
|
+
<script type="text/javascript">
|
103
|
+
_uacct = "UA-2189649-2";
|
104
|
+
urchinTracker();
|
105
|
+
</script>
|
106
|
+
</body>
|
107
|
+
</html>
|
108
|
+
|