survivalkit 0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.markdown +4 -0
- data/README.markdown +81 -0
- data/VERSION +1 -0
- data/lib/survivalkit.rb +9 -0
- data/stylesheets/survivalkit/extend/_all.sass +1 -0
- data/stylesheets/survivalkit/extend/_helpers.sass +20 -0
- data/stylesheets/survivalkit/functions/_all.sass +3 -0
- data/stylesheets/survivalkit/functions/_calculations.sass +19 -0
- data/stylesheets/survivalkit/functions/_color.sass +7 -0
- data/stylesheets/survivalkit/functions/_modular-scale.sass +142 -0
- data/stylesheets/survivalkit/mixins/_all.sass +5 -0
- data/stylesheets/survivalkit/mixins/_helpers.sass +29 -0
- data/stylesheets/survivalkit/mixins/_layout.sass +19 -0
- data/stylesheets/survivalkit/mixins/_sfx.sass +199 -0
- data/stylesheets/survivalkit/mixins/_typography.sass +77 -0
- data/stylesheets/survivalkit/mixins/_ui.sass +49 -0
- data/stylesheets/survivalkit/readme.markdown +1 -0
- data/stylesheets/survivalkit/reset/_meyer-reset.sass +33 -0
- data/stylesheets/survivalkit/reset/_normalize.sass +345 -0
- data/stylesheets/survivalkit/reset/_reset.sass +18 -0
- data/stylesheets/survivalkit/survival_kit/_survival-kit.sass +52 -0
- data/stylesheets/survivalkit/variables/_all.sass +2 -0
- data/stylesheets/survivalkit/variables/_color_names.sass +149 -0
- data/stylesheets/survivalkit/variables/_color_schemes.sass +54 -0
- data/templates/project/files/apple-touch-icon.png +0 -0
- data/templates/project/files/crossdomain.xml +25 -0
- data/templates/project/files/favicon.ico +0 -0
- data/templates/project/files/google.yml +22 -0
- data/templates/project/files/htaccess.htaccess +478 -0
- data/templates/project/files/html/404.html +22 -0
- data/templates/project/files/html/formalize_jquery_demo.html +288 -0
- data/templates/project/files/html/formalize_jquery_disabled.html +288 -0
- data/templates/project/files/html/formalize_jquery_errors.html +288 -0
- data/templates/project/files/html/index.html +63 -0
- data/templates/project/files/html/survivalkit/elements-common.html +549 -0
- data/templates/project/files/html/survivalkit/elements-html5.html +2959 -0
- data/templates/project/files/html/survivalkit/elements-typography.html +196 -0
- data/templates/project/files/html/survivalkit/elements-ui-patterns-drupal.html +625 -0
- data/templates/project/files/html/survivalkit/elements-ui-patterns.html +151 -0
- data/templates/project/files/html/survivalkit/index.html +94 -0
- data/templates/project/files/html/survivalkit/styletile/index.html +1 -0
- data/templates/project/files/html/survivalkit/styletile/styletile.html +168 -0
- data/templates/project/files/humans.txt +43 -0
- data/templates/project/files/robots.txt +5 -0
- data/templates/project/ie.sass +3 -0
- data/templates/project/kit/kit-source.jquery.js +21 -0
- data/templates/project/libs/dd_belatedpng.js +13 -0
- data/templates/project/libs/formalize/README.txt +11 -0
- data/templates/project/libs/formalize/dojo.formalize.js +174 -0
- data/templates/project/libs/formalize/extjs.formalize.js +168 -0
- data/templates/project/libs/formalize/jquery.formalize.js +158 -0
- data/templates/project/libs/formalize/mootools.formalize.js +163 -0
- data/templates/project/libs/formalize/prototype.formalize.js +171 -0
- data/templates/project/libs/formalize/yui.formalize.js +168 -0
- data/templates/project/libs/jquery-1.6.js +8865 -0
- data/templates/project/libs/jquery-1.6.min.js +16 -0
- data/templates/project/libs/modernizr-2.0.min.js +4 -0
- data/templates/project/libs/mootools-core-1.3.1-full-compat-yc.js +485 -0
- data/templates/project/libs/plugins.js +16 -0
- data/templates/project/libs/respond.min.js +7 -0
- data/templates/project/libs/selectivizr.js +5 -0
- data/templates/project/manifest.rb +78 -0
- data/templates/project/partials/01-variables/_all.sass +6 -0
- data/templates/project/partials/01-variables/_base.sass +29 -0
- data/templates/project/partials/01-variables/_colors.sass +21 -0
- data/templates/project/partials/01-variables/_fonts.sass +22 -0
- data/templates/project/partials/01-variables/_grids-all.sass +10 -0
- data/templates/project/partials/02-extend/_all.sass +1 -0
- data/templates/project/partials/02-extend/_typography.sass +39 -0
- data/templates/project/partials/03-defaults/_all.sass +10 -0
- data/templates/project/partials/03-defaults/_common.sass +40 -0
- data/templates/project/partials/03-defaults/_font-face.sass +3 -0
- data/templates/project/partials/03-defaults/markup/_edits.sass +6 -0
- data/templates/project/partials/03-defaults/markup/_grouping.sass +52 -0
- data/templates/project/partials/03-defaults/markup/_headers.sass +33 -0
- data/templates/project/partials/03-defaults/markup/_images.sass +14 -0
- data/templates/project/partials/03-defaults/markup/_semantics.sass +104 -0
- data/templates/project/partials/03-defaults/markup/_tables.sass +48 -0
- data/templates/project/partials/03-defaults/markup/forms/_form-defaults.sass +67 -0
- data/templates/project/partials/03-defaults/markup/forms/_formalize.sass +261 -0
- data/templates/project/partials/04-grids/_grids-blueprint.sass +20 -0
- data/templates/project/partials/04-grids/_grids-susy.sass +38 -0
- data/templates/project/partials/05-ui-patterns/_common.sass +26 -0
- data/templates/project/partials/05-ui-patterns/drupal/_ui-patterns.sass +83 -0
- data/templates/project/partials/06-sprites/_sprites.sass +20 -0
- data/templates/project/partials/07-layout-design/_design.sass +6 -0
- data/templates/project/partials/07-layout-design/_layout.sass +8 -0
- data/templates/project/partials/08-styletile/_tile-design.sass +139 -0
- data/templates/project/partials/08-styletile/_tile-layout.sass +81 -0
- data/templates/project/partials/09-responsive/_responsive-blueprint.sass +139 -0
- data/templates/project/partials/09-responsive/_responsive-susy.sass +106 -0
- data/templates/project/partials/10-media/_print.sass +57 -0
- data/templates/project/partials/11-browser-adjustments/_ie.sass +26 -0
- data/templates/project/partials/11-browser-adjustments/_modernizr.sass +8 -0
- data/templates/project/partials/11-browser-adjustments/_selectivizr.sass +0 -0
- data/templates/project/partials/readme.markdown +3 -0
- data/templates/project/readme.markdown +3 -0
- data/templates/project/script.js +26 -0
- data/templates/project/selectivizr.sass +8 -0
- data/templates/project/sources/BigText/README.markdown +128 -0
- data/templates/project/sources/BigText/artifacts/output.html +32 -0
- data/templates/project/sources/BigText/bigtext.js +242 -0
- data/templates/project/sources/BigText/demo/bigtextWizard.css +129 -0
- data/templates/project/sources/BigText/demo/bigtextWizard.js +373 -0
- data/templates/project/sources/BigText/demo/css/flexbox.css +105 -0
- data/templates/project/sources/BigText/demo/css/images/button_bg.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/datepicker.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/icon_sprite.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/progress_bar.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_h_bg.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_handles.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/slider_v_bg.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/the_gradient.gif +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_222222_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_228ef1_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/images/ui-icons_ffffff_256x240.png +0 -0
- data/templates/project/sources/BigText/demo/css/jquery-ui-1.8rc3.custom.css +519 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.eot +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.svg +223 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.ttf +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/League_Gothic-webfont.woff +0 -0
- data/templates/project/sources/BigText/demo/css/league-gothic/stylesheet.css +12 -0
- data/templates/project/sources/BigText/demo/index.html +95 -0
- data/templates/project/sources/BigText/demo/js/jquery.ba-throttle-debounce.js +252 -0
- data/templates/project/sources/BigText/demo/js/jquery.ba-throttle-debounce.min.js +9 -0
- data/templates/project/sources/BigText/demo/js/jquery.smartresize.js +41 -0
- data/templates/project/sources/BigText/demo/js/modernizr-1.6.js +892 -0
- data/templates/project/sources/BigText/demo/js/modernizr-1.6.min.js +30 -0
- data/templates/project/sources/BigText/demo/resizeDemoSmartResize.html +37 -0
- data/templates/project/sources/BigText/demo/resizeDemoThrottle.html +38 -0
- data/templates/project/sources/BigText/demo/simpleDemo.html +42 -0
- data/templates/project/sources/BigText/demo/simpleDemoDiv.html +26 -0
- data/templates/project/sources/BigText/test.bat +4 -0
- data/templates/project/sources/BigText/test.sh +5 -0
- data/templates/project/sources/BigText/test/bigtext.conf +6 -0
- data/templates/project/sources/BigText/test/bigtextTest.js +192 -0
- data/templates/project/sources/BigText/test/lib/JsTestDriver-1.2.2-custom.jar +0 -0
- data/templates/project/sources/BigText/test/lib/jquery-1.4.2.js +6240 -0
- data/templates/project/sources/BigText/test/lib/launch-safari.sh +4 -0
- data/templates/project/sources/Dynamic-Carousel/demo.html +92 -0
- data/templates/project/sources/Dynamic-Carousel/plugin.js +191 -0
- data/templates/project/sources/Dynamic-Carousel/readme.md +10 -0
- data/templates/project/sources/Geared-Scrolling/README.md +31 -0
- data/templates/project/sources/Geared-Scrolling/css/specific.css +88 -0
- data/templates/project/sources/Geared-Scrolling/images/col1.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/col2.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/col3.png +0 -0
- data/templates/project/sources/Geared-Scrolling/images/header.png +0 -0
- data/templates/project/sources/Geared-Scrolling/index.html +32 -0
- data/templates/project/sources/Geared-Scrolling/js/init.js +11 -0
- data/templates/project/sources/Geared-Scrolling/js/jquery.heyday.gearedscrolling.js +283 -0
- data/templates/project/sources/Lettering.js/README.md +58 -0
- data/templates/project/sources/Lettering.js/examples/index.html +135 -0
- data/templates/project/sources/Lettering.js/examples/style.css +171 -0
- data/templates/project/sources/Lettering.js/jquery.lettering.js +66 -0
- data/templates/project/sources/PaintbrushJS/common.js +245 -0
- data/templates/project/sources/PaintbrushJS/demo/css/playground.css +334 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/165.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/bee.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/bird.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/helmets.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/jordan.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/leaves.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/lighthouse.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/louvre.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/pods.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/redbarn.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/road.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/sign.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/staples.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/stones.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/tear.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/500/window.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/bg.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/bg-highlight.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/bg.jpg +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/byline.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/current.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/divider.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/forkme.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/images/site/heading.png +0 -0
- data/templates/project/sources/PaintbrushJS/demo/index.html +171 -0
- data/templates/project/sources/PaintbrushJS/demo/script/common.js +245 -0
- data/templates/project/sources/PaintbrushJS/demo/script/paintbrush.js +607 -0
- data/templates/project/sources/PaintbrushJS/demo/script/playground.js +357 -0
- data/templates/project/sources/PaintbrushJS/demo/script/timing.js +23 -0
- data/templates/project/sources/PaintbrushJS/demo/usage.html +183 -0
- data/templates/project/sources/PaintbrushJS/paintbrush.js +595 -0
- data/templates/project/sources/Respond/README.md +76 -0
- data/templates/project/sources/Respond/respond.min.js +2 -0
- data/templates/project/sources/Respond/respond.src.js +286 -0
- data/templates/project/sources/Respond/test/test.css +61 -0
- data/templates/project/sources/Respond/test/test.html +20 -0
- data/templates/project/sources/Respond/test/test2.css +8 -0
- data/templates/project/sources/Respond/test/unit/index.html +28 -0
- data/templates/project/sources/Respond/test/unit/test.css +56 -0
- data/templates/project/sources/Respond/test/unit/test2.css +5 -0
- data/templates/project/sources/Respond/test/unit/tests.js +97 -0
- data/templates/project/sources/Sticky-Footer-jQuery-Plugin/README.md +27 -0
- data/templates/project/sources/Sticky-Footer-jQuery-Plugin/jquery.heyday.stickyfooter.js +154 -0
- data/templates/project/sources/flexie/README.md +142 -0
- data/templates/project/sources/flexie/demo/css/box-flex.css +30 -0
- data/templates/project/sources/flexie/demo/index.html +108 -0
- data/templates/project/sources/flexie/dist/flexie.min.js +33 -0
- data/templates/project/sources/flexie/src/flexie.js +1872 -0
- data/templates/project/sources/flexie/test/css/demo.css +34 -0
- data/templates/project/sources/flexie/test/css/test.css +141 -0
- data/templates/project/sources/flexie/test/index.html +54 -0
- data/templates/project/sources/flexie/vendor/google-compiler/compiler.jar +0 -0
- data/templates/project/sources/flexie/vendor/yuicompressor/yuicompressor-2.4.2.jar +0 -0
- data/templates/project/sources/flickrbomb/css/app.css +41 -0
- data/templates/project/sources/flickrbomb/css/flickrbomb.css +38 -0
- data/templates/project/sources/flickrbomb/css/global.css +0 -0
- data/templates/project/sources/flickrbomb/demo.html +169 -0
- data/templates/project/sources/flickrbomb/images/bg-clouds.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/bg-ground.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/bomb.png +0 -0
- data/templates/project/sources/flickrbomb/images/bomber.jpg +0 -0
- data/templates/project/sources/flickrbomb/images/old.gif +0 -0
- data/templates/project/sources/flickrbomb/images/setupIcon.png +0 -0
- data/templates/project/sources/flickrbomb/js/app.js +28 -0
- data/templates/project/sources/flickrbomb/js/backbone-localstorage.js +94 -0
- data/templates/project/sources/flickrbomb/js/backbone.js +1011 -0
- data/templates/project/sources/flickrbomb/js/flickrbomb-demo.js +310 -0
- data/templates/project/sources/flickrbomb/js/flickrbomb.js +307 -0
- data/templates/project/sources/flickrbomb/js/underscore.js +713 -0
- data/templates/project/sources/formalize/README.txt +23 -0
- data/templates/project/sources/formalize/assets/css/_formalize.sass +274 -0
- data/templates/project/sources/formalize/assets/css/demo.css +47 -0
- data/templates/project/sources/formalize/assets/css/formalize.css +311 -0
- data/templates/project/sources/formalize/assets/css/reset.css +171 -0
- data/templates/project/sources/formalize/assets/css/text.css +81 -0
- data/templates/project/sources/formalize/assets/images/button.png +0 -0
- data/templates/project/sources/formalize/assets/images/select_arrow.gif +0 -0
- data/templates/project/sources/formalize/assets/js/dojo.formalize.js +174 -0
- data/templates/project/sources/formalize/assets/js/dojo.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/extjs.formalize.js +168 -0
- data/templates/project/sources/formalize/assets/js/extjs.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/jquery.formalize.js +158 -0
- data/templates/project/sources/formalize/assets/js/jquery.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/mootools.formalize.js +163 -0
- data/templates/project/sources/formalize/assets/js/mootools.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/prototype.formalize.js +171 -0
- data/templates/project/sources/formalize/assets/js/prototype.formalize.min.js +1 -0
- data/templates/project/sources/formalize/assets/js/yui.formalize.js +168 -0
- data/templates/project/sources/formalize/assets/js/yui.formalize.min.js +1 -0
- data/templates/project/sources/formalize/demo.html +144 -0
- data/templates/project/sources/formalize/dojo_demo.html +213 -0
- data/templates/project/sources/formalize/dojo_disabled.html +213 -0
- data/templates/project/sources/formalize/dojo_errors.html +213 -0
- data/templates/project/sources/formalize/extjs_demo.html +213 -0
- data/templates/project/sources/formalize/extjs_disabled.html +213 -0
- data/templates/project/sources/formalize/extjs_errors.html +213 -0
- data/templates/project/sources/formalize/jquery_demo.html +213 -0
- data/templates/project/sources/formalize/jquery_disabled.html +213 -0
- data/templates/project/sources/formalize/jquery_errors.html +213 -0
- data/templates/project/sources/formalize/mootools_demo.html +213 -0
- data/templates/project/sources/formalize/mootools_disabled.html +213 -0
- data/templates/project/sources/formalize/mootools_errors.html +213 -0
- data/templates/project/sources/formalize/prototype_demo.html +213 -0
- data/templates/project/sources/formalize/prototype_disabled.html +213 -0
- data/templates/project/sources/formalize/prototype_errors.html +213 -0
- data/templates/project/sources/formalize/unstyled.html +210 -0
- data/templates/project/sources/formalize/yui_demo.html +213 -0
- data/templates/project/sources/formalize/yui_disabled.html +213 -0
- data/templates/project/sources/formalize/yui_errors.html +213 -0
- data/templates/project/sources/html5-boilerplate/404.html +38 -0
- data/templates/project/sources/html5-boilerplate/README.md +228 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-114x114-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-57x57-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-72x72-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon-precomposed.png +0 -0
- data/templates/project/sources/html5-boilerplate/apple-touch-icon.png +0 -0
- data/templates/project/sources/html5-boilerplate/build/build.xml +821 -0
- data/templates/project/sources/html5-boilerplate/build/config/default.properties +80 -0
- data/templates/project/sources/html5-boilerplate/build/config/project.properties +56 -0
- data/templates/project/sources/html5-boilerplate/build/createproject.sh +50 -0
- data/templates/project/sources/html5-boilerplate/build/runbuildscript.bat +5 -0
- data/templates/project/sources/html5-boilerplate/build/tools/ant-contrib-1.0b3.jar +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/htmlcompressor-1.1.jar +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/jpegtran.exe +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/optipng-0.6.4-exe/LICENSE.txt +21 -0
- data/templates/project/sources/html5-boilerplate/build/tools/optipng-0.6.4-exe/optipng.exe +0 -0
- data/templates/project/sources/html5-boilerplate/build/tools/yuicompressor-2.4.5.jar +0 -0
- data/templates/project/sources/html5-boilerplate/crossdomain.xml +25 -0
- data/templates/project/sources/html5-boilerplate/css/handheld.css +8 -0
- data/templates/project/sources/html5-boilerplate/css/style.css +263 -0
- data/templates/project/sources/html5-boilerplate/demo/elements.html +531 -0
- data/templates/project/sources/html5-boilerplate/demo/hack.css +85 -0
- data/templates/project/sources/html5-boilerplate/demo/hack2.css +41 -0
- data/templates/project/sources/html5-boilerplate/demo/internet_explorer.png +0 -0
- data/templates/project/sources/html5-boilerplate/demo/test_tubes.png +0 -0
- data/templates/project/sources/html5-boilerplate/demo/tests.html +313 -0
- data/templates/project/sources/html5-boilerplate/favicon.ico +0 -0
- data/templates/project/sources/html5-boilerplate/humans.txt +43 -0
- data/templates/project/sources/html5-boilerplate/index.html +80 -0
- data/templates/project/sources/html5-boilerplate/js/libs/dd_belatedpng.js +13 -0
- data/templates/project/sources/html5-boilerplate/js/libs/jquery-1.5.2.js +8374 -0
- data/templates/project/sources/html5-boilerplate/js/libs/jquery-1.5.2.min.js +16 -0
- data/templates/project/sources/html5-boilerplate/js/libs/modernizr-1.7.min.js +2 -0
- data/templates/project/sources/html5-boilerplate/js/plugins.js +16 -0
- data/templates/project/sources/html5-boilerplate/js/script.js +26 -0
- data/templates/project/sources/html5-boilerplate/robots.txt +5 -0
- data/templates/project/sources/html5-boilerplate/test/index.html +31 -0
- data/templates/project/sources/html5-boilerplate/test/qunit/qunit.css +148 -0
- data/templates/project/sources/html5-boilerplate/test/qunit/qunit.js +1265 -0
- data/templates/project/sources/html5-boilerplate/test/tests.js +27 -0
- data/templates/project/sources/iSwipe-jQuery-Plugin/README.md +26 -0
- data/templates/project/sources/iSwipe-jQuery-Plugin/jquery.heyday.iswipe.js +126 -0
- data/templates/project/sources/infinite-scroll/ajax-loader.gif +0 -0
- data/templates/project/sources/infinite-scroll/jquery.infinitescroll.js +425 -0
- data/templates/project/sources/infinite-scroll/jquery.infinitescroll.min.js +8 -0
- data/templates/project/sources/infinite-scroll/site/assets/anivers_regular.otf +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/buttons.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/logo.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/mobius-strip2.ai +2266 -15
- data/templates/project/sources/infinite-scroll/site/assets/pattern.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/selector spots.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/assets/sites.psd +0 -0
- data/templates/project/sources/infinite-scroll/site/buttons.png +0 -0
- data/templates/project/sources/infinite-scroll/site/infinite-scroll-pattern.gif +0 -0
- data/templates/project/sources/infinite-scroll/site/logo.jpg +0 -0
- data/templates/project/sources/infinite-scroll/site/screens.jpg +0 -0
- data/templates/project/sources/infinite-scroll/site/selectors.jpg +0 -0
- data/templates/project/sources/infinite-scroll/test/test-loadingmsg.html +121 -0
- data/templates/project/sources/infinite-scroll/test/test.html +120 -0
- data/templates/project/sources/infinite-scroll/test/test2.html +70 -0
- data/templates/project/sources/infinite-scroll/test/test3.html +68 -0
- data/templates/project/sources/infinite-scroll/test/trigger.html +140 -0
- data/templates/project/sources/infinite-scroll/test/trigger2.html +80 -0
- data/templates/project/sources/infinite-scroll/test/trigger3.html +80 -0
- data/templates/project/sources/infinite-scroll/wp_infinite_scroll.php +454 -0
- data/templates/project/sources/jquery-lightbox/LICENSE.txt +30 -0
- data/templates/project/sources/jquery-lightbox/README.markdown +8 -0
- data/templates/project/sources/jquery-lightbox/css/lightbox.css +129 -0
- data/templates/project/sources/jquery-lightbox/images/blank.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/close.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/closelabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-0.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-1.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-2.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/image-3.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/loading.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/next.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/nextlabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/prev.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/prevlabel.gif +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-0.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-1.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-2.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/images/thumb-3.jpg +0 -0
- data/templates/project/sources/jquery-lightbox/index.html +102 -0
- data/templates/project/sources/jquery-lightbox/jquery.lightbox.js +515 -0
- data/templates/project/sources/jquery-ui/AUTHORS.txt +30 -0
- data/templates/project/sources/jquery-ui/GPL-LICENSE.txt +278 -0
- data/templates/project/sources/jquery-ui/MIT-LICENSE.txt +25 -0
- data/templates/project/sources/jquery-ui/README.md +9 -0
- data/templates/project/sources/jquery-ui/build/build.xml +392 -0
- data/templates/project/sources/jquery-ui/build/build/ant-contrib-0.6.jar +0 -0
- data/templates/project/sources/jquery-ui/build/build/google-compiler-20110320.jar +0 -0
- data/templates/project/sources/jquery-ui/build/build/style.xsl +211 -0
- data/templates/project/sources/jquery-ui/build/build/yuicompressor-2.4.2.jar +0 -0
- data/templates/project/sources/jquery-ui/demos/accordion/collapsible.html +57 -0
- data/templates/project/sources/jquery-ui/demos/accordion/custom-icons.html +69 -0
- data/templates/project/sources/jquery-ui/demos/accordion/default.html +85 -0
- data/templates/project/sources/jquery-ui/demos/accordion/fillspace.html +77 -0
- data/templates/project/sources/jquery-ui/demos/accordion/hoverintent.html +134 -0
- data/templates/project/sources/jquery-ui/demos/accordion/index.html +25 -0
- data/templates/project/sources/jquery-ui/demos/accordion/mouseover.html +57 -0
- data/templates/project/sources/jquery-ui/demos/accordion/no-auto-height.html +58 -0
- data/templates/project/sources/jquery-ui/demos/accordion/sortable.html +83 -0
- data/templates/project/sources/jquery-ui/demos/addClass/default.html +52 -0
- data/templates/project/sources/jquery-ui/demos/addClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/animate/default.html +61 -0
- data/templates/project/sources/jquery-ui/demos/animate/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/categories.html +72 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/combobox.html +195 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/custom-data.html +96 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/default.html +65 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/folding.html +63 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/jquery_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/jqueryui_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/transparent_1x1.png +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/index.html +27 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/london.xml +114 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/maxheight.html +79 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/multiple-remote.html +85 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/multiple.html +100 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote-jsonp.html +87 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote-with-cache.html +60 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/remote.html +60 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/search.php +588 -0
- data/templates/project/sources/jquery-ui/demos/autocomplete/xml.html +73 -0
- data/templates/project/sources/jquery-ui/demos/button/checkbox.html +44 -0
- data/templates/project/sources/jquery-ui/demos/button/default.html +38 -0
- data/templates/project/sources/jquery-ui/demos/button/icons.html +56 -0
- data/templates/project/sources/jquery-ui/demos/button/index.html +23 -0
- data/templates/project/sources/jquery-ui/demos/button/radio.html +39 -0
- data/templates/project/sources/jquery-ui/demos/button/splitbutton.html +78 -0
- data/templates/project/sources/jquery-ui/demos/button/toolbar.html +120 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/alt-field.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/animation.html +58 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/buttonbar.html +35 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/date-formats.html +47 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/date-range.html +49 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/default.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/dropdown-month-year.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/icon-trigger.html +37 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/images/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/index.html +31 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/inline.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/localization.html +162 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/min-max.html +33 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/multiple-calendars.html +36 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/other-months.html +37 -0
- data/templates/project/sources/jquery-ui/demos/datepicker/show-week.html +39 -0
- data/templates/project/sources/jquery-ui/demos/demos.css +334 -0
- data/templates/project/sources/jquery-ui/demos/dialog/animated.html +56 -0
- data/templates/project/sources/jquery-ui/demos/dialog/default.html +54 -0
- data/templates/project/sources/jquery-ui/demos/dialog/index.html +23 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-confirmation.html +69 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-form.html +167 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal-message.html +71 -0
- data/templates/project/sources/jquery-ui/demos/dialog/modal.html +60 -0
- data/templates/project/sources/jquery-ui/demos/draggable/constrain-movement.html +69 -0
- data/templates/project/sources/jquery-ui/demos/draggable/cursor-style.html +49 -0
- data/templates/project/sources/jquery-ui/demos/draggable/default.html +39 -0
- data/templates/project/sources/jquery-ui/demos/draggable/delay-start.html +45 -0
- data/templates/project/sources/jquery-ui/demos/draggable/events.html +77 -0
- data/templates/project/sources/jquery-ui/demos/draggable/handle.html +50 -0
- data/templates/project/sources/jquery-ui/demos/draggable/index.html +28 -0
- data/templates/project/sources/jquery-ui/demos/draggable/revert.html +44 -0
- data/templates/project/sources/jquery-ui/demos/draggable/scroll.html +51 -0
- data/templates/project/sources/jquery-ui/demos/draggable/snap-to.html +68 -0
- data/templates/project/sources/jquery-ui/demos/draggable/sortable.html +57 -0
- data/templates/project/sources/jquery-ui/demos/draggable/visual-feedback.html +77 -0
- data/templates/project/sources/jquery-ui/demos/droppable/accepted-elements.html +60 -0
- data/templates/project/sources/jquery-ui/demos/droppable/default.html +53 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras2.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras2_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras3.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras3_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras4.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras4_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/images/high_tatras_min.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/droppable/index.html +24 -0
- data/templates/project/sources/jquery-ui/demos/droppable/photo-manager.html +184 -0
- data/templates/project/sources/jquery-ui/demos/droppable/propagation.html +80 -0
- data/templates/project/sources/jquery-ui/demos/droppable/revert.html +61 -0
- data/templates/project/sources/jquery-ui/demos/droppable/shopping-cart.html +101 -0
- data/templates/project/sources/jquery-ui/demos/droppable/visual-feedback.html +78 -0
- data/templates/project/sources/jquery-ui/demos/effect/default.html +109 -0
- data/templates/project/sources/jquery-ui/demos/effect/easing.html +108 -0
- data/templates/project/sources/jquery-ui/demos/effect/index.html +19 -0
- data/templates/project/sources/jquery-ui/demos/hide/default.html +102 -0
- data/templates/project/sources/jquery-ui/demos/hide/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/images/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-config-on-tile.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-config-on.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-spindown-closed.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/demo-spindown-open.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/icon-docs-info.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/images/pbar-ani.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/index.html +329 -0
- data/templates/project/sources/jquery-ui/demos/menu/contextmenu.html +81 -0
- data/templates/project/sources/jquery-ui/demos/menu/default.html +54 -0
- data/templates/project/sources/jquery-ui/demos/menu/index.html +17 -0
- data/templates/project/sources/jquery-ui/demos/position/cycler.html +120 -0
- data/templates/project/sources/jquery-ui/demos/position/default.html +153 -0
- data/templates/project/sources/jquery-ui/demos/position/images/earth.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/images/flight.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/images/rocket.jpg +0 -0
- data/templates/project/sources/jquery-ui/demos/position/index.html +19 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/animated.html +44 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/default.html +35 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/images/pbar-ani.gif +0 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/progressbar/resize.html +40 -0
- data/templates/project/sources/jquery-ui/demos/removeClass/default.html +52 -0
- data/templates/project/sources/jquery-ui/demos/removeClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/resizable/animate.html +43 -0
- data/templates/project/sources/jquery-ui/demos/resizable/aspect-ratio.html +42 -0
- data/templates/project/sources/jquery-ui/demos/resizable/constrain-area.html +47 -0
- data/templates/project/sources/jquery-ui/demos/resizable/default.html +40 -0
- data/templates/project/sources/jquery-ui/demos/resizable/delay-start.html +52 -0
- data/templates/project/sources/jquery-ui/demos/resizable/helper.html +43 -0
- data/templates/project/sources/jquery-ui/demos/resizable/index.html +28 -0
- data/templates/project/sources/jquery-ui/demos/resizable/max-min.html +45 -0
- data/templates/project/sources/jquery-ui/demos/resizable/snap-to-grid.html +42 -0
- data/templates/project/sources/jquery-ui/demos/resizable/synchronous-resize.html +49 -0
- data/templates/project/sources/jquery-ui/demos/resizable/textarea.html +41 -0
- data/templates/project/sources/jquery-ui/demos/resizable/visual-feedback.html +43 -0
- data/templates/project/sources/jquery-ui/demos/selectable/default.html +50 -0
- data/templates/project/sources/jquery-ui/demos/selectable/display-grid.html +55 -0
- data/templates/project/sources/jquery-ui/demos/selectable/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/selectable/serialize.html +61 -0
- data/templates/project/sources/jquery-ui/demos/show/default.html +104 -0
- data/templates/project/sources/jquery-ui/demos/show/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/slider/colorpicker.html +95 -0
- data/templates/project/sources/jquery-ui/demos/slider/default.html +37 -0
- data/templates/project/sources/jquery-ui/demos/slider/hotelrooms.html +59 -0
- data/templates/project/sources/jquery-ui/demos/slider/index.html +29 -0
- data/templates/project/sources/jquery-ui/demos/slider/multiple-vertical.html +77 -0
- data/templates/project/sources/jquery-ui/demos/slider/range-vertical.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/range.html +52 -0
- data/templates/project/sources/jquery-ui/demos/slider/rangemax.html +50 -0
- data/templates/project/sources/jquery-ui/demos/slider/rangemin.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/side-scroll.html +140 -0
- data/templates/project/sources/jquery-ui/demos/slider/slider-vertical.html +52 -0
- data/templates/project/sources/jquery-ui/demos/slider/steps.html +51 -0
- data/templates/project/sources/jquery-ui/demos/slider/tabs.html +67 -0
- data/templates/project/sources/jquery-ui/demos/sortable/connect-lists-through-tabs.html +78 -0
- data/templates/project/sources/jquery-ui/demos/sortable/connect-lists.html +58 -0
- data/templates/project/sources/jquery-ui/demos/sortable/default.html +51 -0
- data/templates/project/sources/jquery-ui/demos/sortable/delay-start.html +67 -0
- data/templates/project/sources/jquery-ui/demos/sortable/display-grid.html +54 -0
- data/templates/project/sources/jquery-ui/demos/sortable/empty-lists.html +69 -0
- data/templates/project/sources/jquery-ui/demos/sortable/index.html +26 -0
- data/templates/project/sources/jquery-ui/demos/sortable/items.html +70 -0
- data/templates/project/sources/jquery-ui/demos/sortable/placeholder.html +56 -0
- data/templates/project/sources/jquery-ui/demos/sortable/portlets.html +96 -0
- data/templates/project/sources/jquery-ui/demos/spinner/currency.html +61 -0
- data/templates/project/sources/jquery-ui/demos/spinner/decimal.html +59 -0
- data/templates/project/sources/jquery-ui/demos/spinner/default.html +65 -0
- data/templates/project/sources/jquery-ui/demos/spinner/index.html +20 -0
- data/templates/project/sources/jquery-ui/demos/spinner/latlong.html +60 -0
- data/templates/project/sources/jquery-ui/demos/spinner/overflow.html +47 -0
- data/templates/project/sources/jquery-ui/demos/spinner/time.html +71 -0
- data/templates/project/sources/jquery-ui/demos/switchClass/default.html +47 -0
- data/templates/project/sources/jquery-ui/demos/switchClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax.html +53 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content1.html +4 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content2.html +4 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content3-slow.php +7 -0
- data/templates/project/sources/jquery-ui/demos/tabs/ajax/content4-broken.php +3 -0
- data/templates/project/sources/jquery-ui/demos/tabs/bottom.html +59 -0
- data/templates/project/sources/jquery-ui/demos/tabs/collapsible.html +55 -0
- data/templates/project/sources/jquery-ui/demos/tabs/cookie.html +57 -0
- data/templates/project/sources/jquery-ui/demos/tabs/default.html +49 -0
- data/templates/project/sources/jquery-ui/demos/tabs/index.html +25 -0
- data/templates/project/sources/jquery-ui/demos/tabs/manipulation.html +124 -0
- data/templates/project/sources/jquery-ui/demos/tabs/mouseover.html +53 -0
- data/templates/project/sources/jquery-ui/demos/tabs/sortable.html +58 -0
- data/templates/project/sources/jquery-ui/demos/tabs/vertical.html +61 -0
- data/templates/project/sources/jquery-ui/demos/toggle/default.html +94 -0
- data/templates/project/sources/jquery-ui/demos/toggle/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/toggleClass/default.html +46 -0
- data/templates/project/sources/jquery-ui/demos/toggleClass/index.html +18 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/ajax/content1.html +1 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/ajax/content2.html +1 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/custom-animation.html +58 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/default.html +48 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/delegation-mixbag.html +73 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/forms.html +71 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/index.html +22 -0
- data/templates/project/sources/jquery-ui/demos/tooltip/tracking.html +64 -0
- data/templates/project/sources/jquery-ui/external/jquery.bgiframe-2.1.2.js +39 -0
- data/templates/project/sources/jquery-ui/external/jquery.cookie.js +89 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.de-DE.js +55 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.ja-JP.js +74 -0
- data/templates/project/sources/jquery-ui/external/jquery.global.js +1341 -0
- data/templates/project/sources/jquery-ui/external/jquery.metadata.js +122 -0
- data/templates/project/sources/jquery-ui/external/jquery.mousewheel-3.0.4.js +78 -0
- data/templates/project/sources/jquery-ui/external/qunit.css +215 -0
- data/templates/project/sources/jquery-ui/external/qunit.js +1444 -0
- data/templates/project/sources/jquery-ui/jquery-1.5.1.js +8316 -0
- data/templates/project/sources/jquery-ui/tests/index.html +22 -0
- data/templates/project/sources/jquery-ui/tests/jquery.simulate.js +151 -0
- data/templates/project/sources/jquery-ui/tests/static/button/default.html +161 -0
- data/templates/project/sources/jquery-ui/tests/static/datepicker/datepicker.html +1367 -0
- data/templates/project/sources/jquery-ui/tests/static/datepicker/default.html +86 -0
- data/templates/project/sources/jquery-ui/tests/static/icons.html +246 -0
- data/templates/project/sources/jquery-ui/tests/static/menu/all-menus-icons.html +172 -0
- data/templates/project/sources/jquery-ui/tests/static/menu/default.html +39 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/default.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/default_vertical.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range_max.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_horizontal_range_min.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range_max.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/slider/slider_vertical_range_min.html +17 -0
- data/templates/project/sources/jquery-ui/tests/static/static.css +1 -0
- data/templates/project/sources/jquery-ui/tests/static/static.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion.html +163 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_core.js +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_defaults.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_defaults_deprecated.js +21 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_deprecated.html +161 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_deprecated.js +320 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_events.js +122 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_methods.js +37 -0
- data/templates/project/sources/jquery-ui/tests/unit/accordion/accordion_options.js +266 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete.html +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_core.js +73 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_defaults.js +19 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_events.js +206 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_methods.js +39 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/autocomplete_options.js +247 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_object_array_labels.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_object_array_values.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/autocomplete/remote_string_array.txt +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button.html +68 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_core.js +70 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_defaults.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_events.js +8 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_methods.js +19 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_options.js +93 -0
- data/templates/project/sources/jquery-ui/tests/unit/button/button_tickets.js +45 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/core.html +134 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/core.js +157 -0
- data/templates/project/sources/jquery-ui/tests/unit/core/selector.js +253 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker.html +54 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_core.js +441 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_defaults.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_events.js +117 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_methods.js +118 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_options.js +924 -0
- data/templates/project/sources/jquery-ui/tests/unit/datepicker/datepicker_tickets.js +27 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog.html +57 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_core.js +138 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_defaults.js +35 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_events.js +254 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_methods.js +127 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_options.js +444 -0
- data/templates/project/sources/jquery-ui/tests/unit/dialog/dialog_tickets.js +116 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_core.js +67 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_defaults.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_events.js +81 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_methods.js +99 -0
- data/templates/project/sources/jquery-ui/tests/unit/draggable/draggable_options.js +753 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_core.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_events.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_methods.js +86 -0
- data/templates/project/sources/jquery-ui/tests/unit/droppable/droppable_options.js +68 -0
- data/templates/project/sources/jquery-ui/tests/unit/images/jqueryui_32x32.png +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/index.html +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu.html +74 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_core.js +38 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_defaults.js +13 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_events.js +24 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_methods.js +15 -0
- data/templates/project/sources/jquery-ui/tests/unit/menu/menu_options.js +10 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position.html +62 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_core.js +438 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_deprecated.html +60 -0
- data/templates/project/sources/jquery-ui/tests/unit/position/position_deprecated.js +32 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar.html +41 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_core.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_defaults.js +11 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_events.js +51 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_methods.js +36 -0
- data/templates/project/sources/jquery-ui/tests/unit/progressbar/progressbar_options.js +59 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/images/test.jpg +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable.html +53 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_core.js +148 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_defaults.js +28 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_events.js +20 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_methods.js +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/resizable/resizable_options.js +190 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable.html +56 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_core.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_events.js +32 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_methods.js +93 -0
- data/templates/project/sources/jquery-ui/tests/unit/selectable/selectable_options.js +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider.html +55 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_core.js +292 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_defaults.js +20 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_events.js +109 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_methods.js +102 -0
- data/templates/project/sources/jquery-ui/tests/unit/slider/slider_options.js +146 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable.html +57 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_core.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_defaults.js +34 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_events.js +147 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_methods.js +108 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_options.js +256 -0
- data/templates/project/sources/jquery-ui/tests/unit/sortable/sortable_tickets.js +83 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner.html +46 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_core.js +171 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_events.js +64 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_methods.js +155 -0
- data/templates/project/sources/jquery-ui/tests/unit/spinner/spinner_options.js +154 -0
- data/templates/project/sources/jquery-ui/tests/unit/swarminject.js +9 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/data/test.html +1 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/spinner.gif +0 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs.html +139 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_core.js +50 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_defaults.js +13 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_defaults_deprecated.js +26 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_deprecated.html +138 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_deprecated.js +350 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_events.js +198 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_methods.js +165 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_options.js +146 -0
- data/templates/project/sources/jquery-ui/tests/unit/tabs/tabs_tickets.js +99 -0
- data/templates/project/sources/jquery-ui/tests/unit/testsuite.js +101 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip.html +47 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_core.js +11 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_defaults.js +16 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_events.js +54 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_methods.js +30 -0
- data/templates/project/sources/jquery-ui/tests/unit/tooltip/tooltip_options.js +62 -0
- data/templates/project/sources/jquery-ui/tests/unit/widget/widget.html +40 -0
- data/templates/project/sources/jquery-ui/tests/unit/widget/widget_core.js +992 -0
- data/templates/project/sources/jquery-ui/tests/visual/addClass/addClass_queue.html +50 -0
- data/templates/project/sources/jquery-ui/tests/visual/all.css +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/all.html +190 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_backgroundColor_hex.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_backgroundColor_rgb.html +35 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_color_hex.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/animate/animate_color_rgb.html +35 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button.html +140 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_disabled_true.html +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_input_type_checkbox.html +25 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_option_disabled_true.html +84 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_performance.html +555 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5254.html +55 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5261.html +42 -0
- data/templates/project/sources/jquery-ui/tests/visual/button/button_ticket_5278.html +58 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/accordion_dialog.html +202 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/accordion_tabs.html +86 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/datepicker_dialog.html +157 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/draggable_accordion.html +65 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/draggable_accordion_accordion_tabs_draggable.html +109 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/sortable_accordion_sortable_tabs.html +108 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/tabs_tabs.html +73 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/tabs_tooltips.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/compound/widgets_in_dialog.html +229 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/calendar.gif +0 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker.html +23 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_multi_inline.html +113 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4071.html +96 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4240.html +55 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_4443.html +38 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/datepicker_ticket_5676.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/multimonth.html +23 -0
- data/templates/project/sources/jquery-ui/tests/visual/datepicker/viewport.html +278 -0
- data/templates/project/sources/jquery-ui/tests/visual/dialog/dialog_on_page_with_large_dom.html +2963 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable.scroll.html +152 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_containment_array.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_cursorAt_object.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_handle_selector.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_false.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_selector.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/draggable/draggable_option_iframeFix_true.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable.css +3 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable.html +33 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_default.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_function.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_option_accept_selector.html +41 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_ticket_4087.html +51 -0
- data/templates/project/sources/jquery-ui/tests/visual/droppable/droppable_ticket_4088.html +69 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.css +54 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.html +193 -0
- data/templates/project/sources/jquery-ui/tests/visual/effects.all.js +92 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/contextmenu.html +191 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/drilldown.html +266 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menu.html +147 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menubar.html +208 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/menubar.js +189 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/popup.html +159 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/popup.js +113 -0
- data/templates/project/sources/jquery-ui/tests/visual/menu/tablemenu.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/mouse/mouse_ticket_6946.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/position/position.html +67 -0
- data/templates/project/sources/jquery-ui/tests/visual/position/position_margin.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/images/test.png +0 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_alsoResize_child.html +48 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_0.5.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_1.0.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_1.5.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_maxHeight_150.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_maxWidth_150.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_minHeight_50.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_minWidth_50.html +30 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w100xh100.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w100xh50.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_option_aspectRatio_preserve_w50xh100.html +29 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_3053.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4199.html +37 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4217.html +46 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_4940.html +32 -0
- data/templates/project/sources/jquery-ui/tests/visual/resizable/resizable_ticket_5335.html +52 -0
- data/templates/project/sources/jquery-ui/tests/visual/selectable/selectable.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/selectable/selectable_ticket_4341.html +46 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider.html +24 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range_max.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_horizontal_range_min.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_in_container_with_scrollbars.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_method_destroy.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_method_disable.html +47 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_animate_false.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_animate_true.html +65 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_3.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_30.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_max_300.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-3.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-30.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_min_-300.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_orientation_horizontal.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_orientation_vertical.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_false.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_max.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_min.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_range_true.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_step_25.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_step_5.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_value_3.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_value_30.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_25_50_75.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_25_75.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_option_values_50.html +26 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_3736.html +36 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_3762.html +44 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_4385.html +42 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_ticket_4467.html +34 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical.html +27 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range_max.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/slider/slider_vertical_range_min.html +28 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable.html +40 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_massive_scale.html +757 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_option_revert_false.html +31 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_option_revert_true.html +31 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_ticket_4231.html +78 -0
- data/templates/project/sources/jquery-ui/tests/visual/sortable/sortable_ticket_5355.html +58 -0
- data/templates/project/sources/jquery-ui/tests/visual/spinner/spinner.html +43 -0
- data/templates/project/sources/jquery-ui/tests/visual/theme.html +532 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/ajaxcontent.php +2 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/callout.html +213 -0
- data/templates/project/sources/jquery-ui/tests/visual/tooltip/tooltip.html +186 -0
- data/templates/project/sources/jquery-ui/tests/visual/visual.css +3 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.accordion.css +18 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.all.css +11 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.autocomplete.css +13 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.base.css +24 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.button.css +38 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.core.css +41 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.datepicker.css +68 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.dialog.css +21 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.menu.css +44 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.progressbar.css +11 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.resizable.css +25 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.selectable.css +10 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.slider.css +24 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.spinner.css +23 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.tabs.css +17 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.theme.css +252 -0
- data/templates/project/sources/jquery-ui/themes/base/jquery.ui.tooltip.css +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-af.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ar-DZ.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ar.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-az.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-bg.js +24 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-bs.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ca.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-cs.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-da.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-de.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-el.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-AU.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-GB.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-en-NZ.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-eo.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-es.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-et.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-eu.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fa.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fi.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fo.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fr-CH.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js +25 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-gl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-he.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hu.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-hy.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-id.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-is.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-it.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ja.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ko.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-kz.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-lt.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-lv.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ml.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ms.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-nl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-no.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pl.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pt-BR.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-pt.js +22 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-rm.js +21 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ro.js +26 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ru.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sk.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sl.js +24 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sq.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sr-SR.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-sv.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-ta.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-th.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-tj.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-tr.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-uk.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-vi.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-CN.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-HK.js +23 -0
- data/templates/project/sources/jquery-ui/ui/i18n/jquery.ui.datepicker-zh-TW.js +23 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.blind.js +52 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.bounce.js +102 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.clip.js +69 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.core.js +825 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.drop.js +64 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.explode.js +103 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.fade.js +34 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.fold.js +73 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.highlight.js +51 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.pulsate.js +52 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.scale.js +250 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.shake.js +64 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.slide.js +69 -0
- data/templates/project/sources/jquery-ui/ui/jquery.effects.transfer.js +46 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.accordion.js +669 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.autocomplete.js +439 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.button.js +384 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.core.js +303 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.datepicker.js +1779 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.dialog.js +829 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.draggable.js +799 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.droppable.js +285 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.menu.js +402 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.mouse.js +156 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.position.js +283 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.progressbar.js +107 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.resizable.js +812 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.selectable.js +266 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.slider.js +684 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.sortable.js +1076 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.spinner.js +362 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.tabs.js +1039 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.tooltip.js +146 -0
- data/templates/project/sources/jquery-ui/ui/jquery.ui.widget.js +363 -0
- data/templates/project/sources/jquery-ui/version.txt +1 -0
- data/templates/project/sources/pie/LICENSE-APACHE2.txt +13 -0
- data/templates/project/sources/pie/LICENSE-GPL2.txt +278 -0
- data/templates/project/sources/pie/build.xml +118 -0
- data/templates/project/sources/pie/demos/basic.html +321 -0
- data/templates/project/sources/pie/demos/farbtastic/CHANGELOG.html +26 -0
- data/templates/project/sources/pie/demos/farbtastic/LICENSE.txt +341 -0
- data/templates/project/sources/pie/demos/farbtastic/README.html +71 -0
- data/templates/project/sources/pie/demos/farbtastic/demo1.html +28 -0
- data/templates/project/sources/pie/demos/farbtastic/demo2.html +57 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.css +51 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.js +345 -0
- data/templates/project/sources/pie/demos/farbtastic/farbtastic.min.js +1 -0
- data/templates/project/sources/pie/demos/farbtastic/marker.png +0 -0
- data/templates/project/sources/pie/demos/farbtastic/mask.png +0 -0
- data/templates/project/sources/pie/demos/farbtastic/wheel.png +0 -0
- data/templates/project/sources/pie/demos/tabs-control.png +0 -0
- data/templates/project/sources/pie/demos/tabs.html +296 -0
- data/templates/project/sources/pie/documentation/about.html +63 -0
- data/templates/project/sources/pie/documentation/build.html +72 -0
- data/templates/project/sources/pie/documentation/getting-started.html +66 -0
- data/templates/project/sources/pie/documentation/known-issues.html +205 -0
- data/templates/project/sources/pie/documentation/pie-js.html +89 -0
- data/templates/project/sources/pie/documentation/product-comparison.html +89 -0
- data/templates/project/sources/pie/documentation/q-and-a.html +152 -0
- data/templates/project/sources/pie/documentation/supported-css3-features.html +402 -0
- data/templates/project/sources/pie/site/pie-wp-theme/404.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/archive.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/attachment.php +25 -0
- data/templates/project/sources/pie/site/pie-wp-theme/attachment/attachment-default.php +61 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/CHANGELOG.txt +72 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/README.txt +15 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/admin.php +330 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/ajax-load.php +115 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/attachment.php +126 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/carrington.php +106 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/compatibility.php +234 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/css/colorpicker.css +161 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/blank.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_background.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hex.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_h.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_hsb_s.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_indic.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_overlay.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_g.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_rgb_r.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_select.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/colorpicker_submit.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_background.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hex.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_h.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_hsb_s.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_indic.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_b.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_g.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_rgb_r.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/custom_submit.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/select.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/select2.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/images/colorpicker/slider.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/js/colorpicker.js +490 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/LICENSE.txt +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/css/thickbox.css +157 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/blank.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/loadingAnimation.gif +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/img/macFFBgHack.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/lightbox/thickbox.js +332 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/templates.php +105 -0
- data/templates/project/sources/pie/site/pie-wp-theme/carrington-core/utility.php +821 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comment/comment-default.php +53 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comment/ping.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/comments-default.php +66 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/comments-loop.php +49 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/pings-loop.php +38 -0
- data/templates/project/sources/pie/site/pie-wp-theme/comments/threaded.php +31 -0
- data/templates/project/sources/pie/site/pie-wp-theme/content/content-default.php +56 -0
- data/templates/project/sources/pie/site/pie-wp-theme/content/page.php +44 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/common.css +442 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.eot +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.svg +240 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.ttf +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/css/fonts/museosans_500-webfont.woff +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/error/404.php +31 -0
- data/templates/project/sources/pie/site/pie-wp-theme/error/exit.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/excerpt/excerpt-default.php +41 -0
- data/templates/project/sources/pie/site/pie-wp-theme/footer.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/footer/footer-default.php +53 -0
- data/templates/project/sources/pie/site/pie-wp-theme/forms/comment.php +94 -0
- data/templates/project/sources/pie/site/pie-wp-theme/forms/search.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/functions.php +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/functions/sidebars.php +42 -0
- data/templates/project/sources/pie/site/pie-wp-theme/header.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/header/header-default.php +99 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/divider.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/favicon.ico +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/icons.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/img/logo.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/index.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/CHANGELOG.html +26 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/LICENSE.txt +341 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/README.html +71 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/demo1.html +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/demo2.html +57 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.css +51 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.js +345 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/farbtastic.min.js +1 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/marker.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/mask.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/js/farbtastic/wheel.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/archive.php +28 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/loop-default.php +33 -0
- data/templates/project/sources/pie/site/pie-wp-theme/loop/search.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/banner.php +21 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/nav-posts.php +22 -0
- data/templates/project/sources/pie/site/pie-wp-theme/misc/no-results.php +23 -0
- data/templates/project/sources/pie/site/pie-wp-theme/page.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/pages/pages-default.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/author.php +52 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/category.php +40 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/home.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/posts-default.php +30 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/search.php +44 -0
- data/templates/project/sources/pie/site/pie-wp-theme/posts/tag.php +38 -0
- data/templates/project/sources/pie/site/pie-wp-theme/screenshot.png +0 -0
- data/templates/project/sources/pie/site/pie-wp-theme/search.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/sidebar.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/sidebar/sidebar-default.php +68 -0
- data/templates/project/sources/pie/site/pie-wp-theme/single.php +24 -0
- data/templates/project/sources/pie/site/pie-wp-theme/single/single-default.php +40 -0
- data/templates/project/sources/pie/site/pie-wp-theme/style.css +73 -0
- data/templates/project/sources/pie/sources/Angle.js +36 -0
- data/templates/project/sources/pie/sources/BackgroundRenderer.js +381 -0
- data/templates/project/sources/pie/sources/BackgroundStyleInfo.js +295 -0
- data/templates/project/sources/pie/sources/BgPosition.js +104 -0
- data/templates/project/sources/pie/sources/BorderImageRenderer.js +124 -0
- data/templates/project/sources/pie/sources/BorderImageStyleInfo.js +146 -0
- data/templates/project/sources/pie/sources/BorderRadiusStyleInfo.js +68 -0
- data/templates/project/sources/pie/sources/BorderRenderer.js +328 -0
- data/templates/project/sources/pie/sources/BorderStyleInfo.js +101 -0
- data/templates/project/sources/pie/sources/BoundsInfo.js +56 -0
- data/templates/project/sources/pie/sources/BoxShadowInsetRenderer.js +31 -0
- data/templates/project/sources/pie/sources/BoxShadowOutsetRenderer.js +136 -0
- data/templates/project/sources/pie/sources/BoxShadowStyleInfo.js +67 -0
- data/templates/project/sources/pie/sources/Color.js +127 -0
- data/templates/project/sources/pie/sources/Element.js +416 -0
- data/templates/project/sources/pie/sources/Heartbeat.js +16 -0
- data/templates/project/sources/pie/sources/ImgRenderer.js +66 -0
- data/templates/project/sources/pie/sources/Length.js +134 -0
- data/templates/project/sources/pie/sources/Observable.js +44 -0
- data/templates/project/sources/pie/sources/OnBeforeUnload.js +15 -0
- data/templates/project/sources/pie/sources/OnPrint.js +25 -0
- data/templates/project/sources/pie/sources/OnResize.js +12 -0
- data/templates/project/sources/pie/sources/OnScroll.js +15 -0
- data/templates/project/sources/pie/sources/PIE_API.js +35 -0
- data/templates/project/sources/pie/sources/PIE_close.js +2 -0
- data/templates/project/sources/pie/sources/PIE_open.js +47 -0
- data/templates/project/sources/pie/sources/RendererBase.js +299 -0
- data/templates/project/sources/pie/sources/RootRenderer.js +112 -0
- data/templates/project/sources/pie/sources/StyleInfoBase.js +93 -0
- data/templates/project/sources/pie/sources/Tokenizer.js +274 -0
- data/templates/project/sources/pie/sources/Util.js +94 -0
- data/templates/project/sources/pie/sources/VisibilityStyleInfo.js +38 -0
- data/templates/project/sources/pie/sources/closure_externs.js +4 -0
- data/templates/project/sources/pie/sources/closure_preservefunctions.js +4 -0
- data/templates/project/sources/pie/sources/htc_close.txt +2 -0
- data/templates/project/sources/pie/sources/htc_init.js +19 -0
- data/templates/project/sources/pie/sources/htc_open.txt +13 -0
- data/templates/project/sources/pie/sources/js_close.js +1 -0
- data/templates/project/sources/pie/sources/js_open.js +8 -0
- data/templates/project/sources/pie/sources/wrappers/PIE.php +19 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-001.htm +27 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-002.htm +31 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-003.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-004.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-005.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-006.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-007.htm +46 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-008.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-009.htm +45 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-010.htm +31 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-011.htm +41 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-012.htm +49 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-013.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-014.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-015.htm +51 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-016.htm +50 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-applies-to-017.htm +35 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-different-width-001.htm +77 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-initial-value-001.htm +35 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-not-inherited-001.htm +44 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-shorthand-001.htm +69 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-001.htm +33 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-002.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-003.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-004.htm +28 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-style-005.htm +29 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-sum-of-radii-001.htm +158 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-sum-of-radii-002.htm +92 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-with-three-values-001.htm +43 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-radius-with-two-values-001.htm +43 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-001.htm +45 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-002.htm +40 -0
- data/templates/project/sources/pie/tests/IE9 border-radius tests/border-top-left-radius-values-003.htm +51 -0
- data/templates/project/sources/pie/tests/background1.gif +0 -0
- data/templates/project/sources/pie/tests/background2.gif +0 -0
- data/templates/project/sources/pie/tests/basic.html +188 -0
- data/templates/project/sources/pie/tests/border-image-test.html +52 -0
- data/templates/project/sources/pie/tests/border.png +0 -0
- data/templates/project/sources/pie/tests/border2.png +0 -0
- data/templates/project/sources/pie/tests/box-shadow-tests.html +166 -0
- data/templates/project/sources/pie/tests/buttons.html +735 -0
- data/templates/project/sources/pie/tests/color-names.html +32 -0
- data/templates/project/sources/pie/tests/gradient-tests.html +237 -0
- data/templates/project/sources/pie/tests/hiding-tests.html +92 -0
- data/templates/project/sources/pie/tests/hover-tests.html +107 -0
- data/templates/project/sources/pie/tests/iPhoneBackButton.png +0 -0
- data/templates/project/sources/pie/tests/icon-chrome.png +0 -0
- data/templates/project/sources/pie/tests/icon-firefox.png +0 -0
- data/templates/project/sources/pie/tests/icon-ie.png +0 -0
- data/templates/project/sources/pie/tests/icon-opera.png +0 -0
- data/templates/project/sources/pie/tests/icon-safari.png +0 -0
- data/templates/project/sources/pie/tests/img.html +63 -0
- data/templates/project/sources/pie/tests/margin-auto-tests.html +57 -0
- data/templates/project/sources/pie/tests/margin-collapsing-tests.html +77 -0
- data/templates/project/sources/pie/tests/misc-tests.html +257 -0
- data/templates/project/sources/pie/tests/multiple-bg-tests.html +100 -0
- data/templates/project/sources/pie/tests/peculiar-icons/Peculiar.html +372 -0
- data/templates/project/sources/pie/tests/peculiar-icons/pictograms.css +1934 -0
- data/templates/project/sources/pie/tests/peculiar-icons/style.css +106 -0
- data/templates/project/sources/pie/tests/photo.jpg +0 -0
- data/templates/project/sources/pie/tests/png-fix.html +50 -0
- data/templates/project/sources/pie/tests/position-fixed.html +70 -0
- data/templates/project/sources/pie/tests/rtl.html +190 -0
- data/templates/project/sources/pie/tests/sizing-tests.html +55 -0
- data/templates/project/sources/pie/tests/solar-system/asteroids_meteorids.png +0 -0
- data/templates/project/sources/pie/tests/solar-system/bg.jpg +0 -0
- data/templates/project/sources/pie/tests/solar-system/solar-system.html +148 -0
- data/templates/project/sources/pie/tests/solar-system/styles.css +447 -0
- data/templates/project/sources/pie/tests/stress-test.html +187 -0
- data/templates/project/sources/pie/tests/submitted/block.png +0 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t19.html +31 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t25.gif +0 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t25.html +24 -0
- data/templates/project/sources/pie/tests/submitted/forum-f3-t70.html +136 -0
- data/templates/project/sources/pie/tests/submitted/issue23.html +124 -0
- data/templates/project/sources/pie/tests/submitted/issue41.html +164 -0
- data/templates/project/sources/pie/tests/submitted/issue47.html +136 -0
- data/templates/project/sources/pie/tests/submitted/issue75.html +94 -0
- data/templates/project/sources/pie/tests/submitted/tab.png +0 -0
- data/templates/project/sources/pie/tests/tables.html +87 -0
- data/templates/project/sources/pie/tests/tokenizer-tests.html +158 -0
- data/templates/project/sources/pie/tests/z-index-tests.html +145 -0
- data/templates/project/sources/pie/tools/compiler.jar +0 -0
- data/templates/project/sources/scrollability/README.md +38 -0
- data/templates/project/sources/scrollability/scrollability-min.js +1 -0
- data/templates/project/sources/scrollability/scrollability.js +661 -0
- data/templates/project/style.sass +136 -0
- data/templates/project/templates/_flashes.html.haml +4 -0
- data/templates/project/templates/_footer.html.haml +2 -0
- data/templates/project/templates/_head.html.haml +26 -0
- data/templates/project/templates/_header.html.haml +1 -0
- data/templates/project/templates/_javascripts.html.haml +27 -0
- data/templates/project/templates/_stylesheets.html.haml +5 -0
- data/templates/project/templates/application.html.haml +28 -0
- data/templates/project/templates/old/_layout.haml +1 -0
- data/templates/project/templates/old/home.html.haml +14 -0
- data/templates/project/templates/old/layouts/default.haml +62 -0
- data/templates/project/templates/old/layouts/survivalkit/default.haml +64 -0
- data/templates/project/templates/old/layouts/survivalkit/styletile.haml +64 -0
- data/templates/project/templates/old/survivalkit/_layout.haml +1 -0
- data/templates/project/templates/old/survivalkit/elements-common.haml +33 -0
- data/templates/project/templates/old/survivalkit/elements-html5.haml +71 -0
- data/templates/project/templates/old/survivalkit/elements-typography.haml +100 -0
- data/templates/project/templates/old/survivalkit/elements-ui-patterns-drupal.haml +38 -0
- data/templates/project/templates/old/survivalkit/elements-ui-patterns.haml +23 -0
- data/templates/project/templates/old/survivalkit/index.haml +2 -0
- data/templates/project/templates/old/survivalkit/partials/common/abbr.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/acronym.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/characters.haml +11 -0
- data/templates/project/templates/old/survivalkit/partials/common/cite.haml +12 -0
- data/templates/project/templates/old/survivalkit/partials/common/code.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/dfn.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/em.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/forms.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/common/headers.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/common/inline-images.haml +9 -0
- data/templates/project/templates/old/survivalkit/partials/common/kbd.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/links.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/common/lists.haml +55 -0
- data/templates/project/templates/old/survivalkit/partials/common/others.haml +35 -0
- data/templates/project/templates/old/survivalkit/partials/common/paragraphs.haml +15 -0
- data/templates/project/templates/old/survivalkit/partials/common/pre.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/common/q.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/samp.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/strong.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/common/tables.haml +43 -0
- data/templates/project/templates/old/survivalkit/partials/common/var.haml +8 -0
- data/templates/project/templates/old/survivalkit/partials/header-styletile.haml +9 -0
- data/templates/project/templates/old/survivalkit/partials/header.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/html5/a.haml +36 -0
- data/templates/project/templates/old/survivalkit/partials/html5/abbr.haml +26 -0
- data/templates/project/templates/old/survivalkit/partials/html5/address.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/html5/all-headings.haml +31 -0
- data/templates/project/templates/old/survivalkit/partials/html5/article.haml +22 -0
- data/templates/project/templates/old/survivalkit/partials/html5/aside.haml +20 -0
- data/templates/project/templates/old/survivalkit/partials/html5/b.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/html5/bdi.haml +30 -0
- data/templates/project/templates/old/survivalkit/partials/html5/blockquote.haml +32 -0
- data/templates/project/templates/old/survivalkit/partials/html5/cite.haml +46 -0
- data/templates/project/templates/old/survivalkit/partials/html5/code.haml +70 -0
- data/templates/project/templates/old/survivalkit/partials/html5/details.haml +42 -0
- data/templates/project/templates/old/survivalkit/partials/html5/dfn.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/dl.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/html5/em.haml +15 -0
- data/templates/project/templates/old/survivalkit/partials/html5/fieldset.haml +49 -0
- data/templates/project/templates/old/survivalkit/partials/html5/figure.haml +48 -0
- data/templates/project/templates/old/survivalkit/partials/html5/footer.haml +37 -0
- data/templates/project/templates/old/survivalkit/partials/html5/header.haml +44 -0
- data/templates/project/templates/old/survivalkit/partials/html5/hgroup.haml +20 -0
- data/templates/project/templates/old/survivalkit/partials/html5/hr.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/i.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/html5/kbd.haml +19 -0
- data/templates/project/templates/old/survivalkit/partials/html5/label.haml +18 -0
- data/templates/project/templates/old/survivalkit/partials/html5/li.haml +91 -0
- data/templates/project/templates/old/survivalkit/partials/html5/mark.haml +30 -0
- data/templates/project/templates/old/survivalkit/partials/html5/menu.haml +39 -0
- data/templates/project/templates/old/survivalkit/partials/html5/nav.haml +68 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ol.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/html5/p.haml +41 -0
- data/templates/project/templates/old/survivalkit/partials/html5/pre.haml +48 -0
- data/templates/project/templates/old/survivalkit/partials/html5/q.haml +34 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ruby.haml +55 -0
- data/templates/project/templates/old/survivalkit/partials/html5/s.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/html5/samp.haml +27 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sample-forms.haml +52 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sample-tables.haml +152 -0
- data/templates/project/templates/old/survivalkit/partials/html5/section.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/html5/small.haml +33 -0
- data/templates/project/templates/old/survivalkit/partials/html5/strong.haml +25 -0
- data/templates/project/templates/old/survivalkit/partials/html5/sub-sup.haml +58 -0
- data/templates/project/templates/old/survivalkit/partials/html5/table.haml +196 -0
- data/templates/project/templates/old/survivalkit/partials/html5/text-summary.haml +305 -0
- data/templates/project/templates/old/survivalkit/partials/html5/thead.haml +67 -0
- data/templates/project/templates/old/survivalkit/partials/html5/time.haml +31 -0
- data/templates/project/templates/old/survivalkit/partials/html5/ul.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/menu.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/block.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/breadcrumbs.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/comments.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/field-image.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-comment.haml +54 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-login.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-new-account.haml +24 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/form-new-password.haml +16 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/links.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/menu.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/messages.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/node.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/pager.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/rss-link.haml +5 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/search.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/site-name.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/tabs.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-drupal/taxonomy.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/block.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/breadcrumbs.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/comments.haml +69 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/field-image.haml +7 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-comment.haml +54 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-login.haml +23 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-new-account.haml +24 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/form-new-password.haml +16 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/links.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/menu.haml +10 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/messages.haml +21 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/node.haml +28 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/pager.haml +17 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/rss-link.haml +5 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/search.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/site-name.haml +6 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/tabs.haml +14 -0
- data/templates/project/templates/old/survivalkit/partials/patterns-general/taxonomy.haml +10 -0
- data/templates/project/templates/old/survivalkit/styletile/_layout.haml +1 -0
- data/templates/project/templates/old/survivalkit/styletile/index.redirect +1 -0
- data/templates/project/templates/old/survivalkit/styletile/styletile.haml +60 -0
- data/templates/project/templates/old/view_helpers.rb +25 -0
- metadata +1448 -0
@@ -0,0 +1,362 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI Spinner @VERSION
|
3
|
+
*
|
4
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
5
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6
|
+
* http://jquery.org/license
|
7
|
+
*
|
8
|
+
* http://docs.jquery.com/UI/Spinner
|
9
|
+
*
|
10
|
+
* Depends:
|
11
|
+
* jquery.ui.core.js
|
12
|
+
* jquery.ui.widget.js
|
13
|
+
*/
|
14
|
+
(function($) {
|
15
|
+
|
16
|
+
$.widget('ui.spinner', {
|
17
|
+
defaultElement: "<input>",
|
18
|
+
widgetEventPrefix: "spin",
|
19
|
+
options: {
|
20
|
+
incremental: true,
|
21
|
+
max: null,
|
22
|
+
min: null,
|
23
|
+
numberformat: null,
|
24
|
+
page: 10,
|
25
|
+
step: null,
|
26
|
+
value: null
|
27
|
+
},
|
28
|
+
|
29
|
+
_create: function() {
|
30
|
+
this._draw();
|
31
|
+
this._markupOptions();
|
32
|
+
this._mousewheel();
|
33
|
+
this._aria();
|
34
|
+
},
|
35
|
+
|
36
|
+
_markupOptions: function() {
|
37
|
+
var _this = this;
|
38
|
+
$.each({
|
39
|
+
min: -Number.MAX_VALUE,
|
40
|
+
max: Number.MAX_VALUE,
|
41
|
+
step: 1
|
42
|
+
}, function(attr, defaultValue) {
|
43
|
+
if (_this.options[attr] === null) {
|
44
|
+
var value = _this.element.attr(attr);
|
45
|
+
_this.options[attr] = typeof value == "string" && value.length > 0 ? _this._parse(value) : defaultValue;
|
46
|
+
}
|
47
|
+
});
|
48
|
+
this.value(this.options.value !== null ? this.options.value : this.element.val() || 0);
|
49
|
+
},
|
50
|
+
|
51
|
+
_draw: function() {
|
52
|
+
var self = this,
|
53
|
+
options = self.options;
|
54
|
+
|
55
|
+
var uiSpinner = this.uiSpinner = self.element
|
56
|
+
.addClass('ui-spinner-input')
|
57
|
+
.attr('autocomplete', 'off')
|
58
|
+
.wrap(self._uiSpinnerHtml())
|
59
|
+
.parent()
|
60
|
+
// add buttons
|
61
|
+
.append(self._buttonHtml())
|
62
|
+
// add behaviours
|
63
|
+
.hover(function() {
|
64
|
+
if (!options.disabled) {
|
65
|
+
$(this).addClass('ui-state-hover');
|
66
|
+
}
|
67
|
+
self.hovered = true;
|
68
|
+
}, function() {
|
69
|
+
$(this).removeClass('ui-state-hover');
|
70
|
+
self.hovered = false;
|
71
|
+
});
|
72
|
+
|
73
|
+
this.element
|
74
|
+
.attr( "role", "spinbutton" )
|
75
|
+
.bind('keydown.spinner', function(event) {
|
76
|
+
if (self.options.disabled) {
|
77
|
+
return;
|
78
|
+
}
|
79
|
+
if (self._start(event)) {
|
80
|
+
return self._keydown(event);
|
81
|
+
}
|
82
|
+
return true;
|
83
|
+
})
|
84
|
+
.bind('keyup.spinner', function(event) {
|
85
|
+
if (self.options.disabled) {
|
86
|
+
return;
|
87
|
+
}
|
88
|
+
if (self.spinning) {
|
89
|
+
self._stop(event);
|
90
|
+
self._change(event);
|
91
|
+
}
|
92
|
+
})
|
93
|
+
.bind('focus.spinner', function() {
|
94
|
+
uiSpinner.addClass('ui-state-active');
|
95
|
+
self.focused = true;
|
96
|
+
})
|
97
|
+
.bind('blur.spinner', function(event) {
|
98
|
+
self.value(self.element.val());
|
99
|
+
if (!self.hovered) {
|
100
|
+
uiSpinner.removeClass('ui-state-active');
|
101
|
+
}
|
102
|
+
self.focused = false;
|
103
|
+
});
|
104
|
+
|
105
|
+
// button bindings
|
106
|
+
this.buttons = uiSpinner.find('.ui-spinner-button')
|
107
|
+
.attr("tabIndex", -1)
|
108
|
+
.button()
|
109
|
+
.removeClass("ui-corner-all")
|
110
|
+
.bind('mousedown', function(event) {
|
111
|
+
if (self.options.disabled) {
|
112
|
+
return;
|
113
|
+
}
|
114
|
+
if (self._start(event) === false) {
|
115
|
+
return false;
|
116
|
+
}
|
117
|
+
self._repeat(null, $(this).hasClass('ui-spinner-up') ? 1 : -1, event);
|
118
|
+
})
|
119
|
+
.bind('mouseup', function(event) {
|
120
|
+
if (self.options.disabled) {
|
121
|
+
return;
|
122
|
+
}
|
123
|
+
if (self.spinning) {
|
124
|
+
self._stop(event);
|
125
|
+
self._change(event);
|
126
|
+
}
|
127
|
+
})
|
128
|
+
.bind("mouseenter", function() {
|
129
|
+
if (self.options.disabled) {
|
130
|
+
return;
|
131
|
+
}
|
132
|
+
// button will add ui-state-active if mouse was down while mouseleave and kept down
|
133
|
+
if ($(this).hasClass("ui-state-active")) {
|
134
|
+
if (self._start(event) === false) {
|
135
|
+
return false;
|
136
|
+
}
|
137
|
+
self._repeat(null, $(this).hasClass('ui-spinner-up') ? 1 : -1, event);
|
138
|
+
}
|
139
|
+
})
|
140
|
+
.bind("mouseleave", function() {
|
141
|
+
if (self.spinning) {
|
142
|
+
self._stop(event);
|
143
|
+
self._change(event);
|
144
|
+
}
|
145
|
+
});
|
146
|
+
|
147
|
+
// disable spinner if element was already disabled
|
148
|
+
if (options.disabled) {
|
149
|
+
this.disable();
|
150
|
+
}
|
151
|
+
},
|
152
|
+
|
153
|
+
_keydown: function(event) {
|
154
|
+
var o = this.options,
|
155
|
+
KEYS = $.ui.keyCode;
|
156
|
+
|
157
|
+
switch (event.keyCode) {
|
158
|
+
case KEYS.UP:
|
159
|
+
this._repeat(null, 1, event);
|
160
|
+
return false;
|
161
|
+
case KEYS.DOWN:
|
162
|
+
this._repeat(null, -1, event);
|
163
|
+
return false;
|
164
|
+
case KEYS.PAGE_UP:
|
165
|
+
this._repeat(null, this.options.page, event);
|
166
|
+
return false;
|
167
|
+
case KEYS.PAGE_DOWN:
|
168
|
+
this._repeat(null, -this.options.page, event);
|
169
|
+
return false;
|
170
|
+
|
171
|
+
case KEYS.ENTER:
|
172
|
+
this.value(this.element.val());
|
173
|
+
}
|
174
|
+
|
175
|
+
return true;
|
176
|
+
},
|
177
|
+
|
178
|
+
_mousewheel: function() {
|
179
|
+
// need the delta normalization that mousewheel plugin provides
|
180
|
+
if (!$.fn.mousewheel) {
|
181
|
+
return;
|
182
|
+
}
|
183
|
+
var self = this;
|
184
|
+
this.element.bind("mousewheel.spinner", function(event, delta) {
|
185
|
+
if (self.options.disabled || !delta) {
|
186
|
+
return;
|
187
|
+
}
|
188
|
+
if (!self.spinning && !self._start(event)) {
|
189
|
+
return false;
|
190
|
+
}
|
191
|
+
self._spin((delta > 0 ? 1 : -1) * self.options.step, event);
|
192
|
+
clearTimeout(self.timeout);
|
193
|
+
self.timeout = setTimeout(function() {
|
194
|
+
if (self.spinning) {
|
195
|
+
self._stop(event);
|
196
|
+
self._change(event);
|
197
|
+
}
|
198
|
+
}, 100);
|
199
|
+
event.preventDefault();
|
200
|
+
});
|
201
|
+
},
|
202
|
+
|
203
|
+
_uiSpinnerHtml: function() {
|
204
|
+
return '<span class="ui-spinner ui-state-default ui-widget ui-widget-content ui-corner-all"></span>';
|
205
|
+
},
|
206
|
+
|
207
|
+
_buttonHtml: function() {
|
208
|
+
return '<a class="ui-spinner-button ui-spinner-up ui-corner-tr"><span class="ui-icon ui-icon-triangle-1-n">▲</span></a>' +
|
209
|
+
'<a class="ui-spinner-button ui-spinner-down ui-corner-br"><span class="ui-icon ui-icon-triangle-1-s">▼</span></a>';
|
210
|
+
},
|
211
|
+
|
212
|
+
_start: function(event) {
|
213
|
+
if (!this.spinning && this._trigger('start', event) !== false) {
|
214
|
+
if (!this.counter) {
|
215
|
+
this.counter = 1;
|
216
|
+
}
|
217
|
+
this.spinning = true;
|
218
|
+
return true;
|
219
|
+
}
|
220
|
+
return false;
|
221
|
+
},
|
222
|
+
|
223
|
+
_repeat: function(i, steps, event) {
|
224
|
+
var self = this;
|
225
|
+
i = i || 500;
|
226
|
+
|
227
|
+
clearTimeout(this.timer);
|
228
|
+
this.timer = setTimeout(function() {
|
229
|
+
self._repeat(40, steps, event);
|
230
|
+
}, i);
|
231
|
+
|
232
|
+
self._spin(steps * self.options.step, event);
|
233
|
+
},
|
234
|
+
|
235
|
+
_spin: function(step, event) {
|
236
|
+
if (!this.counter) {
|
237
|
+
this.counter = 1;
|
238
|
+
}
|
239
|
+
|
240
|
+
// TODO refactor, maybe figure out some non-linear math
|
241
|
+
var newVal = this.value() + step * (this.options.incremental &&
|
242
|
+
this.counter > 20
|
243
|
+
? this.counter > 100
|
244
|
+
? this.counter > 200
|
245
|
+
? 100
|
246
|
+
: 10
|
247
|
+
: 2
|
248
|
+
: 1);
|
249
|
+
|
250
|
+
if (this._trigger('spin', event, { value: newVal }) !== false) {
|
251
|
+
this.value(newVal);
|
252
|
+
this.counter++;
|
253
|
+
}
|
254
|
+
},
|
255
|
+
|
256
|
+
_stop: function(event) {
|
257
|
+
this.counter = 0;
|
258
|
+
if (this.timer) {
|
259
|
+
window.clearTimeout(this.timer);
|
260
|
+
}
|
261
|
+
this.element.focus();
|
262
|
+
this.spinning = false;
|
263
|
+
this._trigger('stop', event);
|
264
|
+
},
|
265
|
+
|
266
|
+
_change: function(event) {
|
267
|
+
this._trigger('change', event);
|
268
|
+
},
|
269
|
+
|
270
|
+
_setOption: function(key, value) {
|
271
|
+
if (key == 'value') {
|
272
|
+
value = this._parse(value);
|
273
|
+
if (value < this.options.min) {
|
274
|
+
value = this.options.min;
|
275
|
+
}
|
276
|
+
if (value > this.options.max) {
|
277
|
+
value = this.options.max;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
if (key == 'disabled') {
|
281
|
+
if (value) {
|
282
|
+
this.element.attr("disabled", true);
|
283
|
+
this.buttons.button("disable");
|
284
|
+
} else {
|
285
|
+
this.element.removeAttr("disabled");
|
286
|
+
this.buttons.button("enable");
|
287
|
+
}
|
288
|
+
}
|
289
|
+
this._super( "_setOption", key, value );
|
290
|
+
},
|
291
|
+
|
292
|
+
_setOptions: function( options ) {
|
293
|
+
this._super( "_setOptions", options );
|
294
|
+
if ( "value" in options ) {
|
295
|
+
this._format( this.options.value );
|
296
|
+
}
|
297
|
+
this._aria();
|
298
|
+
},
|
299
|
+
|
300
|
+
_aria: function() {
|
301
|
+
this.element
|
302
|
+
.attr('aria-valuemin', this.options.min)
|
303
|
+
.attr('aria-valuemax', this.options.max)
|
304
|
+
.attr('aria-valuenow', this.options.value);
|
305
|
+
},
|
306
|
+
|
307
|
+
_parse: function(val) {
|
308
|
+
var input = val;
|
309
|
+
if (typeof val == 'string') {
|
310
|
+
val = $.global && this.options.numberformat ? $.global.parseFloat(val) : +val;
|
311
|
+
}
|
312
|
+
return isNaN(val) ? null : val;
|
313
|
+
},
|
314
|
+
|
315
|
+
_format: function(num) {
|
316
|
+
this.element.val( $.global && this.options.numberformat ? $.global.format(num, this.options.numberformat) : num );
|
317
|
+
},
|
318
|
+
|
319
|
+
destroy: function() {
|
320
|
+
this.element
|
321
|
+
.removeClass('ui-spinner-input')
|
322
|
+
.removeAttr('disabled')
|
323
|
+
.removeAttr('autocomplete')
|
324
|
+
.removeAttr('role')
|
325
|
+
.removeAttr('aria-valuemin')
|
326
|
+
.removeAttr('aria-valuemax')
|
327
|
+
.removeAttr('aria-valuenow');
|
328
|
+
this._super( "destroy" );
|
329
|
+
this.uiSpinner.replaceWith(this.element);
|
330
|
+
},
|
331
|
+
|
332
|
+
stepUp: function(steps) {
|
333
|
+
this._spin((steps || 1) * this.options.step);
|
334
|
+
},
|
335
|
+
|
336
|
+
stepDown: function(steps) {
|
337
|
+
this._spin((steps || 1) * -this.options.step);
|
338
|
+
},
|
339
|
+
|
340
|
+
pageUp: function(pages) {
|
341
|
+
this.stepUp((pages || 1) * this.options.page);
|
342
|
+
},
|
343
|
+
|
344
|
+
pageDown: function(pages) {
|
345
|
+
this.stepDown((pages || 1) * this.options.page);
|
346
|
+
},
|
347
|
+
|
348
|
+
value: function(newVal) {
|
349
|
+
if (!arguments.length) {
|
350
|
+
return this._parse(this.element.val());
|
351
|
+
}
|
352
|
+
this.option('value', newVal);
|
353
|
+
},
|
354
|
+
|
355
|
+
widget: function() {
|
356
|
+
return this.uiSpinner;
|
357
|
+
}
|
358
|
+
});
|
359
|
+
|
360
|
+
$.ui.spinner.version = "@VERSION";
|
361
|
+
|
362
|
+
})(jQuery);
|
@@ -0,0 +1,1039 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI Tabs @VERSION
|
3
|
+
*
|
4
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
5
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6
|
+
* http://jquery.org/license
|
7
|
+
*
|
8
|
+
* http://docs.jquery.com/UI/Tabs
|
9
|
+
*
|
10
|
+
* Depends:
|
11
|
+
* jquery.ui.core.js
|
12
|
+
* jquery.ui.widget.js
|
13
|
+
*/
|
14
|
+
(function( $, undefined ) {
|
15
|
+
|
16
|
+
var tabId = 0,
|
17
|
+
listId = 0;
|
18
|
+
|
19
|
+
function getNextTabId() {
|
20
|
+
return ++tabId;
|
21
|
+
}
|
22
|
+
|
23
|
+
function getNextListId() {
|
24
|
+
return ++listId;
|
25
|
+
}
|
26
|
+
|
27
|
+
$.widget( "ui.tabs", {
|
28
|
+
options: {
|
29
|
+
activate: null,
|
30
|
+
active: null,
|
31
|
+
beforeActivate: null,
|
32
|
+
beforeLoad: null,
|
33
|
+
collapsible: false,
|
34
|
+
event: "click",
|
35
|
+
fx: null, // e.g. { height: 'toggle', opacity: 'toggle', duration: 200 }
|
36
|
+
load: null
|
37
|
+
},
|
38
|
+
|
39
|
+
_create: function() {
|
40
|
+
var that = this,
|
41
|
+
options = that.options,
|
42
|
+
active = options.active;
|
43
|
+
|
44
|
+
that.running = false;
|
45
|
+
|
46
|
+
that.element.addClass( "ui-tabs ui-widget ui-widget-content ui-corner-all" );
|
47
|
+
|
48
|
+
that._processTabs();
|
49
|
+
|
50
|
+
if ( active === null ) {
|
51
|
+
// check the fragment identifier in the URL
|
52
|
+
if ( location.hash ) {
|
53
|
+
that.anchors.each(function( i, tab ) {
|
54
|
+
if ( tab.hash === location.hash ) {
|
55
|
+
active = i;
|
56
|
+
return false;
|
57
|
+
}
|
58
|
+
});
|
59
|
+
}
|
60
|
+
|
61
|
+
// check for a tab marked active via a class
|
62
|
+
if ( active === null ) {
|
63
|
+
active = that.lis.filter( ".ui-tabs-active" ).index();
|
64
|
+
}
|
65
|
+
|
66
|
+
// no active tab, set to false
|
67
|
+
if ( active === null || active === -1 ) {
|
68
|
+
active = that.lis.length ? 0 : false;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
// handle numbers: negative, out of range
|
73
|
+
if ( active !== false ) {
|
74
|
+
active = this.lis.eq( active ).index();
|
75
|
+
if ( active === -1 ) {
|
76
|
+
active = options.collapsible ? false : 0;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
options.active = active;
|
80
|
+
|
81
|
+
// don't allow collapsible: false and active: false
|
82
|
+
if ( !options.collapsible && options.active === false ) {
|
83
|
+
options.active = 0;
|
84
|
+
}
|
85
|
+
|
86
|
+
// Take disabling tabs via class attribute from HTML
|
87
|
+
// into account and update option properly.
|
88
|
+
if ( $.isArray( options.disabled ) ) {
|
89
|
+
options.disabled = $.unique( options.disabled.concat(
|
90
|
+
$.map( this.lis.filter( ".ui-state-disabled" ), function( n, i ) {
|
91
|
+
return that.lis.index( n );
|
92
|
+
})
|
93
|
+
) ).sort();
|
94
|
+
}
|
95
|
+
|
96
|
+
this._setupFx( options.fx );
|
97
|
+
|
98
|
+
this._refresh();
|
99
|
+
|
100
|
+
// highlight selected tab
|
101
|
+
this.panels.hide();
|
102
|
+
this.lis.removeClass( "ui-tabs-active ui-state-active" );
|
103
|
+
// check for length avoids error when initializing empty list
|
104
|
+
if ( options.active !== false && this.anchors.length ) {
|
105
|
+
this.active = this._findActive( options.active );
|
106
|
+
var panel = that._getPanelForTab( this.active );
|
107
|
+
|
108
|
+
panel.show();
|
109
|
+
|
110
|
+
this.lis.eq( options.active ).addClass( "ui-tabs-active ui-state-active" );
|
111
|
+
|
112
|
+
// TODO: we need to remove this or add it to accordion
|
113
|
+
// seems to be expected behavior that the activate callback is fired
|
114
|
+
that.element.queue( "tabs", function() {
|
115
|
+
that._trigger( "activate", null, that._ui( that.active[ 0 ], panel[ 0 ] ) );
|
116
|
+
});
|
117
|
+
|
118
|
+
this.load( options.active );
|
119
|
+
} else {
|
120
|
+
this.active = $();
|
121
|
+
}
|
122
|
+
},
|
123
|
+
|
124
|
+
_setOption: function( key, value ) {
|
125
|
+
if ( key == "active" ) {
|
126
|
+
// _activate() will handle invalid values and update this.options
|
127
|
+
this._activate( value );
|
128
|
+
return;
|
129
|
+
}
|
130
|
+
|
131
|
+
// setting collapsible: false while collapsed; open first panel
|
132
|
+
if ( key === "collapsible" && !value && this.options.active === false ) {
|
133
|
+
this._activate( 0 );
|
134
|
+
}
|
135
|
+
|
136
|
+
this.options[ key ] = value;
|
137
|
+
this.refresh();
|
138
|
+
},
|
139
|
+
|
140
|
+
_tabId: function( a ) {
|
141
|
+
return $( a ).attr( "aria-controls" ) || "ui-tabs-" + getNextTabId();
|
142
|
+
},
|
143
|
+
|
144
|
+
_sanitizeSelector: function( hash ) {
|
145
|
+
// we need this because an id may contain a ":"
|
146
|
+
return hash ? hash.replace( /:/g, "\\:" ) : "";
|
147
|
+
},
|
148
|
+
|
149
|
+
_ui: function( tab, panel ) {
|
150
|
+
return {
|
151
|
+
tab: tab,
|
152
|
+
panel: panel,
|
153
|
+
index: this.anchors.index( tab )
|
154
|
+
};
|
155
|
+
},
|
156
|
+
|
157
|
+
refresh: function() {
|
158
|
+
var self = this;
|
159
|
+
|
160
|
+
this._processTabs();
|
161
|
+
|
162
|
+
this._refresh();
|
163
|
+
|
164
|
+
// Remove panels that we created that are missing their tab
|
165
|
+
this.element.find(".ui-tabs-panel:data(destroy.tabs)").each( function( index, panel ) {
|
166
|
+
var anchor = self.anchors.filter( "[aria-controls='" + panel.id + "']");
|
167
|
+
if ( !anchor.length ) {
|
168
|
+
$( panel ).remove();
|
169
|
+
}
|
170
|
+
});
|
171
|
+
},
|
172
|
+
|
173
|
+
_refresh: function() {
|
174
|
+
var that = this,
|
175
|
+
options = that.options;
|
176
|
+
|
177
|
+
this.element.toggleClass( "ui-tabs-collapsible", options.collapsible );
|
178
|
+
this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );
|
179
|
+
this.lis.addClass( "ui-state-default ui-corner-top" );
|
180
|
+
this.panels.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" );
|
181
|
+
|
182
|
+
if ( !options.disabled.length ) {
|
183
|
+
options.disabled = false;
|
184
|
+
}
|
185
|
+
|
186
|
+
// disable tabs
|
187
|
+
for ( var i = 0, li; ( li = this.lis[ i ] ); i++ ) {
|
188
|
+
$( li ).toggleClass( "ui-state-disabled", $.inArray( i, options.disabled ) !== -1 );
|
189
|
+
}
|
190
|
+
|
191
|
+
this._setupEvents( options.event );
|
192
|
+
|
193
|
+
// remove all handlers, may run on existing tabs
|
194
|
+
this.lis.unbind( ".tabs" );
|
195
|
+
this._focusable( this.lis );
|
196
|
+
this._hoverable( this.lis );
|
197
|
+
},
|
198
|
+
|
199
|
+
_processTabs: function() {
|
200
|
+
var self = this,
|
201
|
+
fragmentId = /^#.+/; // Safari 2 reports '#' for an empty hash
|
202
|
+
|
203
|
+
this.list = this.element.find( "ol,ul" ).eq( 0 );
|
204
|
+
this.lis = $( " > li:has(a[href])", this.list );
|
205
|
+
this.anchors = this.lis.map(function() {
|
206
|
+
return $( "a", this )[ 0 ];
|
207
|
+
});
|
208
|
+
this.panels = $( [] );
|
209
|
+
|
210
|
+
this.anchors.each(function( i, a ) {
|
211
|
+
var href = $( a ).attr( "href" ),
|
212
|
+
hrefBase = href.split( "#" )[ 0 ],
|
213
|
+
selector,
|
214
|
+
panel,
|
215
|
+
baseEl;
|
216
|
+
|
217
|
+
// For dynamically created HTML that contains a hash as href IE < 8 expands
|
218
|
+
// such href to the full page url with hash and then misinterprets tab as ajax.
|
219
|
+
// Same consideration applies for an added tab with a fragment identifier
|
220
|
+
// since a[href=#fragment-identifier] does unexpectedly not match.
|
221
|
+
// Thus normalize href attribute...
|
222
|
+
if ( hrefBase && ( hrefBase === location.toString().split( "#" )[ 0 ] ||
|
223
|
+
( baseEl = $( "base" )[ 0 ]) && hrefBase === baseEl.href ) ) {
|
224
|
+
href = a.hash;
|
225
|
+
a.href = href;
|
226
|
+
}
|
227
|
+
|
228
|
+
// inline tab
|
229
|
+
if ( fragmentId.test( href ) ) {
|
230
|
+
selector = href;
|
231
|
+
panel = self.element.find( self._sanitizeSelector( selector ) );
|
232
|
+
// remote tab
|
233
|
+
// prevent loading the page itself if href is just "#"
|
234
|
+
} else if ( href && href !== "#" ) {
|
235
|
+
var id = self._tabId( a );
|
236
|
+
selector = "#" + id;
|
237
|
+
panel = self.element.find( selector );
|
238
|
+
if ( !panel.length ) {
|
239
|
+
panel = self._createPanel( id );
|
240
|
+
panel.insertAfter( self.panels[ i - 1 ] || self.list );
|
241
|
+
}
|
242
|
+
// invalid tab href
|
243
|
+
} else {
|
244
|
+
self.options.disabled.push( i );
|
245
|
+
}
|
246
|
+
|
247
|
+
if ( panel.length) {
|
248
|
+
self.panels = self.panels.add( panel );
|
249
|
+
}
|
250
|
+
$( a ).attr( "aria-controls", selector.substring( 1 ) );
|
251
|
+
});
|
252
|
+
},
|
253
|
+
|
254
|
+
_createPanel: function( id ) {
|
255
|
+
return $( "<div></div>" )
|
256
|
+
.attr( "id", id )
|
257
|
+
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
258
|
+
.data( "destroy.tabs", true );
|
259
|
+
},
|
260
|
+
|
261
|
+
_setupFx: function( fx ) {
|
262
|
+
// set up animations
|
263
|
+
if ( fx ) {
|
264
|
+
if ( $.isArray( fx ) ) {
|
265
|
+
this.hideFx = fx[ 0 ];
|
266
|
+
this.showFx = fx[ 1 ];
|
267
|
+
} else {
|
268
|
+
this.hideFx = this.showFx = fx;
|
269
|
+
}
|
270
|
+
}
|
271
|
+
},
|
272
|
+
|
273
|
+
// Reset certain styles left over from animation
|
274
|
+
// and prevent IE's ClearType bug...
|
275
|
+
_resetStyle: function ( $el, fx ) {
|
276
|
+
$el.css( "display", "" );
|
277
|
+
if ( !$.support.opacity && fx.opacity ) {
|
278
|
+
$el[ 0 ].style.removeAttribute( "filter" );
|
279
|
+
}
|
280
|
+
},
|
281
|
+
|
282
|
+
_showTab: function( event, eventData ) {
|
283
|
+
var that = this;
|
284
|
+
|
285
|
+
$( eventData.newTab ).closest( "li" ).addClass( "ui-tabs-active ui-state-active" );
|
286
|
+
|
287
|
+
if ( that.showFx ) {
|
288
|
+
that.running = true;
|
289
|
+
eventData.newPanel
|
290
|
+
// TODO: why are we hiding? old code?
|
291
|
+
.hide()
|
292
|
+
.animate( that.showFx, that.showFx.duration || "normal", function() {
|
293
|
+
that._resetStyle( $( this ), that.showFx );
|
294
|
+
that.running = false;
|
295
|
+
that._trigger( "activate", event, eventData );
|
296
|
+
});
|
297
|
+
} else {
|
298
|
+
eventData.newPanel.show();
|
299
|
+
that._trigger( "activate", event, eventData );
|
300
|
+
}
|
301
|
+
},
|
302
|
+
|
303
|
+
// TODO: combine with _showTab()
|
304
|
+
_hideTab: function( event, eventData ) {
|
305
|
+
var that = this;
|
306
|
+
|
307
|
+
if ( that.hideFx ) {
|
308
|
+
that.running = true;
|
309
|
+
eventData.oldPanel.animate( that.hideFx, that.hideFx.duration || "normal", function() {
|
310
|
+
that.running = false;
|
311
|
+
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
312
|
+
that._resetStyle( $( this ), that.hideFx );
|
313
|
+
that.element.dequeue( "tabs" );
|
314
|
+
if ( !eventData.newPanel.length ) {
|
315
|
+
that._trigger( "activate", event, eventData );
|
316
|
+
}
|
317
|
+
});
|
318
|
+
} else {
|
319
|
+
eventData.oldTab.closest( "li" ).removeClass( "ui-tabs-active ui-state-active" );
|
320
|
+
eventData.oldPanel.hide();
|
321
|
+
that.element.dequeue( "tabs" );
|
322
|
+
if ( !eventData.newPanel.length ) {
|
323
|
+
that._trigger( "activate", event, eventData );
|
324
|
+
}
|
325
|
+
}
|
326
|
+
},
|
327
|
+
|
328
|
+
_setupEvents: function( event ) {
|
329
|
+
// attach tab event handler, unbind to avoid duplicates from former tabifying...
|
330
|
+
this.anchors.unbind( ".tabs" );
|
331
|
+
|
332
|
+
if ( event ) {
|
333
|
+
this.anchors.bind( event.split( " " ).join( ".tabs " ) + ".tabs",
|
334
|
+
$.proxy( this, "_eventHandler" ) );
|
335
|
+
}
|
336
|
+
|
337
|
+
// disable click in any case
|
338
|
+
this.anchors.bind( "click.tabs", function( event ){
|
339
|
+
event.preventDefault();
|
340
|
+
});
|
341
|
+
},
|
342
|
+
|
343
|
+
_eventHandler: function( event ) {
|
344
|
+
var that = this,
|
345
|
+
options = that.options,
|
346
|
+
active = that.active,
|
347
|
+
clicked = $( event.currentTarget ),
|
348
|
+
clickedIsActive = clicked[ 0 ] === active[ 0 ],
|
349
|
+
collapsing = clickedIsActive && options.collapsible,
|
350
|
+
toShow = collapsing ? $() : that._getPanelForTab( clicked ),
|
351
|
+
toHide = !active.length ? $() : that._getPanelForTab( active ),
|
352
|
+
tab = clicked.closest( "li" ),
|
353
|
+
eventData = {
|
354
|
+
oldTab: active,
|
355
|
+
oldPanel: toHide,
|
356
|
+
newTab: collapsing ? $() : clicked,
|
357
|
+
newPanel: toShow
|
358
|
+
};
|
359
|
+
|
360
|
+
event.preventDefault();
|
361
|
+
|
362
|
+
if ( tab.hasClass( "ui-state-disabled" ) ||
|
363
|
+
// tab is already loading
|
364
|
+
tab.hasClass( "ui-tabs-loading" ) ||
|
365
|
+
// can't switch durning an animation
|
366
|
+
that.running ||
|
367
|
+
// click on active header, but not collapsible
|
368
|
+
( clickedIsActive && !options.collapsible ) ||
|
369
|
+
// allow canceling activation
|
370
|
+
( that._trigger( "beforeActivate", event, eventData ) === false ) ) {
|
371
|
+
clicked[ 0 ].blur();
|
372
|
+
return;
|
373
|
+
}
|
374
|
+
|
375
|
+
options.active = collapsing ? false : that.anchors.index( clicked );
|
376
|
+
|
377
|
+
that.active = clickedIsActive ? $() : clicked;
|
378
|
+
if ( that.xhr ) {
|
379
|
+
that.xhr.abort();
|
380
|
+
}
|
381
|
+
|
382
|
+
// if tab may be closed
|
383
|
+
if ( options.collapsible ) {
|
384
|
+
if ( collapsing ) {
|
385
|
+
options.active = false;
|
386
|
+
|
387
|
+
that.element.queue( "tabs", function() {
|
388
|
+
that._hideTab( event, eventData );
|
389
|
+
}).dequeue( "tabs" );
|
390
|
+
|
391
|
+
clicked[ 0 ].blur();
|
392
|
+
return;
|
393
|
+
} else if ( !toHide.length ) {
|
394
|
+
that.element.queue( "tabs", function() {
|
395
|
+
that._showTab( event, eventData );
|
396
|
+
});
|
397
|
+
|
398
|
+
// TODO make passing in node possible, see also http://dev.jqueryui.com/ticket/3171
|
399
|
+
that.load( that.anchors.index( clicked ), event );
|
400
|
+
|
401
|
+
clicked[ 0 ].blur();
|
402
|
+
return;
|
403
|
+
}
|
404
|
+
}
|
405
|
+
|
406
|
+
// show new tab
|
407
|
+
if ( toShow.length ) {
|
408
|
+
if ( toHide.length ) {
|
409
|
+
that.element.queue( "tabs", function() {
|
410
|
+
that._hideTab( event, eventData );
|
411
|
+
});
|
412
|
+
}
|
413
|
+
that.element.queue( "tabs", function() {
|
414
|
+
that._showTab( event, eventData );
|
415
|
+
});
|
416
|
+
|
417
|
+
that.load( that.anchors.index( clicked ), event );
|
418
|
+
} else {
|
419
|
+
throw "jQuery UI Tabs: Mismatching fragment identifier.";
|
420
|
+
}
|
421
|
+
|
422
|
+
// Prevent IE from keeping other link focussed when using the back button
|
423
|
+
// and remove dotted border from clicked link. This is controlled via CSS
|
424
|
+
// in modern browsers; blur() removes focus from address bar in Firefox
|
425
|
+
// which can become a usability
|
426
|
+
if ( $.browser.msie ) {
|
427
|
+
clicked[ 0 ].blur();
|
428
|
+
}
|
429
|
+
},
|
430
|
+
|
431
|
+
_activate: function( index ) {
|
432
|
+
var active = this._findActive( index )[ 0 ];
|
433
|
+
|
434
|
+
// trying to activate the already active panel
|
435
|
+
if ( active === this.active[ 0 ] ) {
|
436
|
+
return;
|
437
|
+
}
|
438
|
+
|
439
|
+
// trying to collapse, simulate a click on the current active header
|
440
|
+
active = active || this.active[ 0 ];
|
441
|
+
|
442
|
+
this._eventHandler({
|
443
|
+
target: active,
|
444
|
+
currentTarget: active,
|
445
|
+
preventDefault: $.noop
|
446
|
+
});
|
447
|
+
},
|
448
|
+
|
449
|
+
_findActive: function( selector ) {
|
450
|
+
return typeof selector === "number" ? this.anchors.eq( selector ) :
|
451
|
+
typeof selector === "string" ? this.anchors.filter( "[href$='" + selector + "']" ) : $();
|
452
|
+
},
|
453
|
+
|
454
|
+
_getIndex: function( index ) {
|
455
|
+
// meta-function to give users option to provide a href string instead of a numerical index.
|
456
|
+
// also sanitizes numerical indexes to valid values.
|
457
|
+
if ( typeof index == "string" ) {
|
458
|
+
index = this.anchors.index( this.anchors.filter( "[href$=" + index + "]" ) );
|
459
|
+
}
|
460
|
+
|
461
|
+
return index;
|
462
|
+
},
|
463
|
+
|
464
|
+
_destroy: function() {
|
465
|
+
var o = this.options;
|
466
|
+
|
467
|
+
if ( this.xhr ) {
|
468
|
+
this.xhr.abort();
|
469
|
+
}
|
470
|
+
|
471
|
+
this.element.removeClass( "ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible" );
|
472
|
+
|
473
|
+
this.list.removeClass( "ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all" );
|
474
|
+
|
475
|
+
this.anchors.each(function() {
|
476
|
+
var $this = $( this ).unbind( ".tabs" );
|
477
|
+
$.each( [ "href", "load" ], function( i, prefix ) {
|
478
|
+
$this.removeData( prefix + ".tabs" );
|
479
|
+
});
|
480
|
+
});
|
481
|
+
|
482
|
+
this.lis.unbind( ".tabs" ).add( this.panels ).each(function() {
|
483
|
+
if ( $.data( this, "destroy.tabs" ) ) {
|
484
|
+
$( this ).remove();
|
485
|
+
} else {
|
486
|
+
$( this ).removeClass([
|
487
|
+
"ui-state-default",
|
488
|
+
"ui-corner-top",
|
489
|
+
"ui-tabs-active",
|
490
|
+
"ui-state-active",
|
491
|
+
"ui-state-disabled",
|
492
|
+
"ui-tabs-panel",
|
493
|
+
"ui-widget-content",
|
494
|
+
"ui-corner-bottom"
|
495
|
+
].join( " " ) );
|
496
|
+
}
|
497
|
+
});
|
498
|
+
|
499
|
+
return this;
|
500
|
+
},
|
501
|
+
|
502
|
+
enable: function( index ) {
|
503
|
+
if ( index === undefined ) {
|
504
|
+
for ( var i = 0, len = this.lis.length; i < len; i++ ) {
|
505
|
+
this.enable( i );
|
506
|
+
}
|
507
|
+
return this;
|
508
|
+
}
|
509
|
+
index = this._getIndex( index );
|
510
|
+
var o = this.options;
|
511
|
+
if ( !o.disabled || ($.isArray( o.disabled ) && $.inArray( index, o.disabled ) == -1 ) ) {
|
512
|
+
return;
|
513
|
+
}
|
514
|
+
|
515
|
+
this.lis.eq( index ).removeClass( "ui-state-disabled" );
|
516
|
+
o.disabled = this.lis.map( function( i ) {
|
517
|
+
return $(this).is( ".ui-state-disabled" ) ? i : null;
|
518
|
+
}).get();
|
519
|
+
|
520
|
+
if ( !o.disabled.length ) {
|
521
|
+
o.disabled = false;
|
522
|
+
}
|
523
|
+
|
524
|
+
return this;
|
525
|
+
},
|
526
|
+
|
527
|
+
disable: function( index ) {
|
528
|
+
if ( index === undefined ) {
|
529
|
+
for ( var i = 0, len = this.lis.length; i < len; i++ ) {
|
530
|
+
this.disable( i );
|
531
|
+
}
|
532
|
+
return this;
|
533
|
+
}
|
534
|
+
index = this._getIndex( index );
|
535
|
+
var o = this.options;
|
536
|
+
if ( !o.disabled || ($.isArray( o.disabled ) && $.inArray( index, o.disabled ) == -1 ) ) {
|
537
|
+
this.lis.eq( index ).addClass( "ui-state-disabled" );
|
538
|
+
|
539
|
+
o.disabled = this.lis.map( function( i ) {
|
540
|
+
return $(this).is( ".ui-state-disabled" ) ? i : null;
|
541
|
+
}).get();
|
542
|
+
|
543
|
+
if ( o.disabled.length === this.anchors.length ) {
|
544
|
+
o.disabled = true;
|
545
|
+
}
|
546
|
+
|
547
|
+
}
|
548
|
+
|
549
|
+
return this;
|
550
|
+
},
|
551
|
+
|
552
|
+
load: function( index, event ) {
|
553
|
+
index = this._getIndex( index );
|
554
|
+
var self = this,
|
555
|
+
o = this.options,
|
556
|
+
a = this.anchors.eq( index )[ 0 ],
|
557
|
+
panel = self._getPanelForTab( a ),
|
558
|
+
// TODO until #3808 is fixed strip fragment identifier from url
|
559
|
+
// (IE fails to load from such url)
|
560
|
+
url = $( a ).attr( "href" ).replace( /#.*$/, "" ),
|
561
|
+
eventData = {
|
562
|
+
tab: $( a ),
|
563
|
+
panel: panel
|
564
|
+
};
|
565
|
+
|
566
|
+
if ( this.xhr ) {
|
567
|
+
this.xhr.abort();
|
568
|
+
}
|
569
|
+
|
570
|
+
// not remote
|
571
|
+
if ( !url ) {
|
572
|
+
this.element.dequeue( "tabs" );
|
573
|
+
return;
|
574
|
+
}
|
575
|
+
|
576
|
+
this.xhr = $.ajax({
|
577
|
+
url: url,
|
578
|
+
beforeSend: function( jqXHR, settings ) {
|
579
|
+
return self._trigger( "beforeLoad", event,
|
580
|
+
$.extend( { jqXHR : jqXHR, ajaxSettings: settings }, eventData ) );
|
581
|
+
}
|
582
|
+
});
|
583
|
+
|
584
|
+
if ( this.xhr ) {
|
585
|
+
// load remote from here on
|
586
|
+
this.lis.eq( index ).addClass( "ui-tabs-loading" );
|
587
|
+
|
588
|
+
this.xhr
|
589
|
+
.success(function( response ) {
|
590
|
+
panel.html( response );
|
591
|
+
})
|
592
|
+
.complete(function( jqXHR, status ) {
|
593
|
+
if ( status === "abort" ) {
|
594
|
+
// stop possibly running animations
|
595
|
+
self.element.queue( [] );
|
596
|
+
self.panels.stop( false, true );
|
597
|
+
|
598
|
+
// "tabs" queue must not contain more than two elements,
|
599
|
+
// which are the callbacks for the latest clicked tab...
|
600
|
+
self.element.queue( "tabs", self.element.queue( "tabs" ).splice( -2, 2 ) );
|
601
|
+
|
602
|
+
delete this.xhr;
|
603
|
+
}
|
604
|
+
|
605
|
+
self.lis.eq( index ).removeClass( "ui-tabs-loading" );
|
606
|
+
|
607
|
+
self._trigger( "load", event, eventData );
|
608
|
+
});
|
609
|
+
}
|
610
|
+
|
611
|
+
// last, so that load event is fired before show...
|
612
|
+
self.element.dequeue( "tabs" );
|
613
|
+
|
614
|
+
return this;
|
615
|
+
},
|
616
|
+
|
617
|
+
_getPanelForTab: function( tab ) {
|
618
|
+
var id = $( tab ).attr( "aria-controls" );
|
619
|
+
return this.element.find( this._sanitizeSelector( "#" + id ) );
|
620
|
+
}
|
621
|
+
});
|
622
|
+
|
623
|
+
$.extend( $.ui.tabs, {
|
624
|
+
version: "@VERSION"
|
625
|
+
});
|
626
|
+
|
627
|
+
// DEPRECATED
|
628
|
+
if ( $.uiBackCompat !== false ) {
|
629
|
+
// ajaxOptions and cache options
|
630
|
+
(function( $, prototype ) {
|
631
|
+
$.extend( prototype.options, {
|
632
|
+
ajaxOptions: null,
|
633
|
+
cache: false
|
634
|
+
});
|
635
|
+
|
636
|
+
var _create = prototype._create,
|
637
|
+
_setOption = prototype._setOption,
|
638
|
+
_destroy = prototype._destroy,
|
639
|
+
oldurl = prototype._url;
|
640
|
+
|
641
|
+
$.extend( prototype, {
|
642
|
+
_create: function() {
|
643
|
+
_create.call( this );
|
644
|
+
|
645
|
+
var self = this;
|
646
|
+
|
647
|
+
this.element.bind( "tabsbeforeload", function( event, ui ) {
|
648
|
+
// tab is already cached
|
649
|
+
if ( $.data( ui.tab[ 0 ], "cache.tabs" ) ) {
|
650
|
+
event.preventDefault();
|
651
|
+
return;
|
652
|
+
}
|
653
|
+
|
654
|
+
$.extend( ui.ajaxSettings, self.options.ajaxOptions, {
|
655
|
+
error: function( xhr, s, e ) {
|
656
|
+
try {
|
657
|
+
// Passing index avoid a race condition when this method is
|
658
|
+
// called after the user has selected another tab.
|
659
|
+
// Pass the anchor that initiated this request allows
|
660
|
+
// loadError to manipulate the tab content panel via $(a.hash)
|
661
|
+
self.options.ajaxOptions.error( xhr, s, ui.tab.closest( "li" ).index(), ui.tab[ 0 ] );
|
662
|
+
}
|
663
|
+
catch ( e ) {}
|
664
|
+
}
|
665
|
+
});
|
666
|
+
|
667
|
+
ui.jqXHR.success( function() {
|
668
|
+
if ( self.options.cache ) {
|
669
|
+
$.data( ui.tab[ 0 ], "cache.tabs", true );
|
670
|
+
}
|
671
|
+
});
|
672
|
+
});
|
673
|
+
},
|
674
|
+
|
675
|
+
_setOption: function( key, value ) {
|
676
|
+
// reset cache if switching from cached to not cached
|
677
|
+
if ( key === "cache" && value === false ) {
|
678
|
+
this.anchors.removeData( "cache.tabs" );
|
679
|
+
}
|
680
|
+
_setOption.apply( this, arguments );
|
681
|
+
},
|
682
|
+
|
683
|
+
_destroy: function() {
|
684
|
+
this.anchors.removeData( "cache.tabs" );
|
685
|
+
_destroy.call( this );
|
686
|
+
},
|
687
|
+
|
688
|
+
url: function( index, url ){
|
689
|
+
this.anchors.eq( index ).removeData( "cache.tabs" );
|
690
|
+
oldurl.apply( this, arguments );
|
691
|
+
}
|
692
|
+
});
|
693
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
694
|
+
|
695
|
+
// abort method
|
696
|
+
(function( $, prototype ) {
|
697
|
+
prototype.abort = function() {
|
698
|
+
if ( this.xhr ) {
|
699
|
+
this.xhr.abort();
|
700
|
+
}
|
701
|
+
};
|
702
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
703
|
+
|
704
|
+
// spinner
|
705
|
+
(function( $, prototype ) {
|
706
|
+
$.extend( prototype.options, {
|
707
|
+
spinner: "<em>Loading…</em>"
|
708
|
+
});
|
709
|
+
|
710
|
+
var _create = prototype._create;
|
711
|
+
prototype._create = function() {
|
712
|
+
_create.call( this );
|
713
|
+
var self = this;
|
714
|
+
|
715
|
+
this.element.bind( "tabsbeforeload", function( event, ui ) {
|
716
|
+
if ( self.options.spinner ) {
|
717
|
+
var span = $( "span", ui.tab );
|
718
|
+
if ( span.length ) {
|
719
|
+
span.data( "label.tabs", span.html() ).html( self.options.spinner );
|
720
|
+
}
|
721
|
+
}
|
722
|
+
ui.jqXHR.complete( function() {
|
723
|
+
if ( self.options.spinner ) {
|
724
|
+
var span = $( "span", ui.tab );
|
725
|
+
if ( span.length ) {
|
726
|
+
span.html( span.data( "label.tabs" ) ).removeData( "label.tabs" );
|
727
|
+
}
|
728
|
+
}
|
729
|
+
});
|
730
|
+
});
|
731
|
+
};
|
732
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
733
|
+
|
734
|
+
// enable/disable events
|
735
|
+
(function( $, prototype ) {
|
736
|
+
$.extend( prototype.options, {
|
737
|
+
enable: null,
|
738
|
+
disable: null
|
739
|
+
});
|
740
|
+
|
741
|
+
var enable = prototype.enable,
|
742
|
+
disable = prototype.disable;
|
743
|
+
|
744
|
+
prototype.enable = function( index ) {
|
745
|
+
var o = this.options,
|
746
|
+
trigger;
|
747
|
+
|
748
|
+
if ( index && o.disabled || ($.isArray( o.disabled ) && $.inArray( index, o.disabled ) !== -1 ) ) {
|
749
|
+
trigger = true;
|
750
|
+
}
|
751
|
+
|
752
|
+
enable.apply( this, arguments );
|
753
|
+
|
754
|
+
if ( trigger ) {
|
755
|
+
this._trigger( "enable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
756
|
+
}
|
757
|
+
};
|
758
|
+
|
759
|
+
prototype.disable = function( index ) {
|
760
|
+
var o = this.options,
|
761
|
+
trigger;
|
762
|
+
|
763
|
+
if ( index && !o.disabled || ($.isArray( o.disabled ) && $.inArray( index, o.disabled ) == -1 ) ) {
|
764
|
+
trigger = true;
|
765
|
+
}
|
766
|
+
|
767
|
+
disable.apply( this, arguments );
|
768
|
+
|
769
|
+
if ( trigger ) {
|
770
|
+
this._trigger( "disable", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
771
|
+
}
|
772
|
+
};
|
773
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
774
|
+
|
775
|
+
// add/remove methods and events
|
776
|
+
(function( $, prototype ) {
|
777
|
+
$.extend( prototype.options, {
|
778
|
+
add: null,
|
779
|
+
remove: null,
|
780
|
+
tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>"
|
781
|
+
});
|
782
|
+
|
783
|
+
prototype.add = function( url, label, index ) {
|
784
|
+
if ( index === undefined ) {
|
785
|
+
index = this.anchors.length;
|
786
|
+
}
|
787
|
+
|
788
|
+
var self = this,
|
789
|
+
o = this.options,
|
790
|
+
$li = $( o.tabTemplate.replace( /#\{href\}/g, url ).replace( /#\{label\}/g, label ) ),
|
791
|
+
id = !url.indexOf( "#" ) ? url.replace( "#", "" ) : this._tabId( $( "a", $li )[ 0 ] );
|
792
|
+
|
793
|
+
$li.addClass( "ui-state-default ui-corner-top" ).data( "destroy.tabs", true );
|
794
|
+
|
795
|
+
// try to find an existing element before creating a new one
|
796
|
+
var $panel = self.element.find( "#" + id );
|
797
|
+
if ( !$panel.length ) {
|
798
|
+
$panel = self._createPanel( id );
|
799
|
+
}
|
800
|
+
$panel.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" ).hide();
|
801
|
+
|
802
|
+
if ( index >= this.lis.length ) {
|
803
|
+
$li.appendTo( this.list );
|
804
|
+
$panel.appendTo( this.list[ 0 ].parentNode );
|
805
|
+
} else {
|
806
|
+
$li.insertBefore( this.lis[ index ] );
|
807
|
+
$panel.insertBefore( this.panels[ index ] );
|
808
|
+
}
|
809
|
+
|
810
|
+
o.disabled = $.map( o.disabled, function( n, i ) {
|
811
|
+
return n >= index ? ++n : n;
|
812
|
+
});
|
813
|
+
|
814
|
+
this.refresh();
|
815
|
+
|
816
|
+
if ( this.anchors.length == 1 ) {
|
817
|
+
o.active = o.selected = 0;
|
818
|
+
$li.addClass( "ui-tabs-active ui-state-active" );
|
819
|
+
$panel.show();
|
820
|
+
this.element.queue( "tabs", function() {
|
821
|
+
self._trigger( "activate", null, self._ui( self.anchors[ 0 ], self.panels[ 0 ] ) );
|
822
|
+
});
|
823
|
+
|
824
|
+
this.load( 0 );
|
825
|
+
}
|
826
|
+
|
827
|
+
this._trigger( "add", null, this._ui( this.anchors[ index ], this.panels[ index ] ) );
|
828
|
+
return this;
|
829
|
+
};
|
830
|
+
|
831
|
+
prototype.remove = function( index ) {
|
832
|
+
index = this._getIndex( index );
|
833
|
+
var o = this.options,
|
834
|
+
$li = this.lis.eq( index ).remove(),
|
835
|
+
$panel = this.panels.eq( index ).remove();
|
836
|
+
|
837
|
+
// If selected tab was removed focus tab to the right or
|
838
|
+
// in case the last tab was removed the tab to the left.
|
839
|
+
if ( $li.hasClass( "ui-tabs-active" ) && this.anchors.length > 1) {
|
840
|
+
this._activate( index + ( index + 1 < this.anchors.length ? 1 : -1 ) );
|
841
|
+
}
|
842
|
+
|
843
|
+
o.disabled = $.map(
|
844
|
+
$.grep( o.disabled, function(n, i) {
|
845
|
+
return n != index;
|
846
|
+
}),
|
847
|
+
function( n, i ) {
|
848
|
+
return n >= index ? --n : n;
|
849
|
+
});
|
850
|
+
|
851
|
+
this.refresh();
|
852
|
+
|
853
|
+
this._trigger( "remove", null, this._ui( $li.find( "a" )[ 0 ], $panel[ 0 ] ) );
|
854
|
+
return this;
|
855
|
+
};
|
856
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
857
|
+
|
858
|
+
// length method
|
859
|
+
(function( $, prototype ) {
|
860
|
+
prototype.length = function() {
|
861
|
+
return this.anchors.length;
|
862
|
+
};
|
863
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
864
|
+
|
865
|
+
// url method
|
866
|
+
(function( $, prototype ) {
|
867
|
+
prototype.url = function( index, url ) {
|
868
|
+
this.anchors.eq( index ).attr( "href", url );
|
869
|
+
};
|
870
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
871
|
+
|
872
|
+
// panel ids (idPrefix option + title attribute)
|
873
|
+
(function( $, prototype ) {
|
874
|
+
$.extend( prototype.options, {
|
875
|
+
idPrefix: "ui-tabs-"
|
876
|
+
});
|
877
|
+
|
878
|
+
var _tabId = prototype._tabId;
|
879
|
+
prototype._tabId = function( a ) {
|
880
|
+
return $( a ).attr( "aria-controls" ) ||
|
881
|
+
a.title && a.title.replace( /\s/g, "_" ).replace( /[^\w\u00c0-\uFFFF-]/g, "" ) ||
|
882
|
+
this.options.idPrefix + getNextTabId();
|
883
|
+
};
|
884
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
885
|
+
|
886
|
+
// _createPanel method
|
887
|
+
(function( $, prototype ) {
|
888
|
+
$.extend( prototype.options, {
|
889
|
+
panelTemplate: "<div></div>"
|
890
|
+
});
|
891
|
+
|
892
|
+
var _createPanel = prototype._createPanel;
|
893
|
+
prototype._createPanel = function( id ) {
|
894
|
+
return $( this.options.panelTemplate )
|
895
|
+
.attr( "id", id )
|
896
|
+
.addClass( "ui-tabs-panel ui-widget-content ui-corner-bottom" )
|
897
|
+
.data( "destroy.tabs", true );
|
898
|
+
};
|
899
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
900
|
+
|
901
|
+
// selected option
|
902
|
+
(function( $, prototype ) {
|
903
|
+
var _create = prototype._create,
|
904
|
+
_setOption = prototype._setOption,
|
905
|
+
_eventHandler = prototype._eventHandler;
|
906
|
+
|
907
|
+
prototype._create = function() {
|
908
|
+
var options = this.options;
|
909
|
+
if ( options.active === null && options.selected !== undefined ) {
|
910
|
+
options.active = options.selected === -1 ? false : options.selected;
|
911
|
+
}
|
912
|
+
_create.call( this );
|
913
|
+
options.selected = options.active;
|
914
|
+
if ( options.selected === false ) {
|
915
|
+
options.selected = -1;
|
916
|
+
}
|
917
|
+
};
|
918
|
+
|
919
|
+
prototype._setOption = function( key, value ) {
|
920
|
+
var options = this.options;
|
921
|
+
if ( key === "selected" ) {
|
922
|
+
key = "active";
|
923
|
+
}
|
924
|
+
_setOption.apply( this, arguments );
|
925
|
+
if ( key === "active" ) {
|
926
|
+
if ( key === - 1 ) {
|
927
|
+
key = false;
|
928
|
+
}
|
929
|
+
options.selected = options.active;
|
930
|
+
if ( options.selected === false ) {
|
931
|
+
options.selected = -1;
|
932
|
+
}
|
933
|
+
}
|
934
|
+
};
|
935
|
+
|
936
|
+
prototype._eventHandler = function( event ) {
|
937
|
+
_eventHandler.apply( this, arguments );
|
938
|
+
this.options.selected = this.options.active;
|
939
|
+
if ( this.options.selected === false ) {
|
940
|
+
this.options.selected = -1;
|
941
|
+
}
|
942
|
+
};
|
943
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
944
|
+
|
945
|
+
// show and select event
|
946
|
+
(function( $, prototype ) {
|
947
|
+
$.extend( prototype.options, {
|
948
|
+
show: null,
|
949
|
+
select: null
|
950
|
+
});
|
951
|
+
var _trigger = prototype._trigger;
|
952
|
+
|
953
|
+
prototype._trigger = function( type, event, data ) {
|
954
|
+
var ret = _trigger.apply( this, arguments );
|
955
|
+
if ( !ret ) {
|
956
|
+
return false;
|
957
|
+
}
|
958
|
+
if ( type === "beforeActivate" ) {
|
959
|
+
ret = _trigger.call( this, "select", event, {
|
960
|
+
tab: data.newTab[ 0],
|
961
|
+
panel: data.newPanel[ 0 ],
|
962
|
+
index: data.newTab.closest( "li" ).index()
|
963
|
+
});
|
964
|
+
} else if ( type === "activate" ) {
|
965
|
+
ret = _trigger.call( this, "show", event, data );
|
966
|
+
}
|
967
|
+
};
|
968
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
969
|
+
|
970
|
+
// select method
|
971
|
+
(function( $, prototype ) {
|
972
|
+
prototype.select = function( index ) {
|
973
|
+
index = this._getIndex( index );
|
974
|
+
if ( index == -1 ) {
|
975
|
+
if ( this.options.collapsible && this.options.selected != -1 ) {
|
976
|
+
index = this.options.selected;
|
977
|
+
} else {
|
978
|
+
return;
|
979
|
+
}
|
980
|
+
}
|
981
|
+
this.anchors.eq( index ).trigger( this.options.event + ".tabs" );
|
982
|
+
};
|
983
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
984
|
+
|
985
|
+
// cookie option
|
986
|
+
(function( $, prototype ) {
|
987
|
+
$.extend( prototype.options, {
|
988
|
+
cookie: null // e.g. { expires: 7, path: '/', domain: 'jquery.com', secure: true }
|
989
|
+
});
|
990
|
+
|
991
|
+
var _create = prototype._create,
|
992
|
+
_refresh = prototype._refresh,
|
993
|
+
_eventHandler = prototype._eventHandler,
|
994
|
+
_destroy = prototype._destroy;
|
995
|
+
|
996
|
+
prototype._create = function() {
|
997
|
+
var o = this.options;
|
998
|
+
if ( o.active === undefined ) {
|
999
|
+
if ( typeof o.active !== "number" && o.cookie ) {
|
1000
|
+
o.active = parseInt( this._cookie(), 10 );
|
1001
|
+
}
|
1002
|
+
}
|
1003
|
+
_create.call( this );
|
1004
|
+
};
|
1005
|
+
|
1006
|
+
prototype._cookie = function() {
|
1007
|
+
var cookie = this.cookie ||
|
1008
|
+
( this.cookie = this.options.cookie.name || "ui-tabs-" + getNextListId() );
|
1009
|
+
return $.cookie.apply( null, [ cookie ].concat( $.makeArray( arguments ) ) );
|
1010
|
+
};
|
1011
|
+
|
1012
|
+
prototype._refresh = function() {
|
1013
|
+
_refresh.call( this );
|
1014
|
+
|
1015
|
+
// set or update cookie after init and add/remove respectively
|
1016
|
+
if ( this.options.cookie ) {
|
1017
|
+
this._cookie( this.options.active, this.options.cookie );
|
1018
|
+
}
|
1019
|
+
};
|
1020
|
+
|
1021
|
+
prototype._eventHandler = function( event ) {
|
1022
|
+
_eventHandler.apply( this, arguments );
|
1023
|
+
|
1024
|
+
if ( this.options.cookie ) {
|
1025
|
+
this._cookie( this.options.active, this.options.cookie );
|
1026
|
+
}
|
1027
|
+
};
|
1028
|
+
|
1029
|
+
prototype._destroy = function() {
|
1030
|
+
_destroy.call( this );
|
1031
|
+
|
1032
|
+
if ( this.options.cookie ) {
|
1033
|
+
this._cookie( null, this.options.cookie );
|
1034
|
+
}
|
1035
|
+
};
|
1036
|
+
}( jQuery, jQuery.ui.tabs.prototype ) );
|
1037
|
+
}
|
1038
|
+
|
1039
|
+
})( jQuery );
|