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,106 @@
|
|
1
|
+
/*
|
2
|
+
ParseMaster, version 1.0.2 (2005-08-19)
|
3
|
+
Copyright 2005, Dean Edwards
|
4
|
+
License: http://creativecommons.org/licenses/LGPL/2.1/
|
5
|
+
*/
|
6
|
+
|
7
|
+
/* a multi-pattern parser */
|
8
|
+
|
9
|
+
// KNOWN BUG: erroneous behavior when using escapeChar with a replacement value that is a function
|
10
|
+
|
11
|
+
function ParseMaster() {
|
12
|
+
// constants
|
13
|
+
var $EXPRESSION = 0, $REPLACEMENT = 1, $LENGTH = 2;
|
14
|
+
// used to determine nesting levels
|
15
|
+
var $GROUPS = /\(/g, $SUB_REPLACE = /\$\d/, $INDEXED = /^\$\d+$/,
|
16
|
+
$TRIM = /(['"])\1\+(.*)\+\1\1$/, $$ESCAPE = /\\./g, $QUOTE = /'/,
|
17
|
+
$$DELETED = /\x01[^\x01]*\x01/g;
|
18
|
+
var self = this;
|
19
|
+
// public
|
20
|
+
this.add = function($expression, $replacement) {
|
21
|
+
if (!$replacement) $replacement = "";
|
22
|
+
// count the number of sub-expressions
|
23
|
+
// - add one because each pattern is itself a sub-expression
|
24
|
+
var $length = (_internalEscape(String($expression)).match($GROUPS) || "").length + 1;
|
25
|
+
// does the pattern deal with sub-expressions?
|
26
|
+
if ($SUB_REPLACE.test($replacement)) {
|
27
|
+
// a simple lookup? (e.g. "$2")
|
28
|
+
if ($INDEXED.test($replacement)) {
|
29
|
+
// store the index (used for fast retrieval of matched strings)
|
30
|
+
$replacement = parseInt($replacement.slice(1)) - 1;
|
31
|
+
} else { // a complicated lookup (e.g. "Hello $2 $1")
|
32
|
+
// build a function to do the lookup
|
33
|
+
var i = $length;
|
34
|
+
var $quote = $QUOTE.test(_internalEscape($replacement)) ? '"' : "'";
|
35
|
+
while (i) $replacement = $replacement.split("$" + i--).join($quote + "+a[o+" + i + "]+" + $quote);
|
36
|
+
$replacement = new Function("a,o", "return" + $quote + $replacement.replace($TRIM, "$1") + $quote);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
// pass the modified arguments
|
40
|
+
_add($expression || "/^$/", $replacement, $length);
|
41
|
+
};
|
42
|
+
// execute the global replacement
|
43
|
+
this.exec = function($string) {
|
44
|
+
_escaped.length = 0;
|
45
|
+
return _unescape(_escape($string, this.escapeChar).replace(
|
46
|
+
new RegExp(_patterns, this.ignoreCase ? "gi" : "g"), _replacement), this.escapeChar).replace($$DELETED, "");
|
47
|
+
};
|
48
|
+
// clear the patterns collection so that this object may be re-used
|
49
|
+
this.reset = function() {
|
50
|
+
_patterns.length = 0;
|
51
|
+
};
|
52
|
+
|
53
|
+
// private
|
54
|
+
var _escaped = []; // escaped characters
|
55
|
+
var _patterns = []; // patterns stored by index
|
56
|
+
var _toString = function(){return "(" + String(this[$EXPRESSION]).slice(1, -1) + ")"};
|
57
|
+
_patterns.toString = function(){return this.join("|")};
|
58
|
+
// create and add a new pattern to the patterns collection
|
59
|
+
function _add() {
|
60
|
+
arguments.toString = _toString;
|
61
|
+
// store the pattern - as an arguments object (i think this is quicker..?)
|
62
|
+
_patterns[_patterns.length] = arguments;
|
63
|
+
}
|
64
|
+
// this is the global replace function (it's quite complicated)
|
65
|
+
function _replacement() {
|
66
|
+
if (!arguments[0]) return "";
|
67
|
+
var i = 1, j = 0, $pattern;
|
68
|
+
// loop through the patterns
|
69
|
+
while ($pattern = _patterns[j++]) {
|
70
|
+
// do we have a result?
|
71
|
+
if (arguments[i]) {
|
72
|
+
var $replacement = $pattern[$REPLACEMENT];
|
73
|
+
switch (typeof $replacement) {
|
74
|
+
case "function": return $replacement(arguments, i);
|
75
|
+
case "number": return arguments[$replacement + i];
|
76
|
+
}
|
77
|
+
var $delete = (arguments[i].indexOf(self.escapeChar) == -1) ? "" :
|
78
|
+
"\x01" + arguments[i] + "\x01";
|
79
|
+
return $delete + $replacement;
|
80
|
+
// skip over references to sub-expressions
|
81
|
+
} else i += $pattern[$LENGTH];
|
82
|
+
}
|
83
|
+
};
|
84
|
+
// encode escaped characters
|
85
|
+
function _escape($string, $escapeChar) {
|
86
|
+
return $escapeChar ? $string.replace(new RegExp("\\" + $escapeChar + "(.)", "g"), function($match, $char) {
|
87
|
+
_escaped[_escaped.length] = $char;
|
88
|
+
return $escapeChar;
|
89
|
+
}) : $string;
|
90
|
+
};
|
91
|
+
// decode escaped characters
|
92
|
+
function _unescape($string, $escapeChar) {
|
93
|
+
var i = 0;
|
94
|
+
return $escapeChar ? $string.replace(new RegExp("\\" + $escapeChar, "g"), function() {
|
95
|
+
return $escapeChar + (_escaped[i++] || "");
|
96
|
+
}) : $string;
|
97
|
+
};
|
98
|
+
function _internalEscape($string) {
|
99
|
+
return $string.replace($$ESCAPE, "");
|
100
|
+
};
|
101
|
+
};
|
102
|
+
ParseMaster.prototype = {
|
103
|
+
constructor: ParseMaster,
|
104
|
+
ignoreCase: false,
|
105
|
+
escapeChar: ""
|
106
|
+
};
|
Binary file
|
@@ -0,0 +1,316 @@
|
|
1
|
+
/* jsmin.js - 2006-08-31
|
2
|
+
Author: Franck Marcia
|
3
|
+
This work is an adaptation of jsminc.c published by Douglas Crockford.
|
4
|
+
Permission is hereby granted to use the Javascript version under the same
|
5
|
+
conditions as the jsmin.c on which it is based.
|
6
|
+
|
7
|
+
jsmin.c
|
8
|
+
2006-05-04
|
9
|
+
|
10
|
+
Copyright (c) 2002 Douglas Crockford (www.crockford.com)
|
11
|
+
|
12
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
13
|
+
this software and associated documentation files (the "Software"), to deal in
|
14
|
+
the Software without restriction, including without limitation the rights to
|
15
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
16
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
17
|
+
so, subject to the following conditions:
|
18
|
+
|
19
|
+
The above copyright notice and this permission notice shall be included in all
|
20
|
+
copies or substantial portions of the Software.
|
21
|
+
|
22
|
+
The Software shall be used for Good, not Evil.
|
23
|
+
|
24
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
25
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
26
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
27
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
28
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
29
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
30
|
+
SOFTWARE.
|
31
|
+
|
32
|
+
Update:
|
33
|
+
add level:
|
34
|
+
1: minimal, keep linefeeds if single
|
35
|
+
2: normal, the standard algorithm
|
36
|
+
3: agressive, remove any linefeed and doesn't take care of potential
|
37
|
+
missing semicolons (can be regressive)
|
38
|
+
store stats
|
39
|
+
jsmin.oldSize
|
40
|
+
jsmin.newSize
|
41
|
+
*/
|
42
|
+
|
43
|
+
String.prototype.has = function(c) {
|
44
|
+
return this.indexOf(c) > -1;
|
45
|
+
};
|
46
|
+
|
47
|
+
function jsmin(comment, input, level) {
|
48
|
+
|
49
|
+
if (input === undefined) {
|
50
|
+
input = comment;
|
51
|
+
comment = '';
|
52
|
+
level = 2;
|
53
|
+
} else if (level === undefined || level < 1 || level > 3) {
|
54
|
+
level = 2;
|
55
|
+
}
|
56
|
+
|
57
|
+
if (comment.length > 0) {
|
58
|
+
comment += '\n';
|
59
|
+
}
|
60
|
+
|
61
|
+
var a = '',
|
62
|
+
b = '',
|
63
|
+
EOF = -1,
|
64
|
+
LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz',
|
65
|
+
DIGITS = '0123456789',
|
66
|
+
ALNUM = LETTERS + DIGITS + '_$\\',
|
67
|
+
theLookahead = EOF;
|
68
|
+
|
69
|
+
|
70
|
+
/* isAlphanum -- return true if the character is a letter, digit, underscore,
|
71
|
+
dollar sign, or non-ASCII character.
|
72
|
+
*/
|
73
|
+
|
74
|
+
function isAlphanum(c) {
|
75
|
+
return c != EOF && (ALNUM.has(c) || c.charCodeAt(0) > 126);
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/* get -- return the next character. Watch out for lookahead. If the
|
80
|
+
character is a control character, translate it to a space or
|
81
|
+
linefeed.
|
82
|
+
*/
|
83
|
+
|
84
|
+
function get() {
|
85
|
+
|
86
|
+
var c = theLookahead;
|
87
|
+
if (get.i == get.l) {
|
88
|
+
return EOF;
|
89
|
+
}
|
90
|
+
theLookahead = EOF;
|
91
|
+
if (c == EOF) {
|
92
|
+
c = input.charAt(get.i);
|
93
|
+
++get.i;
|
94
|
+
}
|
95
|
+
if (c >= ' ' || c == '\n') {
|
96
|
+
return c;
|
97
|
+
}
|
98
|
+
if (c == '\r') {
|
99
|
+
return '\n';
|
100
|
+
}
|
101
|
+
return ' ';
|
102
|
+
}
|
103
|
+
|
104
|
+
get.i = 0;
|
105
|
+
get.l = input.length;
|
106
|
+
|
107
|
+
|
108
|
+
/* peek -- get the next character without getting it.
|
109
|
+
*/
|
110
|
+
|
111
|
+
function peek() {
|
112
|
+
theLookahead = get();
|
113
|
+
return theLookahead;
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
/* next -- get the next character, excluding comments. peek() is used to see
|
118
|
+
if a '/' is followed by a '/' or '*'.
|
119
|
+
*/
|
120
|
+
|
121
|
+
function next() {
|
122
|
+
|
123
|
+
var c = get();
|
124
|
+
if (c == '/') {
|
125
|
+
switch (peek()) {
|
126
|
+
case '/':
|
127
|
+
for (;;) {
|
128
|
+
c = get();
|
129
|
+
if (c <= '\n') {
|
130
|
+
return c;
|
131
|
+
}
|
132
|
+
}
|
133
|
+
break;
|
134
|
+
case '*':
|
135
|
+
get();
|
136
|
+
for (;;) {
|
137
|
+
switch (get()) {
|
138
|
+
case '*':
|
139
|
+
if (peek() == '/') {
|
140
|
+
get();
|
141
|
+
return ' ';
|
142
|
+
}
|
143
|
+
break;
|
144
|
+
case EOF:
|
145
|
+
throw 'Error: Unterminated comment.';
|
146
|
+
}
|
147
|
+
}
|
148
|
+
break;
|
149
|
+
default:
|
150
|
+
return c;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
return c;
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
/* action -- do something! What you do is determined by the argument:
|
158
|
+
1 Output A. Copy B to A. Get the next B.
|
159
|
+
2 Copy B to A. Get the next B. (Delete A).
|
160
|
+
3 Get the next B. (Delete B).
|
161
|
+
action treats a string as a single character. Wow!
|
162
|
+
action recognizes a regular expression if it is preceded by ( or , or =.
|
163
|
+
*/
|
164
|
+
|
165
|
+
function action(d) {
|
166
|
+
|
167
|
+
var r = [];
|
168
|
+
|
169
|
+
if (d == 1) {
|
170
|
+
r.push(a);
|
171
|
+
}
|
172
|
+
|
173
|
+
if (d < 3) {
|
174
|
+
a = b;
|
175
|
+
if (a == '\'' || a == '"') {
|
176
|
+
for (;;) {
|
177
|
+
r.push(a);
|
178
|
+
a = get();
|
179
|
+
if (a == b) {
|
180
|
+
break;
|
181
|
+
}
|
182
|
+
if (a <= '\n') {
|
183
|
+
throw 'Error: unterminated string literal: ' + a;
|
184
|
+
}
|
185
|
+
if (a == '\\') {
|
186
|
+
r.push(a);
|
187
|
+
a = get();
|
188
|
+
}
|
189
|
+
}
|
190
|
+
}
|
191
|
+
}
|
192
|
+
|
193
|
+
b = next();
|
194
|
+
|
195
|
+
if (b == '/' && '(,=:[!&|'.has(a)) {
|
196
|
+
r.push(a);
|
197
|
+
r.push(b);
|
198
|
+
for (;;) {
|
199
|
+
a = get();
|
200
|
+
if (a == '/') {
|
201
|
+
break;
|
202
|
+
} else if (a =='\\') {
|
203
|
+
r.push(a);
|
204
|
+
a = get();
|
205
|
+
} else if (a <= '\n') {
|
206
|
+
throw 'Error: unterminated Regular Expression literal';
|
207
|
+
}
|
208
|
+
r.push(a);
|
209
|
+
}
|
210
|
+
b = next();
|
211
|
+
}
|
212
|
+
|
213
|
+
return r.join('');
|
214
|
+
}
|
215
|
+
|
216
|
+
|
217
|
+
/* m -- Copy the input to the output, deleting the characters which are
|
218
|
+
insignificant to JavaScript. Comments will be removed. Tabs will be
|
219
|
+
replaced with spaces. Carriage returns will be replaced with
|
220
|
+
linefeeds.
|
221
|
+
Most spaces and linefeeds will be removed.
|
222
|
+
*/
|
223
|
+
|
224
|
+
function m() {
|
225
|
+
|
226
|
+
var r = [];
|
227
|
+
a = '\n';
|
228
|
+
|
229
|
+
r.push(action(3));
|
230
|
+
|
231
|
+
while (a != EOF) {
|
232
|
+
switch (a) {
|
233
|
+
case ' ':
|
234
|
+
if (isAlphanum(b)) {
|
235
|
+
r.push(action(1));
|
236
|
+
} else {
|
237
|
+
r.push(action(2));
|
238
|
+
}
|
239
|
+
break;
|
240
|
+
case '\n':
|
241
|
+
switch (b) {
|
242
|
+
case '{':
|
243
|
+
case '[':
|
244
|
+
case '(':
|
245
|
+
case '+':
|
246
|
+
case '-':
|
247
|
+
r.push(action(1));
|
248
|
+
break;
|
249
|
+
case ' ':
|
250
|
+
r.push(action(3));
|
251
|
+
break;
|
252
|
+
default:
|
253
|
+
if (isAlphanum(b)) {
|
254
|
+
r.push(action(1));
|
255
|
+
} else {
|
256
|
+
if (level == 1 && b != '\n') {
|
257
|
+
r.push(action(1));
|
258
|
+
} else {
|
259
|
+
r.push(action(2));
|
260
|
+
}
|
261
|
+
}
|
262
|
+
}
|
263
|
+
break;
|
264
|
+
default:
|
265
|
+
switch (b) {
|
266
|
+
case ' ':
|
267
|
+
if (isAlphanum(a)) {
|
268
|
+
r.push(action(1));
|
269
|
+
break;
|
270
|
+
}
|
271
|
+
r.push(action(3));
|
272
|
+
break;
|
273
|
+
case '\n':
|
274
|
+
if (level == 1 && a != '\n') {
|
275
|
+
r.push(action(1));
|
276
|
+
} else {
|
277
|
+
switch (a) {
|
278
|
+
case '}':
|
279
|
+
case ']':
|
280
|
+
case ')':
|
281
|
+
case '+':
|
282
|
+
case '-':
|
283
|
+
case '"':
|
284
|
+
case '\'':
|
285
|
+
if (level == 3) {
|
286
|
+
r.push(action(3));
|
287
|
+
} else {
|
288
|
+
r.push(action(1));
|
289
|
+
}
|
290
|
+
break;
|
291
|
+
default:
|
292
|
+
if (isAlphanum(a)) {
|
293
|
+
r.push(action(1));
|
294
|
+
} else {
|
295
|
+
r.push(action(3));
|
296
|
+
}
|
297
|
+
}
|
298
|
+
}
|
299
|
+
break;
|
300
|
+
default:
|
301
|
+
r.push(action(1));
|
302
|
+
break;
|
303
|
+
}
|
304
|
+
}
|
305
|
+
}
|
306
|
+
|
307
|
+
return r.join('');
|
308
|
+
}
|
309
|
+
|
310
|
+
jsmin.oldSize = input.length;
|
311
|
+
ret = m(input);
|
312
|
+
jsmin.newSize = ret.length;
|
313
|
+
|
314
|
+
return comment + ret;
|
315
|
+
|
316
|
+
}
|
@@ -0,0 +1,316 @@
|
|
1
|
+
/*
|
2
|
+
packer, version 2.0.2 (2005-08-19)
|
3
|
+
Copyright 2004-2005, Dean Edwards
|
4
|
+
License: http://creativecommons.org/licenses/LGPL/2.1/
|
5
|
+
*/
|
6
|
+
|
7
|
+
function pack(_script, _encoding, _fastDecode, _specialChars) {
|
8
|
+
// constants
|
9
|
+
var $IGNORE = "$1";
|
10
|
+
|
11
|
+
// validate parameters
|
12
|
+
_script += "\n";
|
13
|
+
_encoding = Math.min(parseInt(_encoding), 95);
|
14
|
+
|
15
|
+
// apply all parsing routines
|
16
|
+
function _pack($script) {
|
17
|
+
var i, $parse;
|
18
|
+
for (i = 0; ($parse = _parsers[i]); i++) {
|
19
|
+
$script = $parse($script);
|
20
|
+
}
|
21
|
+
return $script;
|
22
|
+
};
|
23
|
+
|
24
|
+
// unpacking function - this is the boot strap function
|
25
|
+
// data extracted from this packing routine is passed to
|
26
|
+
// this function when decoded in the target
|
27
|
+
var _unpack = function($packed, $ascii, $count, $keywords, $encode, $decode) {
|
28
|
+
while ($count--)
|
29
|
+
if ($keywords[$count])
|
30
|
+
$packed = $packed.replace(new RegExp('\\b' + $encode($count) + '\\b', 'g'), $keywords[$count]);
|
31
|
+
return $packed;
|
32
|
+
};
|
33
|
+
|
34
|
+
// code-snippet inserted into the unpacker to speed up decoding
|
35
|
+
var _decode = function() {
|
36
|
+
// does the browser support String.replace where the
|
37
|
+
// replacement value is a function?
|
38
|
+
if (!''.replace(/^/, String)) {
|
39
|
+
// decode all the values we need
|
40
|
+
while ($count--) $decode[$encode($count)] = $keywords[$count] || $encode($count);
|
41
|
+
// global replacement function
|
42
|
+
$keywords = [function($encoded){return $decode[$encoded]}];
|
43
|
+
// generic match
|
44
|
+
$encode = function(){return'\\w+'};
|
45
|
+
// reset the loop counter - we are now doing a global replace
|
46
|
+
$count = 1;
|
47
|
+
}
|
48
|
+
};
|
49
|
+
|
50
|
+
// keep a list of parsing functions, they'll be executed all at once
|
51
|
+
var _parsers = [];
|
52
|
+
function _addParser($parser) {
|
53
|
+
_parsers[_parsers.length] = $parser;
|
54
|
+
};
|
55
|
+
|
56
|
+
// zero encoding - just removal of white space and comments
|
57
|
+
function _basicCompression($script) {
|
58
|
+
var $parser = new ParseMaster;
|
59
|
+
// make safe
|
60
|
+
$parser.escapeChar = "\\";
|
61
|
+
// protect strings
|
62
|
+
$parser.add(/'[^'\n\r]*'/, $IGNORE);
|
63
|
+
$parser.add(/"[^"\n\r]*"/, $IGNORE);
|
64
|
+
// remove comments
|
65
|
+
$parser.add(/\/\/[^\n\r]*[\n\r]/, " ");
|
66
|
+
$parser.add(/\/\*[^*]*\*+([^\/][^*]*\*+)*\//, " ");
|
67
|
+
// protect regular expressions
|
68
|
+
$parser.add(/\s+(\/[^\/\n\r\*][^\/\n\r]*\/g?i?)/, "$2"); // IGNORE
|
69
|
+
$parser.add(/[^\w\x24\/'"*)\?:]\/[^\/\n\r\*][^\/\n\r]*\/g?i?/, $IGNORE);
|
70
|
+
// remove: ;;; doSomething();
|
71
|
+
if (_specialChars) $parser.add(/;;;[^\n\r]+[\n\r]/);
|
72
|
+
// remove redundant semi-colons
|
73
|
+
$parser.add(/\(;;\)/, $IGNORE); // protect for (;;) loops
|
74
|
+
$parser.add(/;+\s*([};])/, "$2");
|
75
|
+
// apply the above
|
76
|
+
$script = $parser.exec($script);
|
77
|
+
|
78
|
+
// remove white-space
|
79
|
+
$parser.add(/(\b|\x24)\s+(\b|\x24)/, "$2 $3");
|
80
|
+
$parser.add(/([+\-])\s+([+\-])/, "$2 $3");
|
81
|
+
$parser.add(/\s+/, "");
|
82
|
+
// done
|
83
|
+
return $parser.exec($script);
|
84
|
+
};
|
85
|
+
|
86
|
+
function _encodeSpecialChars($script) {
|
87
|
+
var $parser = new ParseMaster;
|
88
|
+
// replace: $name -> n, $$name -> na
|
89
|
+
$parser.add(/((\x24+)([a-zA-Z$_]+))(\d*)/, function($match, $offset) {
|
90
|
+
var $length = $match[$offset + 2].length;
|
91
|
+
var $start = $length - Math.max($length - $match[$offset + 3].length, 0);
|
92
|
+
return $match[$offset + 1].substr($start, $length) + $match[$offset + 4];
|
93
|
+
});
|
94
|
+
// replace: _name -> _0, double-underscore (__name) is ignored
|
95
|
+
var $regexp = /\b_[A-Za-z\d]\w*/;
|
96
|
+
// build the word list
|
97
|
+
var $keywords = _analyze($script, _globalize($regexp), _encodePrivate);
|
98
|
+
// quick ref
|
99
|
+
var $encoded = $keywords.$encoded;
|
100
|
+
$parser.add($regexp, function($match, $offset) {
|
101
|
+
return $encoded[$match[$offset]];
|
102
|
+
});
|
103
|
+
return $parser.exec($script);
|
104
|
+
};
|
105
|
+
|
106
|
+
function _encodeKeywords($script) {
|
107
|
+
// escape high-ascii values already in the script (i.e. in strings)
|
108
|
+
if (_encoding > 62) $script = _escape95($script);
|
109
|
+
// create the parser
|
110
|
+
var $parser = new ParseMaster;
|
111
|
+
var $encode = _getEncoder(_encoding);
|
112
|
+
// for high-ascii, don't encode single character low-ascii
|
113
|
+
var $regexp = (_encoding > 62) ? /\w\w+/ : /\w+/;
|
114
|
+
// build the word list
|
115
|
+
$keywords = _analyze($script, _globalize($regexp), $encode);
|
116
|
+
var $encoded = $keywords.$encoded;
|
117
|
+
// encode
|
118
|
+
$parser.add($regexp, function($match, $offset) {
|
119
|
+
return $encoded[$match[$offset]];
|
120
|
+
});
|
121
|
+
// if encoded, wrap the script in a decoding function
|
122
|
+
return $script && _bootStrap($parser.exec($script), $keywords);
|
123
|
+
};
|
124
|
+
|
125
|
+
function _analyze($script, $regexp, $encode) {
|
126
|
+
// analyse
|
127
|
+
// retreive all words in the script
|
128
|
+
var $all = $script.match($regexp);
|
129
|
+
var $$sorted = []; // list of words sorted by frequency
|
130
|
+
var $$encoded = {}; // dictionary of word->encoding
|
131
|
+
var $$protected = {}; // instances of "protected" words
|
132
|
+
if ($all) {
|
133
|
+
var $unsorted = []; // same list, not sorted
|
134
|
+
var $protected = {}; // "protected" words (dictionary of word->"word")
|
135
|
+
var $values = {}; // dictionary of charCode->encoding (eg. 256->ff)
|
136
|
+
var $count = {}; // word->count
|
137
|
+
var i = $all.length, j = 0, $word;
|
138
|
+
// count the occurrences - used for sorting later
|
139
|
+
do {
|
140
|
+
$word = "$" + $all[--i];
|
141
|
+
if (!$count[$word]) {
|
142
|
+
$count[$word] = 0;
|
143
|
+
$unsorted[j] = $word;
|
144
|
+
// make a dictionary of all of the protected words in this script
|
145
|
+
// these are words that might be mistaken for encoding
|
146
|
+
$protected["$" + ($values[j] = $encode(j))] = j++;
|
147
|
+
}
|
148
|
+
// increment the word counter
|
149
|
+
$count[$word]++;
|
150
|
+
} while (i);
|
151
|
+
// prepare to sort the word list, first we must protect
|
152
|
+
// words that are also used as codes. we assign them a code
|
153
|
+
// equivalent to the word itself.
|
154
|
+
// e.g. if "do" falls within our encoding range
|
155
|
+
// then we store keywords["do"] = "do";
|
156
|
+
// this avoids problems when decoding
|
157
|
+
i = $unsorted.length;
|
158
|
+
do {
|
159
|
+
$word = $unsorted[--i];
|
160
|
+
if ($protected[$word] != null) {
|
161
|
+
$$sorted[$protected[$word]] = $word.slice(1);
|
162
|
+
$$protected[$protected[$word]] = true;
|
163
|
+
$count[$word] = 0;
|
164
|
+
}
|
165
|
+
} while (i);
|
166
|
+
// sort the words by frequency
|
167
|
+
$unsorted.sort(function($match1, $match2) {
|
168
|
+
return $count[$match2] - $count[$match1];
|
169
|
+
});
|
170
|
+
j = 0;
|
171
|
+
// because there are "protected" words in the list
|
172
|
+
// we must add the sorted words around them
|
173
|
+
do {
|
174
|
+
if ($$sorted[i] == null) $$sorted[i] = $unsorted[j++].slice(1);
|
175
|
+
$$encoded[$$sorted[i]] = $values[i];
|
176
|
+
} while (++i < $unsorted.length);
|
177
|
+
}
|
178
|
+
return {$sorted: $$sorted, $encoded: $$encoded, $protected: $$protected};
|
179
|
+
};
|
180
|
+
|
181
|
+
// build the boot function used for loading and decoding
|
182
|
+
function _bootStrap($packed, $keywords) {
|
183
|
+
var $ENCODE = _safeRegExp("$encode\\($count\\)", "g");
|
184
|
+
|
185
|
+
// $packed: the packed script
|
186
|
+
$packed = "'" + _escape($packed) + "'";
|
187
|
+
|
188
|
+
// $ascii: base for encoding
|
189
|
+
var $ascii = Math.min($keywords.$sorted.length, _encoding) || 1;
|
190
|
+
|
191
|
+
// $count: number of words contained in the script
|
192
|
+
var $count = $keywords.$sorted.length;
|
193
|
+
|
194
|
+
// $keywords: list of words contained in the script
|
195
|
+
for (var i in $keywords.$protected) $keywords.$sorted[i] = "";
|
196
|
+
// convert from a string to an array
|
197
|
+
$keywords = "'" + $keywords.$sorted.join("|") + "'.split('|')";
|
198
|
+
|
199
|
+
// $encode: encoding function (used for decoding the script)
|
200
|
+
var $encode = _encoding > 62 ? _encode95 : _getEncoder($ascii);
|
201
|
+
$encode = String($encode).replace(/_encoding/g, "$ascii").replace(/arguments\.callee/g, "$encode");
|
202
|
+
var $inline = "$count" + ($ascii > 10 ? ".toString($ascii)" : "");
|
203
|
+
|
204
|
+
// $decode: code snippet to speed up decoding
|
205
|
+
if (_fastDecode) {
|
206
|
+
// create the decoder
|
207
|
+
var $decode = _getFunctionBody(_decode);
|
208
|
+
if (_encoding > 62) $decode = $decode.replace(/\\\\w/g, "[\\xa1-\\xff]");
|
209
|
+
// perform the encoding inline for lower ascii values
|
210
|
+
else if ($ascii < 36) $decode = $decode.replace($ENCODE, $inline);
|
211
|
+
// special case: when $count==0 there are no keywords. I want to keep
|
212
|
+
// the basic shape of the unpacking funcion so i'll frig the code...
|
213
|
+
if (!$count) $decode = $decode.replace(_safeRegExp("($count)\\s*=\\s*1"), "$1=0");
|
214
|
+
}
|
215
|
+
|
216
|
+
// boot function
|
217
|
+
var $unpack = String(_unpack);
|
218
|
+
if (_fastDecode) {
|
219
|
+
// insert the decoder
|
220
|
+
$unpack = $unpack.replace(/\{/, "{" + $decode + ";");
|
221
|
+
}
|
222
|
+
$unpack = $unpack.replace(/"/g, "'");
|
223
|
+
if (_encoding > 62) { // high-ascii
|
224
|
+
// get rid of the word-boundaries for regexp matches
|
225
|
+
$unpack = $unpack.replace(/'\\\\b'\s*\+|\+\s*'\\\\b'/g, "");
|
226
|
+
}
|
227
|
+
if ($ascii > 36 || _encoding > 62 || _fastDecode) {
|
228
|
+
// insert the encode function
|
229
|
+
$unpack = $unpack.replace(/\{/, "{$encode=" + $encode + ";");
|
230
|
+
} else {
|
231
|
+
// perform the encoding inline
|
232
|
+
$unpack = $unpack.replace($ENCODE, $inline);
|
233
|
+
}
|
234
|
+
// pack the boot function too
|
235
|
+
$unpack = pack($unpack, 0, false, true);
|
236
|
+
|
237
|
+
// arguments
|
238
|
+
var $params = [$packed, $ascii, $count, $keywords];
|
239
|
+
if (_fastDecode) {
|
240
|
+
// insert placeholders for the decoder
|
241
|
+
$params = $params.concat(0, "{}");
|
242
|
+
}
|
243
|
+
|
244
|
+
// the whole thing
|
245
|
+
return "eval(" + $unpack + "(" + $params + "))\n";
|
246
|
+
};
|
247
|
+
|
248
|
+
// mmm.. ..which one do i need ??
|
249
|
+
function _getEncoder($ascii) {
|
250
|
+
return $ascii > 10 ? $ascii > 36 ? $ascii > 62 ? _encode95 : _encode62 : _encode36 : _encode10;
|
251
|
+
};
|
252
|
+
|
253
|
+
// zero encoding
|
254
|
+
// characters: 0123456789
|
255
|
+
var _encode10 = function($charCode) {
|
256
|
+
return $charCode;
|
257
|
+
};
|
258
|
+
|
259
|
+
// inherent base36 support
|
260
|
+
// characters: 0123456789abcdefghijklmnopqrstuvwxyz
|
261
|
+
var _encode36 = function($charCode) {
|
262
|
+
return $charCode.toString(36);
|
263
|
+
};
|
264
|
+
|
265
|
+
// hitch a ride on base36 and add the upper case alpha characters
|
266
|
+
// characters: 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
|
267
|
+
var _encode62 = function($charCode) {
|
268
|
+
return ($charCode < _encoding ? '' : arguments.callee(parseInt($charCode / _encoding))) +
|
269
|
+
(($charCode = $charCode % _encoding) > 35 ? String.fromCharCode($charCode + 29) : $charCode.toString(36));
|
270
|
+
};
|
271
|
+
|
272
|
+
// use high-ascii values
|
273
|
+
var _encode95 = function($charCode) {
|
274
|
+
return ($charCode < _encoding ? '' : arguments.callee($charCode / _encoding)) +
|
275
|
+
String.fromCharCode($charCode % _encoding + 161);
|
276
|
+
};
|
277
|
+
|
278
|
+
// special _chars
|
279
|
+
var _encodePrivate = function($charCode) {
|
280
|
+
return "_" + $charCode;
|
281
|
+
};
|
282
|
+
|
283
|
+
// protect characters used by the parser
|
284
|
+
function _escape($script) {
|
285
|
+
return $script.replace(/([\\'])/g, "\\$1");
|
286
|
+
};
|
287
|
+
|
288
|
+
// protect high-ascii characters already in the script
|
289
|
+
function _escape95($script) {
|
290
|
+
return $script.replace(/[\xa1-\xff]/g, function($match) {
|
291
|
+
return "\\x" + $match.charCodeAt(0).toString(16);
|
292
|
+
});
|
293
|
+
};
|
294
|
+
|
295
|
+
function _safeRegExp($string, $flags) {
|
296
|
+
return new RegExp($string.replace(/\$/g, "\\$"), $flags);
|
297
|
+
};
|
298
|
+
|
299
|
+
// extract the body of a function
|
300
|
+
function _getFunctionBody($function) {
|
301
|
+
with (String($function)) return slice(indexOf("{") + 1, lastIndexOf("}"));
|
302
|
+
};
|
303
|
+
|
304
|
+
// set the global flag on a RegExp (you have to create a new one)
|
305
|
+
function _globalize($regexp) {
|
306
|
+
return new RegExp(String($regexp).slice(1, -1), "g");
|
307
|
+
};
|
308
|
+
|
309
|
+
// build the parsing routine
|
310
|
+
_addParser(_basicCompression);
|
311
|
+
if (_specialChars) _addParser(_encodeSpecialChars);
|
312
|
+
if (_encoding) _addParser(_encodeKeywords);
|
313
|
+
|
314
|
+
// go!
|
315
|
+
return _pack(_script);
|
316
|
+
};
|