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,2959 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<!--[if lt IE 7]> <html lang="en" class="no-js ie6"> <![endif]-->
|
3
|
+
<!--[if IE 7]> <html lang="en" class="no-js ie7"> <![endif]-->
|
4
|
+
<!--[if IE 8]> <html lang="en" class="no-js ie8"> <![endif]-->
|
5
|
+
<!--[if gt IE 8]><!-->
|
6
|
+
<html class='no-js' lang='en'>
|
7
|
+
<!--<![endif]-->
|
8
|
+
<head>
|
9
|
+
<meta charset='utf-8' />
|
10
|
+
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
|
11
|
+
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
|
12
|
+
<title>HTML5 Elements</title>
|
13
|
+
<meta content='' name='description' />
|
14
|
+
<meta content='' name='author' />
|
15
|
+
<meta content='woodcock, washburn, intellectual property law, ip, law' name='Keywords' />
|
16
|
+
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
|
17
|
+
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
|
18
|
+
<link href='/favicon.ico' rel='shortcut icon' type='image/x-icon' />
|
19
|
+
<!-- CSS -->
|
20
|
+
<link href='/css/style.css?v=1' rel='stylesheet' />
|
21
|
+
<!-- All JavaScript at the bottom, except for Modernizr and Respond. -->
|
22
|
+
<script src='/js/libs/modernizr-2.0.min.js'></script>
|
23
|
+
<script src='/js/libs/respond.min.js'></script>
|
24
|
+
<!-- Typekit -->
|
25
|
+
<script src='http://use.typekit.com/xxxxxxx.js' type='text/javascript'></script>
|
26
|
+
<script type='text/javascript'>
|
27
|
+
//<![CDATA[
|
28
|
+
try{Typekit.load();}catch(e){}
|
29
|
+
//]]>
|
30
|
+
</script>
|
31
|
+
</head>
|
32
|
+
<body class='survival-kit'>
|
33
|
+
<div id='page'>
|
34
|
+
<header>
|
35
|
+
<hgroup>
|
36
|
+
<h1>
|
37
|
+
<a href='/survivalkit/'>The Coding Designer's Survival Guide</a>
|
38
|
+
</h1>
|
39
|
+
<h2>HTML5 Elements</h2>
|
40
|
+
</hgroup>
|
41
|
+
Based on examples from <a href='http://developers.whatwg.org/'>developers.whatwg.org</a>
|
42
|
+
</header>
|
43
|
+
<nav>
|
44
|
+
<ul>
|
45
|
+
<li>
|
46
|
+
<a href='/survivalkit/elements-common'>Common Markup</a>
|
47
|
+
</li>
|
48
|
+
<li>
|
49
|
+
<a href='/survivalkit/elements-html5'>Common HTML5</a>
|
50
|
+
</li>
|
51
|
+
<li>
|
52
|
+
<a href='/survivalkit/elements-typography'>Typography</a>
|
53
|
+
</li>
|
54
|
+
<li>
|
55
|
+
<a href='/survivalkit/elements-ui-patterns-drupal'>Drupal UI Patterns</a>
|
56
|
+
</li>
|
57
|
+
<li>
|
58
|
+
<a href='/survivalkit/elements-ui-patterns'>UI Patterns</a>
|
59
|
+
</li>
|
60
|
+
<li>
|
61
|
+
<a href='/survivalkit/styletile'>Style Tile</a>
|
62
|
+
</li>
|
63
|
+
</ul>
|
64
|
+
</nav>
|
65
|
+
<div id='main' role='main'>
|
66
|
+
<section class='element-group' id='sections'>
|
67
|
+
<h1 class='section-title'>
|
68
|
+
<a href='http://developers.whatwg.org/sections.html'>Sections</a>
|
69
|
+
</h1>
|
70
|
+
<article class='element' id='section'>
|
71
|
+
<h2 class='element-title'>
|
72
|
+
<a href='http://developers.whatwg.org/sections.html#the-section-element'>Section</a>
|
73
|
+
</h2>
|
74
|
+
<p>
|
75
|
+
The
|
76
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-section-element'>section</a></code>
|
77
|
+
element
|
78
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
79
|
+
a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a heading.
|
80
|
+
</p>
|
81
|
+
<div class='markup'>
|
82
|
+
<section>
|
83
|
+
<h1>Red Delicious</h1>
|
84
|
+
<p>
|
85
|
+
These bright red apples are the most common found in many
|
86
|
+
supermarkets.
|
87
|
+
</p>
|
88
|
+
</section>
|
89
|
+
<section>
|
90
|
+
<h1>Granny Smith</h1>
|
91
|
+
<p>
|
92
|
+
These juicy, green apples make a great filling for
|
93
|
+
apple pies.
|
94
|
+
</p>
|
95
|
+
</section>
|
96
|
+
</div>
|
97
|
+
</article>
|
98
|
+
<article class='element' id='nav'>
|
99
|
+
<h2 class='element-title'>
|
100
|
+
<a href='http://developers.whatwg.org/sections.html#the-nav-element'>Nav</a>
|
101
|
+
</h2>
|
102
|
+
<p>
|
103
|
+
The
|
104
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-nav-element'>nav</a></code>
|
105
|
+
element
|
106
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
107
|
+
a section of a page that links to other pages or to parts within the page: a section with navigation links.
|
108
|
+
</p>
|
109
|
+
<p>
|
110
|
+
Not all groups of links on a page need to be in a
|
111
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-nav-element'>nav</a></code>
|
112
|
+
element — only sections that consist of major navigation blocks are appropriate for the
|
113
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-nav-element'>nav</a></code>
|
114
|
+
element. In particular, it is common for footers to have a short list of links to various pages of a site, such as the terms of service, the home page, and a copyright page. The
|
115
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-footer-element'>footer</a></code>
|
116
|
+
element alone is sufficient for such cases, without a
|
117
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-nav-element'>nav</a></code>
|
118
|
+
element.
|
119
|
+
</p>
|
120
|
+
<div class='markup'>
|
121
|
+
<nav>
|
122
|
+
<h1>Navigation</h1>
|
123
|
+
<ul>
|
124
|
+
<li>
|
125
|
+
<a href=''>Index of all articles</a>
|
126
|
+
</li>
|
127
|
+
<li>
|
128
|
+
<a href=''>Things sheeple need to wake up for today</a>
|
129
|
+
</li>
|
130
|
+
<li>
|
131
|
+
<a href=''>Sheeple we have managed to wake</a>
|
132
|
+
</li>
|
133
|
+
</ul>
|
134
|
+
</nav>
|
135
|
+
</div>
|
136
|
+
<p>A nav element doesn't have to contain a list, it can contain other kinds of content as well. In this navigation block, links are provided in prose:</p>
|
137
|
+
<div class='markup'>
|
138
|
+
<nav>
|
139
|
+
<h1>Navigation</h1>
|
140
|
+
<p>
|
141
|
+
You are on my home page. To the north lies
|
142
|
+
<a href='/blog'>
|
143
|
+
my
|
144
|
+
blog
|
145
|
+
</a>,
|
146
|
+
from whence the sounds of battle can be heard. To the east
|
147
|
+
you can see a large mountain, upon which many
|
148
|
+
<a href='/school'>school papers</a>
|
149
|
+
are littered. Far up thus mountain
|
150
|
+
you can spy a little figure who appears to be me, desperately
|
151
|
+
scribbling a
|
152
|
+
<a href='/school/thesis'>thesis</a>.
|
153
|
+
</p>
|
154
|
+
<p>
|
155
|
+
To the west are several exits. One fun-looking exit is labeled
|
156
|
+
<a href='http://games.example.com/'>"games"</a>.
|
157
|
+
Another more
|
158
|
+
boring-looking exit is labeled
|
159
|
+
<a href='http://isp.example.net/'>ISP™</a>.
|
160
|
+
</p>
|
161
|
+
<p>
|
162
|
+
To the south lies a dark and dank
|
163
|
+
<a href='/about'>
|
164
|
+
contacts
|
165
|
+
page
|
166
|
+
</a>.
|
167
|
+
Cobwebs cover its disused entrance, and at one point you
|
168
|
+
see a rat run quickly out of the page.
|
169
|
+
</p>
|
170
|
+
</nav>
|
171
|
+
</div>
|
172
|
+
</article>
|
173
|
+
<article class='element' id='article'>
|
174
|
+
<h2 class='element-title'>
|
175
|
+
<a href='http://developers.whatwg.org/sections.html#the-article-element'>Article</a>
|
176
|
+
</h2>
|
177
|
+
<p>
|
178
|
+
The
|
179
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-article-element'>article</a></code>
|
180
|
+
element
|
181
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
182
|
+
a self-contained composition in a document, page, application, or site and that is, in principle, independently distributable or reusable, e.g. in syndication. This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.
|
183
|
+
</p>
|
184
|
+
<div class='markup'>
|
185
|
+
<article>
|
186
|
+
<header>
|
187
|
+
<h1>The Very First Rule of Life</h1>
|
188
|
+
<p>
|
189
|
+
<time datetime='2009-10-09T14:28-08:00' pubdate=''></time>
|
190
|
+
</p>
|
191
|
+
</header>
|
192
|
+
<p>
|
193
|
+
If there's a microphone anywhere near you, assume it's hot and
|
194
|
+
sending whatever you're saying to the world. Seriously.
|
195
|
+
</p>
|
196
|
+
<p>…</p>
|
197
|
+
<footer>
|
198
|
+
<a href='?comments=1'>Show comments...</a>
|
199
|
+
</footer>
|
200
|
+
</article>
|
201
|
+
</div>
|
202
|
+
</article>
|
203
|
+
<article class='element' id='aside'>
|
204
|
+
<h2 class='element-title'>
|
205
|
+
<a href='http://developers.whatwg.org/sections.html#the-aside-element'>Aside</a>
|
206
|
+
</h2>
|
207
|
+
<p>
|
208
|
+
The
|
209
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-aside-element'>aside</a></code>
|
210
|
+
element
|
211
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
212
|
+
a section of a page that consists of content that is tangentially related to the content around the
|
213
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-aside-element'>aside</a></code>
|
214
|
+
element, and which could be considered separate from that content. Such sections are often represented as sidebars in printed typography.
|
215
|
+
</p>
|
216
|
+
<div class='markup'>
|
217
|
+
<aside>
|
218
|
+
<h1>Switzerland</h1>
|
219
|
+
<p>
|
220
|
+
Switzerland, a land-locked country in the middle of geographic
|
221
|
+
Europe, has not joined the geopolitical European Union, though it is
|
222
|
+
a signatory to a number of European treaties.
|
223
|
+
</p>
|
224
|
+
</aside>
|
225
|
+
</div>
|
226
|
+
</article>
|
227
|
+
<article class='element' id='all-headings'>
|
228
|
+
<h2 class='element-title'>
|
229
|
+
<a href='http://developers.whatwg.org/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'>The h1, h2, h3, h4, h5, and h6 elements</a>
|
230
|
+
</h2>
|
231
|
+
<p>
|
232
|
+
These elements
|
233
|
+
<a href='http://developers.whatwg.org/sections.html#represents' title='represents'>represent</a>
|
234
|
+
headings for their sections.
|
235
|
+
</p>
|
236
|
+
<p>
|
237
|
+
The semantics and meaning of these elements are defined in the section on
|
238
|
+
<a href='http://developers.whatwg.org/sections.html#headings-and-sections'>headings and sections</a>.
|
239
|
+
</p>
|
240
|
+
<p>These two snippets are equivalent in the outline:</p>
|
241
|
+
<div class='markup'>
|
242
|
+
<h1>Let's call it a draw(ing surface)</h1>
|
243
|
+
<h2>Diving in</h2>
|
244
|
+
<h2>Simple shapes</h2>
|
245
|
+
<h2>Canvas coordinates</h2>
|
246
|
+
<h3>Canvas coordinates diagram</h3>
|
247
|
+
<h2>Paths</h2>
|
248
|
+
</div>
|
249
|
+
<div class='markup'>
|
250
|
+
<h1>Let's call it a draw(ing surface)</h1>
|
251
|
+
<section>
|
252
|
+
<h1>Diving in</h1>
|
253
|
+
</section>
|
254
|
+
<section>
|
255
|
+
<h1>Simple shapes</h1>
|
256
|
+
</section>
|
257
|
+
<section>
|
258
|
+
<h1>Canvas coordinates</h1>
|
259
|
+
<section>
|
260
|
+
<h1>Canvas coordinates diagram</h1>
|
261
|
+
</section>
|
262
|
+
</section>
|
263
|
+
<section>
|
264
|
+
<h1>Paths</h1>
|
265
|
+
</section>
|
266
|
+
</div>
|
267
|
+
</article>
|
268
|
+
<article class='element' id='hgroup'>
|
269
|
+
<h2 class='element-title'>
|
270
|
+
<a href='http://developers.whatwg.org/sections.html#the-hgroup-element'>hgroup</a>
|
271
|
+
</h2>
|
272
|
+
<p>
|
273
|
+
The
|
274
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-hgroup-element'>hgroup</a></code>
|
275
|
+
element
|
276
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
277
|
+
the heading of a section. The element is used to group a set of
|
278
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'>h1</a></code>u{2013}
|
279
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'>h6</a></code>
|
280
|
+
elements when the heading has multiple levels, such as subheadings, alternative titles, or taglines.
|
281
|
+
</p>
|
282
|
+
<div class='markup'>
|
283
|
+
<hgroup>
|
284
|
+
<h1>Dr. Strangelove</h1>
|
285
|
+
<h2>Or: How I Learned to Stop Worrying and Love the Bomb</h2>
|
286
|
+
</hgroup>
|
287
|
+
</div>
|
288
|
+
</article>
|
289
|
+
<article class='element' id='header'>
|
290
|
+
<h2 class='element-title'>
|
291
|
+
<a href='http://developers.whatwg.org/sections.html#the-header-element'>Header</a>
|
292
|
+
</h2>
|
293
|
+
<p>
|
294
|
+
The
|
295
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-header-element'>header</a></code>
|
296
|
+
element
|
297
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
298
|
+
a group of introductory or navigational aids.
|
299
|
+
</p>
|
300
|
+
<p>
|
301
|
+
A
|
302
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-header-element'>header</a></code>
|
303
|
+
element is intended to usually contain the section's heading (an
|
304
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'>h1</a></code>–
|
305
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'>h6</a></code>
|
306
|
+
element or an
|
307
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-hgroup-element'>hgroup</a></code>
|
308
|
+
element), but this is not required. The
|
309
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-header-element'>header</a></code>
|
310
|
+
element can also be used to wrap a section's table of contents, a search form, or any relevant logos.
|
311
|
+
</p>
|
312
|
+
<div class='markup'>
|
313
|
+
<header>
|
314
|
+
<h1>Little Green Guys With Guns</h1>
|
315
|
+
<nav>
|
316
|
+
<ul>
|
317
|
+
<li>
|
318
|
+
<a href='/games'>Games</a>
|
319
|
+
<li>
|
320
|
+
<a href='/forum'>Forum</a>
|
321
|
+
<li>
|
322
|
+
<a href='/download'>Download</a>
|
323
|
+
</li>
|
324
|
+
</li>
|
325
|
+
</li>
|
326
|
+
</ul>
|
327
|
+
</nav>
|
328
|
+
<h2>Important News</h2>
|
329
|
+
<!-- this starts a second subsection -->
|
330
|
+
<!-- this is part of the subsection entitled "Important News" -->
|
331
|
+
<p>To play today's games you will need to update your client.</p>
|
332
|
+
<h2>Games</h2>
|
333
|
+
<!-- this starts a third subsection -->
|
334
|
+
</header>
|
335
|
+
</div>
|
336
|
+
</article>
|
337
|
+
<article class='element' id='footer'>
|
338
|
+
<h2 class='element-title'>
|
339
|
+
<a href='http://developers.whatwg.org/sections.html#the-footer-element'>Footer</a>
|
340
|
+
</h2>
|
341
|
+
<p>
|
342
|
+
The
|
343
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-footer-element'>footer</a></code>
|
344
|
+
element
|
345
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
346
|
+
a footer for its nearest ancestor
|
347
|
+
<a href='content-models.html#sectioning-content'>sectioning content</a>
|
348
|
+
or
|
349
|
+
<a href='http://developers.whatwg.org/sections.html#sectioning-root'>sectioning root</a>
|
350
|
+
element. A footer typically contains information about its section such as who wrote it, links to related documents, copyright data, and the like.
|
351
|
+
</p>
|
352
|
+
<p>Here is an example which shows the footer element being used both for a site-wide footer and for a section footer.</p>
|
353
|
+
<div class='markup'>
|
354
|
+
<article>
|
355
|
+
<h1>My Favorite Trains</h1>
|
356
|
+
<p>I love my trains. My favorite train of all time is a Köf.</p>
|
357
|
+
<p>
|
358
|
+
It is fun to see them pull some coal cars because they look so
|
359
|
+
dwarfed in comparison.
|
360
|
+
</p>
|
361
|
+
<footer>
|
362
|
+
<!-- footer for article -->
|
363
|
+
<P>
|
364
|
+
Published
|
365
|
+
<time datetime='2009-09-15T14:54-07:00' pubdate=''></time>
|
366
|
+
</P>
|
367
|
+
</footer>
|
368
|
+
</article>
|
369
|
+
<footer>
|
370
|
+
<!-- site wide footer -->
|
371
|
+
<nav>
|
372
|
+
<p>
|
373
|
+
<a href='/credits.html'>Credits</a>
|
374
|
+
—
|
375
|
+
<a href='/tos.html'>Terms of Service</a>
|
376
|
+
—
|
377
|
+
<a href='/index.html'>Blog Index</a>
|
378
|
+
</p>
|
379
|
+
</nav>
|
380
|
+
<p>Copyright © 2009 Gordon Freeman</p>
|
381
|
+
</footer>
|
382
|
+
</div>
|
383
|
+
</article>
|
384
|
+
<article class='element' id='address'>
|
385
|
+
<h2 class='element-title'>
|
386
|
+
<a href='http://developers.whatwg.org/sections.html#the-address-element'>Address</a>
|
387
|
+
</h2>
|
388
|
+
<p>
|
389
|
+
The
|
390
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-address-element'>address</a></code>
|
391
|
+
element
|
392
|
+
<a href='http://developers.whatwg.org/sections.html#represents'>represents</a>
|
393
|
+
the contact information for its nearest
|
394
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-article-element'>article</a></code>
|
395
|
+
or
|
396
|
+
<code><a href='http://developers.whatwg.org/sections.html#the-body-element-0'>body</a></code>
|
397
|
+
element ancestor. If that is
|
398
|
+
<a href='dom.html#the-body-element'>the body element</a>,
|
399
|
+
then the contact information applies to the document as a whole.
|
400
|
+
</p>
|
401
|
+
<div class='markup'>
|
402
|
+
<address><a href=''>Dave Raggett</a>,
|
403
|
+
<a href=''>Arnaud Le Hors</a>,
|
404
|
+
contact persons for the
|
405
|
+
<a href=''>W3C HTML Activity</a>
|
406
|
+
</address>
|
407
|
+
</div>
|
408
|
+
</article>
|
409
|
+
</section>
|
410
|
+
<section class='element-group' id='grouping'>
|
411
|
+
<h1 class='section-title'>
|
412
|
+
<a href='http://developers.whatwg.org/grouping-content.html'>Grouping</a>
|
413
|
+
</h1>
|
414
|
+
<article class='element' id='p'>
|
415
|
+
<h2 class='element-title'>
|
416
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-p-element'>p</a>
|
417
|
+
</h2>
|
418
|
+
<p>
|
419
|
+
The
|
420
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-p-element'>p</a></code>
|
421
|
+
element
|
422
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
423
|
+
a
|
424
|
+
<a href='content-models.html#paragraph'>paragraph</a>.
|
425
|
+
</p>
|
426
|
+
<div class='markup'>
|
427
|
+
<p>
|
428
|
+
The little kitten gently seated himself on a piece of
|
429
|
+
carpet. Later in his life, this would be referred to as the time the
|
430
|
+
cat sat on the mat.
|
431
|
+
</p>
|
432
|
+
</div>
|
433
|
+
<div class='markup'>
|
434
|
+
<fieldset>
|
435
|
+
<legend>Personal information</legend>
|
436
|
+
<p>
|
437
|
+
<label>
|
438
|
+
Name:
|
439
|
+
<input name='n' />
|
440
|
+
</label>
|
441
|
+
<label>
|
442
|
+
<input name='anon' type='checkbox'>Hide from other users</input>
|
443
|
+
</label>
|
444
|
+
</p>
|
445
|
+
<p>
|
446
|
+
<label>
|
447
|
+
Address:
|
448
|
+
<textarea name='a'></textarea>
|
449
|
+
</label>
|
450
|
+
</p>
|
451
|
+
</fieldset>
|
452
|
+
</div>
|
453
|
+
<div class='markup'>
|
454
|
+
<p>
|
455
|
+
There was once an example from Femley,
|
456
|
+
<br>
|
457
|
+
Whose markup was of dubious quality.
|
458
|
+
<br>
|
459
|
+
The validator complained,
|
460
|
+
<br>
|
461
|
+
So the author was pained,
|
462
|
+
<br>
|
463
|
+
To move the error from the markup to the rhyming.
|
464
|
+
</br>
|
465
|
+
</br>
|
466
|
+
</br>
|
467
|
+
</br>
|
468
|
+
</p>
|
469
|
+
</div>
|
470
|
+
</article>
|
471
|
+
<article class='element' id='hr'>
|
472
|
+
<h2 class='element-title'>
|
473
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-hr-element'>hr</a>
|
474
|
+
</h2>
|
475
|
+
<p>
|
476
|
+
The
|
477
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-hr-element'>hr</a></code>
|
478
|
+
element
|
479
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
480
|
+
a
|
481
|
+
<a href='content-models.html#paragraph'>paragraph</a>-level
|
482
|
+
thematic break, e.g. a scene change in a story, or a transition to another topic within a section of a reference book.
|
483
|
+
</p>
|
484
|
+
<div class='markup'>
|
485
|
+
<section>
|
486
|
+
<h1>Communication</h1>
|
487
|
+
<p>
|
488
|
+
There are various methods of communication. This section
|
489
|
+
covers a few of the important ones used by the project.
|
490
|
+
</p>
|
491
|
+
<hr>
|
492
|
+
<p>
|
493
|
+
Communication stones seem to come in pairs and have mysterious
|
494
|
+
properties:
|
495
|
+
</p>
|
496
|
+
<ul>
|
497
|
+
<li>
|
498
|
+
They can transfer thoughts in two directions once activated
|
499
|
+
if used alone.
|
500
|
+
</li>
|
501
|
+
<li>
|
502
|
+
If used with another device, they can transfer one's
|
503
|
+
consciousness to another body.
|
504
|
+
</li>
|
505
|
+
<li>
|
506
|
+
If both stones are used with another device, the
|
507
|
+
consciousnesses switch bodies.
|
508
|
+
</li>
|
509
|
+
</ul>
|
510
|
+
<hr>
|
511
|
+
<p>
|
512
|
+
Radios use the electromagnetic spectrum in the meter range and
|
513
|
+
longer.
|
514
|
+
</p>
|
515
|
+
<hr>
|
516
|
+
<p>
|
517
|
+
Signal flares use the electromagnetic spectrum in the
|
518
|
+
nanometer range.
|
519
|
+
</p>
|
520
|
+
</hr>
|
521
|
+
</hr>
|
522
|
+
</hr>
|
523
|
+
</section>
|
524
|
+
</div>
|
525
|
+
<div class='markup'>
|
526
|
+
<section>
|
527
|
+
<h1>Food</h1>
|
528
|
+
<p>All food at the project is rationed:</p>
|
529
|
+
<dl>
|
530
|
+
<dt>Potatoes</dt>
|
531
|
+
<dd>Two per day</dd>
|
532
|
+
<dt>Soup</dt>
|
533
|
+
<dd>One bowl per day</dd>
|
534
|
+
</dl>
|
535
|
+
<hr>
|
536
|
+
<p>Cooking is done by the chefs on a set rotation.</p>
|
537
|
+
</hr>
|
538
|
+
</section>
|
539
|
+
</div>
|
540
|
+
</article>
|
541
|
+
<article class='element' id='pre'>
|
542
|
+
<h2 class='element-title'>
|
543
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-pre-element'>pre</a>
|
544
|
+
</h2>
|
545
|
+
<p>
|
546
|
+
The
|
547
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-pre-element'>pre</a></code>
|
548
|
+
element
|
549
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
550
|
+
a block of preformatted text, in which structure is represented by typographic conventions rather than by elements.
|
551
|
+
</p>
|
552
|
+
<div class='markup'>
|
553
|
+
<p>
|
554
|
+
This is the
|
555
|
+
<code>Panel</code>
|
556
|
+
constructor:
|
557
|
+
</p>
|
558
|
+
<pre><code>function Panel(element, canClose, closeHandler) {
 this.element = element;
 this.canClose = canClose;
 this.closeHandler = function () { if (closeHandler) closeHandler() };
 } .markup</code></pre>
|
559
|
+
<pre><samp>
|
560
|
+
You are in an open field west of a big white house with a boarded
|
561
|
+
front door.
|
562
|
+
There is a small mailbox here.
|
563
|
+
>
|
564
|
+
</samp>
|
565
|
+
<kbd>open mailbox</kbd>
|
566
|
+
<samp>
|
567
|
+
Opening the mailbox reveals:
|
568
|
+
A leaflet.
|
569
|
+
>
|
570
|
+
</samp></pre>
|
571
|
+
</div>
|
572
|
+
<div class='markup'>
|
573
|
+
<pre> ,, ,, ,, 
 .M"""bgd db `7MM `7MMF' `YMM' db mm 
 ,MI "Y MM MM .M' MM 
 `MMb. `7MM `7MM `7Mb,od8 `7M' `MF'`7MM `7M' `MF',6"Yb. MM MM .d" `7MM mmMMmm 
 `YMMNq. MM MM MM' "' VA ,V MM VA ,V 8) MM MM MMMMM. MM MM 
 . `MM MM MM MM VA ,V MM VA ,V ,pm9MM MM MM VMA MM MM 
 Mb dM MM MM MM VVV MM VVV 8M MM MM MM `MM. MM MM 
 P"Ybmmd" `Mbod"YML..JMML. W .JMML. W `Moo9^Yo..JMML. .JMML. MMb..JMML. `Mbmo</pre>
|
574
|
+
</div>
|
575
|
+
</article>
|
576
|
+
<article class='element' id='blockquote'>
|
577
|
+
<h2 class='element-title'>
|
578
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-blockquote-element'>blockquote</a>
|
579
|
+
</h2>
|
580
|
+
<p>
|
581
|
+
The
|
582
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-blockquote-element'>blockquote</a></code>
|
583
|
+
element
|
584
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
585
|
+
a section that is quoted from another source.
|
586
|
+
</p>
|
587
|
+
<div class='markup'>
|
588
|
+
<p>
|
589
|
+
His next piece was the aptly named
|
590
|
+
<cite>Sonnet 130</cite>:
|
591
|
+
</p>
|
592
|
+
<blockquote cite='http://quotes.example.org/s/sonnet130.html'>
|
593
|
+
<p>
|
594
|
+
My mistress' eyes are nothing like the sun,
|
595
|
+
<br>
|
596
|
+
Coral is far more red, than her lips red...
|
597
|
+
</br>
|
598
|
+
</p>
|
599
|
+
</blockquote>
|
600
|
+
</div>
|
601
|
+
<div class='markup'>
|
602
|
+
<p>He began his list of "lessons" with the following:</p>
|
603
|
+
<blockquote>
|
604
|
+
One should never assume that his side of
|
605
|
+
the issue will be recognized, let alone that it will
|
606
|
+
be conceded to have merits.
|
607
|
+
</blockquote>
|
608
|
+
<p>He continued with a number of similar points, ending with:</p>
|
609
|
+
<blockquote>
|
610
|
+
Finally, one should be prepared for the threat
|
611
|
+
of breakdown in negotiations at any given moment and not
|
612
|
+
be cowed by the possiblity.
|
613
|
+
</blockquote>
|
614
|
+
<p>We shall now discuss these points</p>
|
615
|
+
</div>
|
616
|
+
</article>
|
617
|
+
<article class='element' id='ol'>
|
618
|
+
<h2 class='element-title'>
|
619
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-ol-element'>ol</a>
|
620
|
+
</h2>
|
621
|
+
<p>
|
622
|
+
The
|
623
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-ol-element'>ol</a></code>
|
624
|
+
element
|
625
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
626
|
+
a list of items, where the items have been intentionally ordered, such that changing the order would change the meaning of the document.
|
627
|
+
</p>
|
628
|
+
<div class='markup'>
|
629
|
+
<p>
|
630
|
+
I have lived in the following countries (given in the order of when
|
631
|
+
I first lived there):
|
632
|
+
</p>
|
633
|
+
<ol>
|
634
|
+
<li>
|
635
|
+
Switzerland
|
636
|
+
<li>
|
637
|
+
United Kingdom
|
638
|
+
<li>
|
639
|
+
United States
|
640
|
+
<li>
|
641
|
+
Norway
|
642
|
+
</li>
|
643
|
+
</li>
|
644
|
+
</li>
|
645
|
+
</li>
|
646
|
+
</ol>
|
647
|
+
</div>
|
648
|
+
</article>
|
649
|
+
<article class='element' id='ul'>
|
650
|
+
<h2 class='element-title'>
|
651
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-ul-element'>ul</a>
|
652
|
+
</h2>
|
653
|
+
<p>
|
654
|
+
The
|
655
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-ul-element'>ul</a></code>
|
656
|
+
element
|
657
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
658
|
+
a list of items, where the order of the items is not important — that is, where changing the order would not materially change the meaning of the document.
|
659
|
+
</p>
|
660
|
+
<div class='markup'>
|
661
|
+
<p>I have lived in the following countries:</p>
|
662
|
+
<ul>
|
663
|
+
<li>
|
664
|
+
Norway
|
665
|
+
<li>
|
666
|
+
Switzerland
|
667
|
+
<li>
|
668
|
+
United Kingdom
|
669
|
+
<li>
|
670
|
+
United States
|
671
|
+
</li>
|
672
|
+
</li>
|
673
|
+
</li>
|
674
|
+
</li>
|
675
|
+
</ul>
|
676
|
+
</div>
|
677
|
+
</article>
|
678
|
+
<article class='element' id='li'>
|
679
|
+
<h2 class='element-title'>
|
680
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-li-element'>li</a>
|
681
|
+
</h2>
|
682
|
+
<p>
|
683
|
+
The
|
684
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-li-element'>li</a></code>
|
685
|
+
element
|
686
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
687
|
+
a list item. If its parent element is an
|
688
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-ol-element'>ol</a></code>,
|
689
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-ul-element'>ul</a></code>,
|
690
|
+
or
|
691
|
+
<code><a href='interactive-elements.html#menus'>menu</a></code>
|
692
|
+
element, then the element is an item of the parent element's list, as defined for those elements. Otherwise, the list item has no defined list-related relationship to any other
|
693
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-li-element'>li</a></code>
|
694
|
+
element.
|
695
|
+
</p>
|
696
|
+
<div class='markup'>
|
697
|
+
<figure>
|
698
|
+
<figcaption>The top 10 movies of all time</figcaption>
|
699
|
+
<ol>
|
700
|
+
<li value='10'><cite>Josie and the Pussycats</cite>, 2001
|
701
|
+
</li>
|
702
|
+
<li value='9'><cite lang='sh'>Црна мачка, бели мачор</cite>, 1998
|
703
|
+
</li>
|
704
|
+
<li value='8'><cite>A Bug's Life</cite>, 1998
|
705
|
+
</li>
|
706
|
+
<li value='7'><cite>Toy Story</cite>, 1995
|
707
|
+
</li>
|
708
|
+
<li value='6'><cite>Monsters, Inc</cite>, 2001
|
709
|
+
</li>
|
710
|
+
<li value='5'><cite>Cars</cite>, 2006
|
711
|
+
</li>
|
712
|
+
<li value='4'><cite>Toy Story 2</cite>, 1999
|
713
|
+
</li>
|
714
|
+
<li value='3'><cite>Finding Nemo</cite>, 2003
|
715
|
+
</li>
|
716
|
+
<li value='2'><cite>The Incredibles</cite>, 2004
|
717
|
+
</li>
|
718
|
+
<li value='1'><cite>Ratatouille</cite>, 2007
|
719
|
+
</li>
|
720
|
+
</ol>
|
721
|
+
</figure>
|
722
|
+
</div>
|
723
|
+
<div class='markup'>
|
724
|
+
<figure>
|
725
|
+
<figcaption>The top 10 movies of all time</figcaption>
|
726
|
+
<ol reversed=''>
|
727
|
+
<li><cite>Josie and the Pussycats</cite>, 2001
|
728
|
+
</li>
|
729
|
+
<li><cite lang='sh'>Црна мачка, бели мачор</cite>, 1998
|
730
|
+
</li>
|
731
|
+
<li><cite>A Bug's Life</cite>, 1998
|
732
|
+
</li>
|
733
|
+
<li><cite>Toy Story</cite>, 1995
|
734
|
+
</li>
|
735
|
+
<li><cite>Monsters, Inc</cite>, 2001
|
736
|
+
</li>
|
737
|
+
<li><cite>Cars</cite>, 2006
|
738
|
+
</li>
|
739
|
+
<li><cite>Toy Story 2</cite>, 1999
|
740
|
+
</li>
|
741
|
+
<li><cite>Finding Nemo</cite>, 2003
|
742
|
+
</li>
|
743
|
+
<li><cite>The Incredibles</cite>, 2004
|
744
|
+
</li>
|
745
|
+
<li><cite>Ratatouille</cite>, 2007
|
746
|
+
</li>
|
747
|
+
</ol>
|
748
|
+
</figure>
|
749
|
+
</div>
|
750
|
+
</article>
|
751
|
+
<article class='element' id='dl'>
|
752
|
+
<hgroup>
|
753
|
+
<h2 class='element-title'>
|
754
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-dl-element'>dl</a>
|
755
|
+
</h2>
|
756
|
+
<h3 class='element-title'>
|
757
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-dt-element'>dt</a>
|
758
|
+
</h3>
|
759
|
+
<h3 class='element-title'>
|
760
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-dd-element'>dd</a>
|
761
|
+
</h3>
|
762
|
+
</hgroup>
|
763
|
+
<p>
|
764
|
+
The
|
765
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dl-element'>dl</a></code>
|
766
|
+
element
|
767
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
768
|
+
an association list consisting of zero or more name-value groups (a description list). Each group must consist of one or more names (
|
769
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dt-element'>dt</a></code>
|
770
|
+
elements) followed by one or more values (
|
771
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dd-element'>dd</a></code>
|
772
|
+
elements). Within a single
|
773
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dl-element'>dl</a></code>
|
774
|
+
element, there should not be more than one
|
775
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dt-element'>dt</a></code>
|
776
|
+
element for each name.
|
777
|
+
</p>
|
778
|
+
<p>
|
779
|
+
The
|
780
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dt-element'>dt</a></code>
|
781
|
+
element
|
782
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
783
|
+
the term, or name, part of a term-description group in a description list (
|
784
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dl-element'>dl</a></code>
|
785
|
+
element).
|
786
|
+
</p>
|
787
|
+
<p>
|
788
|
+
The
|
789
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dd-element'>dd</a></code>
|
790
|
+
element
|
791
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
792
|
+
the description, definition, or value, part of a term-description group in a description list (
|
793
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-dl-element'>dl</a></code>
|
794
|
+
element).
|
795
|
+
</p>
|
796
|
+
<div class='markup'>
|
797
|
+
<dl>
|
798
|
+
<dt>
|
799
|
+
Authors
|
800
|
+
<dd>
|
801
|
+
John
|
802
|
+
<dd>
|
803
|
+
Luke
|
804
|
+
<dt>
|
805
|
+
Editor
|
806
|
+
<dd>
|
807
|
+
Frank
|
808
|
+
</dd>
|
809
|
+
</dt>
|
810
|
+
</dd>
|
811
|
+
</dd>
|
812
|
+
</dt>
|
813
|
+
</dl>
|
814
|
+
</div>
|
815
|
+
<div class='markup'>
|
816
|
+
<dl>
|
817
|
+
<dt lang='en-US'>
|
818
|
+
<dfn>color</dfn>
|
819
|
+
</dt>
|
820
|
+
<dt lang='en-GB'>
|
821
|
+
<dfn>colour</dfn>
|
822
|
+
</dt>
|
823
|
+
<dd>
|
824
|
+
A sensation which (in humans) derives from the ability of
|
825
|
+
the fine structure of the eye to distinguish three differently
|
826
|
+
filtered analyses of a view.
|
827
|
+
</dd>
|
828
|
+
</dl>
|
829
|
+
</div>
|
830
|
+
</article>
|
831
|
+
<article class='element' id='figure'>
|
832
|
+
<hgroup>
|
833
|
+
<h2 class='element-title'>
|
834
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-figure-element'>figure</a>
|
835
|
+
</h2>
|
836
|
+
<h3 class='element-title'>
|
837
|
+
<a href='http://developers.whatwg.org/grouping-content.html#the-figcaption-element'>figcaption</a>
|
838
|
+
</h3>
|
839
|
+
</hgroup>
|
840
|
+
<p>
|
841
|
+
The
|
842
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-figure-element'>figure</a></code>
|
843
|
+
element
|
844
|
+
<a href='http://developers.whatwg.org/grouping-content.html#represents'>represents</a>
|
845
|
+
some
|
846
|
+
<a href='content-models.html#flow-content'>flow content</a>,
|
847
|
+
optionally with a caption, that is self-contained and is typically referenced as a single unit from the main flow of the document.
|
848
|
+
</p>
|
849
|
+
<p>The element can thus be used to annotate illustrations, diagrams, photos, code listings, etc, that are referred to from the main content of the document, but that could, without affecting the flow of the document, be moved away from that primary content, e.g. to the side of the page, to dedicated pages, or to an appendix.</p>
|
850
|
+
<p>
|
851
|
+
The
|
852
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-figcaption-element'>figcaption</a></code>
|
853
|
+
element child of the element, if any, represents the caption of the
|
854
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-figure-element'>figure</a></code>
|
855
|
+
element's contents. If there is no child
|
856
|
+
<code><a href='http://developers.whatwg.org/grouping-content.html#the-figcaption-element'>figcaption</a></code>
|
857
|
+
element, then there is no caption.
|
858
|
+
</p>
|
859
|
+
<div class='markup'>
|
860
|
+
<p>
|
861
|
+
In
|
862
|
+
<a href='http://developers.whatwg.org/grouping-content.html#l4'>listing 4</a>
|
863
|
+
we see the primary core interface
|
864
|
+
API declaration.
|
865
|
+
</p>
|
866
|
+
<figure id='l4'>
|
867
|
+
<figcaption>Listing 4. The primary core interface API declaration.</figcaption>
|
868
|
+
<pre><code>interface PrimaryCore {
 boolean verifyDataLine();
 void sendData(in sequence<byte> data);
 void initSelfDestruct();
 } %p The API is designed to use UTF-8.</code></pre>
|
869
|
+
</figure>
|
870
|
+
</div>
|
871
|
+
<div class='markup'>
|
872
|
+
<figure>
|
873
|
+
<img alt='Bubbles, sitting in his office chair, works on his latest project intently.' src='http://dummyimage.com/100x100/ccc/fff' />
|
874
|
+
<figcaption>Bubbles at work</figcaption>
|
875
|
+
</figure>
|
876
|
+
</div>
|
877
|
+
</article>
|
878
|
+
</section>
|
879
|
+
<section class='element-group' id='text'>
|
880
|
+
<h1 class='section-title'>Text-level semantics</h1>
|
881
|
+
<article class='element' id='a'>
|
882
|
+
<h2 class='element-title'>
|
883
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-a-element'>a</a>
|
884
|
+
</h2>
|
885
|
+
<div class='markup'>
|
886
|
+
<nav>
|
887
|
+
<ul>
|
888
|
+
<li>
|
889
|
+
<a href='/'>Home</a>
|
890
|
+
</li>
|
891
|
+
<li>
|
892
|
+
<a href='/news'>News</a>
|
893
|
+
</li>
|
894
|
+
<li>
|
895
|
+
<a>Examples</a>
|
896
|
+
</li>
|
897
|
+
<li>
|
898
|
+
<a href='/legal'>Legal</a>
|
899
|
+
</li>
|
900
|
+
</ul>
|
901
|
+
</nav>
|
902
|
+
</div>
|
903
|
+
<p>
|
904
|
+
The
|
905
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-a-element'>a</a></code>
|
906
|
+
element may be wrapped around entire
|
907
|
+
paragraphs, lists, tables, and so forth, even entire sections, so
|
908
|
+
long as there is no interactive content within (e.g. buttons or
|
909
|
+
other links). This example shows how this can be used to make an
|
910
|
+
entire advertising block into a link:
|
911
|
+
</p>
|
912
|
+
<div class='markup'>
|
913
|
+
<aside class='advertising'>
|
914
|
+
<h1>Advertising</h1>
|
915
|
+
<a href='http://ad.example.com/?adid=1929&pubid=1422'>
|
916
|
+
<section>
|
917
|
+
<h1>Mellblomatic 9000!</h1>
|
918
|
+
<p>Turn all your widgets into mellbloms!</p>
|
919
|
+
<p>Only $9.99 plus shipping and handling.</p>
|
920
|
+
</section>
|
921
|
+
</a>
|
922
|
+
<a href='http://ad.example.com/?adid=375&pubid=1422'>
|
923
|
+
<section>
|
924
|
+
<h1>The Mellblom Browser</h1>
|
925
|
+
<p>Web browsing at the speed of light.</p>
|
926
|
+
<p>No other browser goes faster!</p>
|
927
|
+
</section>
|
928
|
+
</a>
|
929
|
+
</aside>
|
930
|
+
</div>
|
931
|
+
</article>
|
932
|
+
<article class='element' id='em'>
|
933
|
+
<h2 class='element-title'>
|
934
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-em-element'>em</a>
|
935
|
+
</h2>
|
936
|
+
<p>
|
937
|
+
The
|
938
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-em-element'>em</a></code>
|
939
|
+
element
|
940
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
941
|
+
stress
|
942
|
+
emphasis of its contents.
|
943
|
+
</p>
|
944
|
+
<div class='markup'>
|
945
|
+
<p>
|
946
|
+
<em>Cats</em>
|
947
|
+
are cute animals.
|
948
|
+
</p>
|
949
|
+
</div>
|
950
|
+
</article>
|
951
|
+
<article class='element' id='strong'>
|
952
|
+
<h2 class='element-title'>
|
953
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-strong-element'>strong</a>
|
954
|
+
</h2>
|
955
|
+
<p>
|
956
|
+
The
|
957
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-strong-element'>strong</a></code>
|
958
|
+
element
|
959
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
960
|
+
strong
|
961
|
+
importance for its contents.
|
962
|
+
</p>
|
963
|
+
<div class='markup'>
|
964
|
+
<p>
|
965
|
+
<strong>Warning.</strong>
|
966
|
+
This dungeon is dangerous.
|
967
|
+
<strong>Avoid the ducks.</strong>
|
968
|
+
Take any gold you find.
|
969
|
+
<strong><strong>Do not take any of the diamonds</strong>,
|
970
|
+
they are explosive and
|
971
|
+
<strong>
|
972
|
+
will destroy anything within
|
973
|
+
ten meters.
|
974
|
+
</strong>
|
975
|
+
</strong>
|
976
|
+
You have been warned.
|
977
|
+
</p>
|
978
|
+
</div>
|
979
|
+
</article>
|
980
|
+
<article class='element' id='small'>
|
981
|
+
<h2 class='element-title'>
|
982
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-small-element'>small</a>
|
983
|
+
</h2>
|
984
|
+
<p>
|
985
|
+
The
|
986
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-small-element'>small</a></code>
|
987
|
+
element
|
988
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
989
|
+
side
|
990
|
+
comments such as small print.
|
991
|
+
</p>
|
992
|
+
<div class='markup'>
|
993
|
+
<dl>
|
994
|
+
<dt>
|
995
|
+
Single room
|
996
|
+
<dd>
|
997
|
+
199 €
|
998
|
+
<small>breakfast included, VAT not included</small>
|
999
|
+
<dt>
|
1000
|
+
Double room
|
1001
|
+
<dd>
|
1002
|
+
239 €
|
1003
|
+
<small>breakfast included, VAT not included</small>
|
1004
|
+
</dd>
|
1005
|
+
</dt>
|
1006
|
+
</dd>
|
1007
|
+
</dt>
|
1008
|
+
</dl>
|
1009
|
+
</div>
|
1010
|
+
<div class='markup'>
|
1011
|
+
<p>
|
1012
|
+
Example Corp today announced record profits for the
|
1013
|
+
second quarter
|
1014
|
+
<small>
|
1015
|
+
(Full Disclosure: Foo News is a subsidiary of
|
1016
|
+
Example Corp)
|
1017
|
+
</small>,
|
1018
|
+
leading to speculation about a third quarter
|
1019
|
+
merger with Demo Group.
|
1020
|
+
</p>
|
1021
|
+
</div>
|
1022
|
+
</article>
|
1023
|
+
<article class='element' id='s'>
|
1024
|
+
<h2 class='element-title'>
|
1025
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-s-element'>s</a>
|
1026
|
+
</h2>
|
1027
|
+
<p>
|
1028
|
+
The
|
1029
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-s-element'>s</a></code>
|
1030
|
+
element
|
1031
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1032
|
+
contents that
|
1033
|
+
are no longer accurate or no longer relevant.
|
1034
|
+
</p>
|
1035
|
+
<div class='markup'>
|
1036
|
+
<p>Buy our Iced Tea and Lemonade!</p>
|
1037
|
+
<p>
|
1038
|
+
<s>Recommended retail price: $3.99 per bottle</s>
|
1039
|
+
</p>
|
1040
|
+
<p>
|
1041
|
+
<strong>Now selling for just $2.99 a bottle!</strong>
|
1042
|
+
</p>
|
1043
|
+
</div>
|
1044
|
+
</article>
|
1045
|
+
<article class='element' id='cite'>
|
1046
|
+
<h2 class='element-title'>
|
1047
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-cite-element'>cite</a>
|
1048
|
+
</h2>
|
1049
|
+
<p>
|
1050
|
+
The
|
1051
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-cite-element'>cite</a></code>
|
1052
|
+
element
|
1053
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1054
|
+
the title
|
1055
|
+
of a work (e.g.
|
1056
|
+
a book,
|
1057
|
+
a paper,
|
1058
|
+
an essay,
|
1059
|
+
a poem,
|
1060
|
+
a score,
|
1061
|
+
a song,
|
1062
|
+
a script,
|
1063
|
+
a film,
|
1064
|
+
a TV show,
|
1065
|
+
a game,
|
1066
|
+
a sculpture,
|
1067
|
+
a painting,
|
1068
|
+
a theatre production,
|
1069
|
+
a play,
|
1070
|
+
an opera,
|
1071
|
+
a musical,
|
1072
|
+
an exhibition,
|
1073
|
+
a legal case report,
|
1074
|
+
etc). This can be a work that is being quoted or
|
1075
|
+
referenced in detail (i.e. a citation), or it can just be a work
|
1076
|
+
that is mentioned in passing.
|
1077
|
+
</p>
|
1078
|
+
<div class='markup'>
|
1079
|
+
<p>
|
1080
|
+
My favorite book is
|
1081
|
+
<cite>The Reality Dysfunction</cite>
|
1082
|
+
by
|
1083
|
+
Peter F. Hamilton. My favorite comic is
|
1084
|
+
<cite>
|
1085
|
+
Pearls Before
|
1086
|
+
Swine
|
1087
|
+
</cite>
|
1088
|
+
by Stephan Pastis. My favorite track is
|
1089
|
+
<cite>
|
1090
|
+
Jive
|
1091
|
+
Samba
|
1092
|
+
</cite>
|
1093
|
+
by the Cannonball Adderley Sextet.
|
1094
|
+
</p>
|
1095
|
+
</div>
|
1096
|
+
</article>
|
1097
|
+
<article class='element' id='q'>
|
1098
|
+
<h2 class='element-title'>
|
1099
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-q-element'>q</a>
|
1100
|
+
</h2>
|
1101
|
+
<p>
|
1102
|
+
The
|
1103
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-q-element'>q</a></code>
|
1104
|
+
element
|
1105
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1106
|
+
some
|
1107
|
+
<a href='content-models.html#phrasing-content' title='phrasing content'>phrasing content</a>
|
1108
|
+
quoted from another
|
1109
|
+
source.
|
1110
|
+
</p>
|
1111
|
+
<div class='markup'>
|
1112
|
+
<p>
|
1113
|
+
The man said
|
1114
|
+
<q>
|
1115
|
+
Things that are impossible just take
|
1116
|
+
longer
|
1117
|
+
</q>.
|
1118
|
+
I disagreed with him.
|
1119
|
+
</p>
|
1120
|
+
</div>
|
1121
|
+
<div class='markup'>
|
1122
|
+
<p>
|
1123
|
+
The W3C page
|
1124
|
+
<cite>About W3C</cite>
|
1125
|
+
says the W3C's
|
1126
|
+
mission is
|
1127
|
+
<q cite='http://www.w3.org/Consortium/'>
|
1128
|
+
To lead the
|
1129
|
+
World Wide Web to its full potential by developing protocols and
|
1130
|
+
guidelines that ensure long-term growth for the Web
|
1131
|
+
</q>.
|
1132
|
+
I
|
1133
|
+
disagree with this mission.
|
1134
|
+
</p>
|
1135
|
+
</div>
|
1136
|
+
</article>
|
1137
|
+
<article class='element' id='dfn'>
|
1138
|
+
<h2 class='element-title'>
|
1139
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-dfn-element'>dfn</a>
|
1140
|
+
</h2>
|
1141
|
+
<p>
|
1142
|
+
The
|
1143
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-dfn-element'>dfn</a></code>
|
1144
|
+
element
|
1145
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1146
|
+
the defining
|
1147
|
+
instance of a term. The
|
1148
|
+
<a href='content-models.html#paragraph' title='paragraph'>paragraph</a>,
|
1149
|
+
<a href='grouping-content.html#the-dl-element' title='dl'>description list group</a>,
|
1150
|
+
or
|
1151
|
+
<a href='content-models.html#sectioning-content' title='sectioning content'>section</a>
|
1152
|
+
that is the nearest
|
1153
|
+
ancestor of the
|
1154
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-dfn-element'>dfn</a></code>
|
1155
|
+
element must also contain the
|
1156
|
+
definition(s) for the
|
1157
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#defining-term' title='defining term'>term</a>
|
1158
|
+
given
|
1159
|
+
by the
|
1160
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-dfn-element'>dfn</a></code>
|
1161
|
+
element.
|
1162
|
+
</p>
|
1163
|
+
<div class='markup'>
|
1164
|
+
<p>
|
1165
|
+
The
|
1166
|
+
<dfn>
|
1167
|
+
<abbr title='Garage Door Opener'>GDO</abbr>
|
1168
|
+
</dfn>
|
1169
|
+
is a device that allows off-world teams to open the iris.
|
1170
|
+
</p>
|
1171
|
+
<!-- ... later in the document: -->
|
1172
|
+
<p>
|
1173
|
+
Teal'c activated his
|
1174
|
+
<abbr title='Garage Door Opener'>GDO</abbr>
|
1175
|
+
and so Hammond ordered the iris to be opened.
|
1176
|
+
</p>
|
1177
|
+
</div>
|
1178
|
+
<div class='markup'>
|
1179
|
+
<p>
|
1180
|
+
The
|
1181
|
+
<dfn id='gdo'>
|
1182
|
+
<abbr title='Garage Door Opener'>GDO</abbr>
|
1183
|
+
</dfn>
|
1184
|
+
is a device that allows off-world teams to open the iris.
|
1185
|
+
</p>
|
1186
|
+
<!-- ... later in the document: -->
|
1187
|
+
<p>
|
1188
|
+
Teal'c activated his
|
1189
|
+
<a href='#gdo'>
|
1190
|
+
<abbr title='Garage Door Opener'>GDO</abbr>
|
1191
|
+
</a>
|
1192
|
+
and so Hammond ordered the iris to be opened.
|
1193
|
+
</p>
|
1194
|
+
</div>
|
1195
|
+
</article>
|
1196
|
+
<article class='element' id='abbr'>
|
1197
|
+
<h2 class='element-title'>
|
1198
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-abbr-element'>abbr</a>
|
1199
|
+
</h2>
|
1200
|
+
<p>
|
1201
|
+
The
|
1202
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-abbr-element'>abbr</a></code>
|
1203
|
+
element
|
1204
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1205
|
+
an
|
1206
|
+
abbreviation or acronym, optionally with its expansion. The
|
1207
|
+
<dfn id='attr-abbr-title' title='attr-abbr-title'>
|
1208
|
+
<code>title</code>
|
1209
|
+
</dfn>
|
1210
|
+
attribute may be
|
1211
|
+
used to provide an expansion of the abbreviation. The attribute, if
|
1212
|
+
specified, must contain an expansion of the abbreviation, and
|
1213
|
+
nothing else.
|
1214
|
+
</p>
|
1215
|
+
<div class='markup'>
|
1216
|
+
<p>
|
1217
|
+
The
|
1218
|
+
<dfn id='whatwg'>
|
1219
|
+
<abbr title='Web Hypertext Application Technology Working Group'>WHATWG</abbr>
|
1220
|
+
</dfn>
|
1221
|
+
is a loose unofficial collaboration of Web browser manufacturers and
|
1222
|
+
interested parties who wish to develop new technologies designed to
|
1223
|
+
allow authors to write and deploy Applications over the World Wide
|
1224
|
+
Web.
|
1225
|
+
</p>
|
1226
|
+
</div>
|
1227
|
+
</article>
|
1228
|
+
<article class='element' id='time'>
|
1229
|
+
<h2 class='element-title'>
|
1230
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-time-element'>time</a>
|
1231
|
+
</h2>
|
1232
|
+
<p>
|
1233
|
+
The
|
1234
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-time-element'>time</a></code>
|
1235
|
+
element
|
1236
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1237
|
+
either a
|
1238
|
+
time on a 24 hour clock, or a precise date in the proleptic
|
1239
|
+
Gregorian calendar, optionally with a time and a time-zone
|
1240
|
+
offset.
|
1241
|
+
<a href='references.html#refsGREGORIAN'>[GREGORIAN]</a>
|
1242
|
+
</p>
|
1243
|
+
<div class='markup'>
|
1244
|
+
<div class='vevent'>
|
1245
|
+
<a class='url' href='http://www.web2con.com/'>http://www.web2con.com/</a>
|
1246
|
+
<span class='summary'>Web 2.0 Conference</span>:
|
1247
|
+
<time class='dtstart' datetime='2007-10-05'>October 5</time>
|
1248
|
+
-
|
1249
|
+
<time class='dtend' datetime='2007-10-20'>19</time>,
|
1250
|
+
at the
|
1251
|
+
<span class='location'>Argent Hotel, San Francisco, CA</span>
|
1252
|
+
</div>
|
1253
|
+
</div>
|
1254
|
+
<div class='markup'>
|
1255
|
+
<p>
|
1256
|
+
I usually have a snack at
|
1257
|
+
<time>16:00</time>.
|
1258
|
+
</p>
|
1259
|
+
<p>I've liked model trains since at least 1983.</p>
|
1260
|
+
</div>
|
1261
|
+
</article>
|
1262
|
+
<article class='element' id='code'>
|
1263
|
+
<h2 class='element-title'>
|
1264
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-code-element'>code</a>
|
1265
|
+
</h2>
|
1266
|
+
<p>
|
1267
|
+
The
|
1268
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-code-element'>code</a></code>
|
1269
|
+
element
|
1270
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1271
|
+
a fragment
|
1272
|
+
of computer code. This could be an XML element name, a filename, a
|
1273
|
+
computer program, or any other string that a computer would
|
1274
|
+
recognize.
|
1275
|
+
</p>
|
1276
|
+
<div class='markup'>
|
1277
|
+
<p>
|
1278
|
+
When you call the
|
1279
|
+
<code>activate()</code>
|
1280
|
+
method on the
|
1281
|
+
<code>robotSnowman</code>
|
1282
|
+
object, the eyes glow.
|
1283
|
+
</p>
|
1284
|
+
</div>
|
1285
|
+
<div class='markup'>
|
1286
|
+
<pre><code class='language-pascal'>var i: Integer;
begin
 i := 1;
end. %article#var.element</code></pre>
|
1287
|
+
</div>
|
1288
|
+
<h2 class='element-title'>
|
1289
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-var-element'>var</a>
|
1290
|
+
</h2>
|
1291
|
+
<p>
|
1292
|
+
The
|
1293
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-var-element'>var</a></code>
|
1294
|
+
element
|
1295
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1296
|
+
a
|
1297
|
+
variable. This could be an actual variable in a mathematical
|
1298
|
+
expression or programming context, or it could just be a term used
|
1299
|
+
as a placeholder in prose.
|
1300
|
+
</p>
|
1301
|
+
<div class='markup'>
|
1302
|
+
<p>
|
1303
|
+
If there are
|
1304
|
+
<var>n</var>
|
1305
|
+
pipes leading to the ice
|
1306
|
+
cream factory then I expect at
|
1307
|
+
<em>least</em>
|
1308
|
+
<var>n</var>
|
1309
|
+
flavors of ice cream to be available for purchase!
|
1310
|
+
</p>
|
1311
|
+
</div>
|
1312
|
+
<div class='markup'>
|
1313
|
+
<figure>
|
1314
|
+
<math>
|
1315
|
+
<mi>a</mi>
|
1316
|
+
<mo>=</mo>
|
1317
|
+
<msqrt>
|
1318
|
+
<msup>
|
1319
|
+
<mi>b</mi>
|
1320
|
+
<mn>2</mn>
|
1321
|
+
</msup>
|
1322
|
+
<mi>+</mi>
|
1323
|
+
<msup>
|
1324
|
+
<mi>c</mi>
|
1325
|
+
<mn>2</mn>
|
1326
|
+
</msup>
|
1327
|
+
</msqrt>
|
1328
|
+
</math>
|
1329
|
+
<figcaption>
|
1330
|
+
Using Pythagoras' theorem to solve for the hypotenuse
|
1331
|
+
<var>a</var>
|
1332
|
+
of
|
1333
|
+
a triangle with sides
|
1334
|
+
<var>b</var>
|
1335
|
+
and
|
1336
|
+
<var>c</var>
|
1337
|
+
</figcaption>
|
1338
|
+
</figure>
|
1339
|
+
</div>
|
1340
|
+
</article>
|
1341
|
+
<article class='element' id='samp'>
|
1342
|
+
<h2 class='element-title'>
|
1343
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-samp-element'>samp</a>
|
1344
|
+
</h2>
|
1345
|
+
<p>
|
1346
|
+
The
|
1347
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-samp-element'>samp</a></code>
|
1348
|
+
element
|
1349
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1350
|
+
(sample)
|
1351
|
+
output from a program or computing system.
|
1352
|
+
</p>
|
1353
|
+
<div class='markup'>
|
1354
|
+
<p>
|
1355
|
+
The computer said
|
1356
|
+
<samp>
|
1357
|
+
Too much cheese in tray
|
1358
|
+
two
|
1359
|
+
</samp>
|
1360
|
+
but I didn't know what that meant.
|
1361
|
+
</p>
|
1362
|
+
</div>
|
1363
|
+
<div class='markup'>
|
1364
|
+
<pre><samp>
|
1365
|
+
<span class='prompt'>jdoe@mowmow:~$</span>
|
1366
|
+
<kbd>ssh demo.example.com</kbd>
|
1367
|
+
Last login: Tue Apr 12 09:10:17 2005 from mowmow.example.com on pts/1
|
1368
|
+
Linux demo 2.6.10-grsec+gg3+e+fhs6b+nfs+gr0501+++p3+c4a+gr2b-reslog-v6.189 #1 SMP Tue Feb 1 11:22:36 PST 2005 i686 unknown
|
1369
|
+
<span class='prompt'>jdoe@demo:~$</span>
|
1370
|
+
<span class='cursor'>_</span>
|
1371
|
+
</samp></pre>
|
1372
|
+
</div>
|
1373
|
+
</article>
|
1374
|
+
<article class='element' id='kbd'>
|
1375
|
+
<h2 class='element-title'>
|
1376
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-kbd-element'>kbd</a>
|
1377
|
+
</h2>
|
1378
|
+
<p>
|
1379
|
+
The
|
1380
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-kbd-element'>kbd</a></code>
|
1381
|
+
element
|
1382
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1383
|
+
user input
|
1384
|
+
(typically keyboard input, although it may also be used to represent
|
1385
|
+
other input, such as voice commands).
|
1386
|
+
</p>
|
1387
|
+
<div class='markup'>
|
1388
|
+
<p>
|
1389
|
+
To make George eat an apple, press
|
1390
|
+
<kbd><kbd>Shift</kbd>+
|
1391
|
+
<kbd>F3</kbd>
|
1392
|
+
</kbd>
|
1393
|
+
</p>
|
1394
|
+
</div>
|
1395
|
+
</article>
|
1396
|
+
<article class='element' id='sub-sup'>
|
1397
|
+
<h2 class='element-title'>
|
1398
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-sub-and-sup-elements'>sub and sup</a>
|
1399
|
+
</h2>
|
1400
|
+
<p>
|
1401
|
+
The
|
1402
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-sub-and-sup-elements'>sup</a></code>
|
1403
|
+
element
|
1404
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1405
|
+
a
|
1406
|
+
superscript and the
|
1407
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-sub-and-sup-elements'>sub</a></code>
|
1408
|
+
element
|
1409
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1410
|
+
a subscript.
|
1411
|
+
</p>
|
1412
|
+
<div class='markup'>
|
1413
|
+
<p>
|
1414
|
+
The most beautiful women are
|
1415
|
+
<span lang='fr'>
|
1416
|
+
<abbr>
|
1417
|
+
M
|
1418
|
+
<sup>lle</sup>
|
1419
|
+
</abbr>
|
1420
|
+
Gwendoline
|
1421
|
+
</span>
|
1422
|
+
and
|
1423
|
+
<span lang='fr'>
|
1424
|
+
<abbr>
|
1425
|
+
M
|
1426
|
+
<sup>me</sup>
|
1427
|
+
</abbr>
|
1428
|
+
Denise
|
1429
|
+
</span>.
|
1430
|
+
</p>
|
1431
|
+
</div>
|
1432
|
+
<div class='markup'>
|
1433
|
+
<p>
|
1434
|
+
The coordinate of the
|
1435
|
+
<var>i</var>th
|
1436
|
+
point is
|
1437
|
+
(<var>
|
1438
|
+
x
|
1439
|
+
<sub>
|
1440
|
+
<var>i</var>
|
1441
|
+
</sub>
|
1442
|
+
</var>,
|
1443
|
+
<var>
|
1444
|
+
y
|
1445
|
+
<sub>
|
1446
|
+
<var>i</var>
|
1447
|
+
</sub>
|
1448
|
+
</var>).
|
1449
|
+
For example, the 10th point has coordinate
|
1450
|
+
(<var>
|
1451
|
+
x
|
1452
|
+
<sub>10</sub>
|
1453
|
+
</var>,
|
1454
|
+
<var>
|
1455
|
+
y
|
1456
|
+
<sub>10</sub>
|
1457
|
+
</var>).
|
1458
|
+
</p>
|
1459
|
+
</div>
|
1460
|
+
</article>
|
1461
|
+
<article class='element' id='i'>
|
1462
|
+
<h2 class='element-title'>
|
1463
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-i-element'>i</a>
|
1464
|
+
</h2>
|
1465
|
+
<p>
|
1466
|
+
The
|
1467
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-i-element'>i</a></code>
|
1468
|
+
element
|
1469
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1470
|
+
a span of text
|
1471
|
+
in an alternate voice or mood, or otherwise offset from the normal
|
1472
|
+
prose, such as a taxonomic designation, a technical term, an
|
1473
|
+
idiomatic phrase from another language, a thought, a ship name, or
|
1474
|
+
some other prose whose typical typographic presentation is
|
1475
|
+
italicized.
|
1476
|
+
</p>
|
1477
|
+
<div class='markup'>
|
1478
|
+
<p>
|
1479
|
+
The
|
1480
|
+
<i class='taxonomy'>Felis silvestris catus</i>
|
1481
|
+
is cute.
|
1482
|
+
</p>
|
1483
|
+
<p>
|
1484
|
+
The term
|
1485
|
+
<i>prose content</i>
|
1486
|
+
is defined above.
|
1487
|
+
</p>
|
1488
|
+
<p>
|
1489
|
+
There is a certain
|
1490
|
+
<i lang='fr'>je ne sais quoi</i>
|
1491
|
+
in the air.
|
1492
|
+
</p>
|
1493
|
+
</div>
|
1494
|
+
</article>
|
1495
|
+
<article class='element' id='b'>
|
1496
|
+
<h2 class='element-title'>
|
1497
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-b-element'>b</a>
|
1498
|
+
</h2>
|
1499
|
+
<p>
|
1500
|
+
The
|
1501
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-b-element'>b</a></code>
|
1502
|
+
element
|
1503
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1504
|
+
a span of text
|
1505
|
+
to be stylistically offset from the normal prose without conveying
|
1506
|
+
any extra importance, such as key words in a document abstract,
|
1507
|
+
product names in a review, or other spans of text whose typical
|
1508
|
+
typographic presentation is boldened.
|
1509
|
+
</p>
|
1510
|
+
<div class='markup'>
|
1511
|
+
<p>
|
1512
|
+
The
|
1513
|
+
<b>frobonitor</b>
|
1514
|
+
and
|
1515
|
+
<b>barbinator</b>
|
1516
|
+
components are fried.
|
1517
|
+
</p>
|
1518
|
+
</div>
|
1519
|
+
</article>
|
1520
|
+
<article class='element' id='mark'>
|
1521
|
+
<h2 class='element-title'>
|
1522
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-mark-element'>mark</a>
|
1523
|
+
</h2>
|
1524
|
+
<p>
|
1525
|
+
The
|
1526
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-mark-element'>mark</a></code>
|
1527
|
+
element
|
1528
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1529
|
+
a run of
|
1530
|
+
text in one document marked or highlighted for reference purposes,
|
1531
|
+
due to its relevance in another context. When used in a quotation or
|
1532
|
+
other block of text referred to from the prose, it indicates a
|
1533
|
+
highlight that was not originally present but which has been added
|
1534
|
+
to bring the reader's attention to a part of the text that might not
|
1535
|
+
have been considered important by the original author when the block
|
1536
|
+
was originally written, but which is now under previously unexpected
|
1537
|
+
scrutiny. When used in the main prose of a document, it indicates a
|
1538
|
+
part of the document that has been highlighted due to its likely
|
1539
|
+
relevance to the user's current activity.
|
1540
|
+
</p>
|
1541
|
+
<div class='markup'>
|
1542
|
+
<p>
|
1543
|
+
I also have some
|
1544
|
+
<mark>kitten</mark>s
|
1545
|
+
who are visiting me
|
1546
|
+
these days. They're really cute. I think they like my garden! Maybe I
|
1547
|
+
should adopt a
|
1548
|
+
<mark>kitten</mark>.
|
1549
|
+
</p>
|
1550
|
+
</div>
|
1551
|
+
</article>
|
1552
|
+
<article class='element' id='ruby'>
|
1553
|
+
<hgroup>
|
1554
|
+
<h2 class='element-title'>
|
1555
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-ruby-element'>ruby</a>
|
1556
|
+
</h2>
|
1557
|
+
<h3 class='element-title'>
|
1558
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-rt-element'>rt</a>
|
1559
|
+
</h3>
|
1560
|
+
<h3 class='element-title'>
|
1561
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-rp-element'>rp</a>
|
1562
|
+
</h3>
|
1563
|
+
</hgroup>
|
1564
|
+
<p>
|
1565
|
+
The
|
1566
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-ruby-element'>ruby</a></code>
|
1567
|
+
element allows one or more spans of
|
1568
|
+
phrasing content to be marked with ruby annotations. Ruby
|
1569
|
+
annotations are short runs of text presented alongside base text,
|
1570
|
+
primarily used in East Asian typography as a guide for
|
1571
|
+
pronunciation or to include other annotations. In Japanese, this
|
1572
|
+
form of typography is also known as
|
1573
|
+
<i>furigana</i>.
|
1574
|
+
</p>
|
1575
|
+
<p>
|
1576
|
+
The
|
1577
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-rt-element'>rt</a></code>
|
1578
|
+
element marks the ruby text component of a
|
1579
|
+
ruby annotation.
|
1580
|
+
</p>
|
1581
|
+
<p>
|
1582
|
+
The
|
1583
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-rp-element'>rp</a></code>
|
1584
|
+
element can be used to provide parentheses
|
1585
|
+
around a ruby text component of a ruby annotation, to be shown by
|
1586
|
+
user agents that don't support ruby annotations.
|
1587
|
+
</p>
|
1588
|
+
<div class='markup'>
|
1589
|
+
<ruby>
|
1590
|
+
漢<rt>かん</rt>字
|
1591
|
+
<rt>じ </rt>
|
1592
|
+
</ruby>
|
1593
|
+
</div>
|
1594
|
+
<div class='markup'>
|
1595
|
+
<ruby>
|
1596
|
+
汉<rt>hàn</rt>字
|
1597
|
+
<rt>zì</rt>
|
1598
|
+
</ruby>
|
1599
|
+
</div>
|
1600
|
+
<div class='markup'>
|
1601
|
+
<ruby>
|
1602
|
+
漢
|
1603
|
+
<rp>(</rp>
|
1604
|
+
<rt>かん</rt>
|
1605
|
+
<rp>)</rp>
|
1606
|
+
字
|
1607
|
+
<rp>(</rp>
|
1608
|
+
<rt>じ</rt>
|
1609
|
+
<rp>)</rp>
|
1610
|
+
</ruby>
|
1611
|
+
</div>
|
1612
|
+
</article>
|
1613
|
+
<article class='element' id='bdi'>
|
1614
|
+
<h2 class='element-title'>
|
1615
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#the-bdi-element'>bdi</a>
|
1616
|
+
</h2>
|
1617
|
+
<p>
|
1618
|
+
The
|
1619
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-bdi-element'>bdi</a></code>
|
1620
|
+
element
|
1621
|
+
<a href='http://developers.whatwg.org/text-level-semantics.html#represents'>represents</a>
|
1622
|
+
a span of
|
1623
|
+
text that is to be isolated from its surroundings for the purposes
|
1624
|
+
of bidirectional text formatting.
|
1625
|
+
<a href='references.html#refsBIDI'>[BIDI]</a>
|
1626
|
+
</p>
|
1627
|
+
<div class='markup'>
|
1628
|
+
<ul>
|
1629
|
+
<li>
|
1630
|
+
User
|
1631
|
+
<bdi>jcranmer</bdi>:
|
1632
|
+
12 posts.
|
1633
|
+
<li>
|
1634
|
+
User
|
1635
|
+
<bdi>hober</bdi>:
|
1636
|
+
5 posts.
|
1637
|
+
<li>
|
1638
|
+
User
|
1639
|
+
<bdi>إيان</bdi>:
|
1640
|
+
3 posts.
|
1641
|
+
</li>
|
1642
|
+
</li>
|
1643
|
+
</li>
|
1644
|
+
</ul>
|
1645
|
+
</div>
|
1646
|
+
</article>
|
1647
|
+
<article class='element' id='text-summary'>
|
1648
|
+
<h2 class='element-title'>Usage summary</h2>
|
1649
|
+
<div class='markup'>
|
1650
|
+
<table>
|
1651
|
+
<thead>
|
1652
|
+
<tr>
|
1653
|
+
<th>
|
1654
|
+
Element
|
1655
|
+
</th>
|
1656
|
+
<th>
|
1657
|
+
Purpose
|
1658
|
+
</th>
|
1659
|
+
<th>
|
1660
|
+
Example
|
1661
|
+
</th>
|
1662
|
+
</tr>
|
1663
|
+
</thead>
|
1664
|
+
<tbody>
|
1665
|
+
<tr>
|
1666
|
+
<td>
|
1667
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-a-element'>a</a></code>
|
1668
|
+
</td>
|
1669
|
+
<td>
|
1670
|
+
Hyperlinks
|
1671
|
+
</td>
|
1672
|
+
<td>
|
1673
|
+
<pre class='example'>Visit my
|
1674
|
+
<strong><a href="drinks.html">drinks</a></strong>
|
1675
|
+
page.</pre>
|
1676
|
+
</td>
|
1677
|
+
</tr>
|
1678
|
+
<tr>
|
1679
|
+
<td>
|
1680
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-em-element'>em</a></code>
|
1681
|
+
</td>
|
1682
|
+
<td>
|
1683
|
+
Stress emphasis
|
1684
|
+
</td>
|
1685
|
+
<td>
|
1686
|
+
<pre class='example'>I must say I
|
1687
|
+
<strong><em>adore</em></strong>
|
1688
|
+
lemonade.</pre>
|
1689
|
+
</td>
|
1690
|
+
</tr>
|
1691
|
+
<tr>
|
1692
|
+
<td>
|
1693
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-strong-element'>strong</a></code>
|
1694
|
+
</td>
|
1695
|
+
<td>
|
1696
|
+
Importance
|
1697
|
+
</td>
|
1698
|
+
<td>
|
1699
|
+
<pre class='example'>This tea is
|
1700
|
+
<strong><strong>very hot</strong></strong>.</pre>
|
1701
|
+
</td>
|
1702
|
+
</tr>
|
1703
|
+
<tr>
|
1704
|
+
<td>
|
1705
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-small-element'>small</a></code>
|
1706
|
+
</td>
|
1707
|
+
<td>
|
1708
|
+
Side comments
|
1709
|
+
</td>
|
1710
|
+
<td>
|
1711
|
+
<pre class='example'>These grapes are made into wine.
|
1712
|
+
<strong><small>Alcohol is addictive.</small></strong></pre>
|
1713
|
+
</td>
|
1714
|
+
</tr>
|
1715
|
+
<tr>
|
1716
|
+
<td>
|
1717
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-s-element'>s</a></code>
|
1718
|
+
</td>
|
1719
|
+
<td>
|
1720
|
+
Inaccurate text
|
1721
|
+
</td>
|
1722
|
+
<td>
|
1723
|
+
<pre class='example'>Price:
|
1724
|
+
<strong><s>£4.50</s></strong>
|
1725
|
+
£2.00!</pre>
|
1726
|
+
</td>
|
1727
|
+
</tr>
|
1728
|
+
<tr>
|
1729
|
+
<td>
|
1730
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-cite-element'>cite</a></code>
|
1731
|
+
</td>
|
1732
|
+
<td>
|
1733
|
+
Titles of works
|
1734
|
+
</td>
|
1735
|
+
<td>
|
1736
|
+
<pre class='example'>The case
|
1737
|
+
<strong><cite>Hugo v. Danielle</cite></strong>
|
1738
|
+
is relevant here.</pre>
|
1739
|
+
</td>
|
1740
|
+
</tr>
|
1741
|
+
<tr>
|
1742
|
+
<td>
|
1743
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-q-element'>q</a></code>
|
1744
|
+
</td>
|
1745
|
+
<td>
|
1746
|
+
Quotations
|
1747
|
+
</td>
|
1748
|
+
<td>
|
1749
|
+
<pre class='example'>The judge said
|
1750
|
+
<strong><q>You can drink water from the fish tank</q></strong>
|
1751
|
+
but advised against it.</pre>
|
1752
|
+
</td>
|
1753
|
+
</tr>
|
1754
|
+
<tr>
|
1755
|
+
<td>
|
1756
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-dfn-element'>dfn</a></code>
|
1757
|
+
</td>
|
1758
|
+
<td>
|
1759
|
+
Defining instance
|
1760
|
+
</td>
|
1761
|
+
<td>
|
1762
|
+
<pre class='example'>The term
|
1763
|
+
<strong><dfn>organic food</dfn></strong>
|
1764
|
+
refers to food produced without synthetic chemicals.</pre>
|
1765
|
+
</td>
|
1766
|
+
</tr>
|
1767
|
+
<tr>
|
1768
|
+
<td>
|
1769
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-abbr-element'>abbr</a></code>
|
1770
|
+
</td>
|
1771
|
+
<td>
|
1772
|
+
Abbreviations
|
1773
|
+
</td>
|
1774
|
+
<td>
|
1775
|
+
<pre class='example'>Organic food in Ireland is certified by the
|
1776
|
+
<strong><abbr title="Irish Organic Farmers and Growers Association">IOFGA</abbr></strong>.</pre>
|
1777
|
+
</td>
|
1778
|
+
</tr>
|
1779
|
+
<tr>
|
1780
|
+
<td>
|
1781
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-time-element'>time</a></code>
|
1782
|
+
</td>
|
1783
|
+
<td>
|
1784
|
+
Date and/or time
|
1785
|
+
</td>
|
1786
|
+
<td>
|
1787
|
+
<pre class='example'>Published
|
1788
|
+
<strong><time>2009-10-21</time></strong>.</pre>
|
1789
|
+
</td>
|
1790
|
+
</tr>
|
1791
|
+
<tr>
|
1792
|
+
<td>
|
1793
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-code-element'>code</a></code>
|
1794
|
+
</td>
|
1795
|
+
<td>
|
1796
|
+
Computer code
|
1797
|
+
</td>
|
1798
|
+
<td>
|
1799
|
+
<pre class='example'>The
|
1800
|
+
<strong><code>fruitdb</code></strong>
|
1801
|
+
program can be used for tracking fruit production.</pre>
|
1802
|
+
</td>
|
1803
|
+
</tr>
|
1804
|
+
<tr>
|
1805
|
+
<td>
|
1806
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-var-element'>var</a></code>
|
1807
|
+
</td>
|
1808
|
+
<td>
|
1809
|
+
Variables
|
1810
|
+
</td>
|
1811
|
+
<td>
|
1812
|
+
<pre class='example'>If there are
|
1813
|
+
<strong><var>n</var></strong>
|
1814
|
+
fruit in the bowl, at least
|
1815
|
+
<strong><var>n</var></strong>u{f7}2
|
1816
|
+
will be ripe.</pre>
|
1817
|
+
</td>
|
1818
|
+
</tr>
|
1819
|
+
<tr>
|
1820
|
+
<td>
|
1821
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-samp-element'>samp</a></code>
|
1822
|
+
</td>
|
1823
|
+
<td>
|
1824
|
+
Computer output
|
1825
|
+
</td>
|
1826
|
+
<td>
|
1827
|
+
<pre class='example'>The computer said
|
1828
|
+
<strong><samp>Unknown error -3</samp></strong>.</pre>
|
1829
|
+
</td>
|
1830
|
+
</tr>
|
1831
|
+
<tr>
|
1832
|
+
<td>
|
1833
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-kbd-element'>kbd</a></code>
|
1834
|
+
</td>
|
1835
|
+
<td>
|
1836
|
+
User input
|
1837
|
+
</td>
|
1838
|
+
<td>
|
1839
|
+
<pre class='example'>Hit
|
1840
|
+
<strong><kbd>F1</kbd></strong>
|
1841
|
+
to continue.</pre>
|
1842
|
+
</td>
|
1843
|
+
</tr>
|
1844
|
+
<tr>
|
1845
|
+
<td>
|
1846
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-sub-and-sup-elements'>sub</a></code>
|
1847
|
+
</td>
|
1848
|
+
<td>
|
1849
|
+
Subscripts
|
1850
|
+
</td>
|
1851
|
+
<td>
|
1852
|
+
<pre class='example'>Water is H<strong><sub>2</sub></strong>O.</pre>
|
1853
|
+
</td>
|
1854
|
+
</tr>
|
1855
|
+
<tr>
|
1856
|
+
<td>
|
1857
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-sub-and-sup-elements'>sup</a></code>
|
1858
|
+
</td>
|
1859
|
+
<td>
|
1860
|
+
Superscripts
|
1861
|
+
</td>
|
1862
|
+
<td>
|
1863
|
+
<pre class='example'>The Hydrogen in heavy water is usually
|
1864
|
+
<strong><sup>2</sup></strong>H.</pre>
|
1865
|
+
</td>
|
1866
|
+
</tr>
|
1867
|
+
<tr>
|
1868
|
+
<td>
|
1869
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-i-element'>i</a></code>
|
1870
|
+
</td>
|
1871
|
+
<td>
|
1872
|
+
Alternative voice
|
1873
|
+
</td>
|
1874
|
+
<td>
|
1875
|
+
<pre class='example'>Lemonade consists primarily of
|
1876
|
+
<strong><i>Citrus limon</i></strong>.</pre>
|
1877
|
+
</td>
|
1878
|
+
</tr>
|
1879
|
+
<tr>
|
1880
|
+
<td>
|
1881
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-b-element'>b</a></code>
|
1882
|
+
</td>
|
1883
|
+
<td>
|
1884
|
+
Keywords
|
1885
|
+
</td>
|
1886
|
+
<td>
|
1887
|
+
<pre class='example'>Take a
|
1888
|
+
<strong><b>lemon</b></strong>
|
1889
|
+
and squeeze it with a
|
1890
|
+
<strong><b>juicer</b></strong>.</pre>
|
1891
|
+
</td>
|
1892
|
+
</tr>
|
1893
|
+
<tr>
|
1894
|
+
<td>
|
1895
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-mark-element'>mark</a></code>
|
1896
|
+
</td>
|
1897
|
+
<td>
|
1898
|
+
Highlight
|
1899
|
+
</td>
|
1900
|
+
<td>
|
1901
|
+
<pre class='example'>Elderflower cordial, with one
|
1902
|
+
<strong><mark>part</mark></strong>
|
1903
|
+
cordial to ten
|
1904
|
+
<strong><mark>part</mark></strong>s
|
1905
|
+
water, stands a
|
1906
|
+
<strong><mark>part</mark></strong>
|
1907
|
+
from the rest.</pre>
|
1908
|
+
</td>
|
1909
|
+
</tr>
|
1910
|
+
<tr>
|
1911
|
+
<td><code><a href='http://developers.whatwg.org/text-level-semantics.html#the-ruby-element'>ruby</a></code>,
|
1912
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-rt-element'>rt</a></code>,
|
1913
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-rp-element'>rp</a></code>
|
1914
|
+
</td>
|
1915
|
+
<td>
|
1916
|
+
Ruby annotations
|
1917
|
+
</td>
|
1918
|
+
<td>
|
1919
|
+
<pre class='example'><strong><ruby> OJ <rp>(<rt>Orange Juice<rp>)</ruby></strong></pre>
|
1920
|
+
</td>
|
1921
|
+
</tr>
|
1922
|
+
<tr>
|
1923
|
+
<td>
|
1924
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-bdi-element'>bdi</a></code>
|
1925
|
+
</td>
|
1926
|
+
<td>
|
1927
|
+
Text directionality isolation
|
1928
|
+
</td>
|
1929
|
+
<td>
|
1930
|
+
<pre class='example'>The recommended restaurant is
|
1931
|
+
<strong><bdi lang="">My Juice Café (At The Beach)</bdi></strong>.</pre>
|
1932
|
+
</td>
|
1933
|
+
</tr>
|
1934
|
+
<tr>
|
1935
|
+
<td>
|
1936
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-bdo-element'>bdo</a></code>
|
1937
|
+
</td>
|
1938
|
+
<td>
|
1939
|
+
Text directionality formatting
|
1940
|
+
</td>
|
1941
|
+
<td>
|
1942
|
+
<pre class='example'>The proposal is to write English, but in reverse order. "Juice" would become "<strong><bdo dir=rtl>Juice</bdo></strong>"</pre>
|
1943
|
+
</td>
|
1944
|
+
</tr>
|
1945
|
+
<tr>
|
1946
|
+
<td>
|
1947
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-span-element'>span</a></code>
|
1948
|
+
</td>
|
1949
|
+
<td>
|
1950
|
+
Other
|
1951
|
+
</td>
|
1952
|
+
<td>
|
1953
|
+
<pre class='example'>In French we call it
|
1954
|
+
<strong><span lang="fr">sirop de sureau</span></strong>.</pre>
|
1955
|
+
</td>
|
1956
|
+
</tr>
|
1957
|
+
<tr>
|
1958
|
+
<td>
|
1959
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-br-element'>br</a></code>
|
1960
|
+
</td>
|
1961
|
+
<td>
|
1962
|
+
Line break
|
1963
|
+
</td>
|
1964
|
+
<td>
|
1965
|
+
<pre class='example'>Simply Orange Juice Company<strong><br></strong>Apopka, FL 32703<strong><br></strong>U.S.A.</pre>
|
1966
|
+
</td>
|
1967
|
+
</tr>
|
1968
|
+
<tr>
|
1969
|
+
<td>
|
1970
|
+
<code><a href='http://developers.whatwg.org/text-level-semantics.html#the-wbr-element'>wbr</a></code>
|
1971
|
+
</td>
|
1972
|
+
<td>
|
1973
|
+
Line breaking opportunity
|
1974
|
+
</td>
|
1975
|
+
<td>
|
1976
|
+
<pre class='example'>www.simply<strong><wbr></strong>orange<strong><wbr></strong>juice.com</pre>
|
1977
|
+
</td>
|
1978
|
+
</tr>
|
1979
|
+
</tbody>
|
1980
|
+
</table>
|
1981
|
+
</div>
|
1982
|
+
</article>
|
1983
|
+
</section>
|
1984
|
+
<section class='element-group' id='tabular'>
|
1985
|
+
<h1 class='section-title'>
|
1986
|
+
<a href='http://developers.whatwg.org/tabular-data.html'>Tabular Data</a>
|
1987
|
+
</h1>
|
1988
|
+
<article class='element' id='table'>
|
1989
|
+
<h2 class='element-title'>
|
1990
|
+
<a href='http://developers.whatwg.org/tabular-data.html#the-table-element'>Table</a>
|
1991
|
+
</h2>
|
1992
|
+
<p>
|
1993
|
+
The
|
1994
|
+
<code><a href='http://developers.whatwg.org/tabular-data.html#the-table-element'>table</a></code>
|
1995
|
+
element
|
1996
|
+
<a href='http://developers.whatwg.org/tabular-data.html#represents'>represents</a>
|
1997
|
+
data with
|
1998
|
+
more than one dimension, in the form of a
|
1999
|
+
<a href='http://developers.whatwg.org/tabular-data.html#concept-table' title='concept-table'>table</a>.
|
2000
|
+
</p>
|
2001
|
+
<div class='markup'>
|
2002
|
+
<p>
|
2003
|
+
In the following table, characteristics are given in the second
|
2004
|
+
column, with the negative side in the left column and the positive
|
2005
|
+
side in the right column.
|
2006
|
+
</p>
|
2007
|
+
<table>
|
2008
|
+
<caption>Characteristics with positive and negative sides</caption>
|
2009
|
+
<thead>
|
2010
|
+
<tr>
|
2011
|
+
<th id='n'>
|
2012
|
+
Negative
|
2013
|
+
<th>
|
2014
|
+
Characteristic
|
2015
|
+
<th>
|
2016
|
+
Positive
|
2017
|
+
<tbody>
|
2018
|
+
<tr>
|
2019
|
+
<td headers='n r1'>
|
2020
|
+
Sad
|
2021
|
+
<th id='r1'>
|
2022
|
+
Mood
|
2023
|
+
<td>
|
2024
|
+
Happy
|
2025
|
+
<tr>
|
2026
|
+
<td headers='n r2'>
|
2027
|
+
Failing
|
2028
|
+
<th id='r2'>
|
2029
|
+
Grade
|
2030
|
+
<td>
|
2031
|
+
Passing
|
2032
|
+
</td>
|
2033
|
+
</th>
|
2034
|
+
</td>
|
2035
|
+
</tr>
|
2036
|
+
</td>
|
2037
|
+
</th>
|
2038
|
+
</td>
|
2039
|
+
</tr>
|
2040
|
+
</tbody>
|
2041
|
+
</th>
|
2042
|
+
</th>
|
2043
|
+
</th>
|
2044
|
+
</tr>
|
2045
|
+
</thead>
|
2046
|
+
</table>
|
2047
|
+
</div>
|
2048
|
+
<div class='markup'>
|
2049
|
+
<table>
|
2050
|
+
<caption>
|
2051
|
+
<strong>Characteristics with positive and negative sides.</strong>
|
2052
|
+
<p>
|
2053
|
+
Characteristics are given in the second column, with the
|
2054
|
+
negative side in the left column and the positive side in the right
|
2055
|
+
column.
|
2056
|
+
</p>
|
2057
|
+
</caption>
|
2058
|
+
<thead>
|
2059
|
+
<tr>
|
2060
|
+
<th id='n'>
|
2061
|
+
Negative
|
2062
|
+
<th>
|
2063
|
+
Characteristic
|
2064
|
+
<th>
|
2065
|
+
Positive
|
2066
|
+
<tbody>
|
2067
|
+
<tr>
|
2068
|
+
<td headers='n r1'>
|
2069
|
+
Sad
|
2070
|
+
<th id='r1'>
|
2071
|
+
Mood
|
2072
|
+
<td>
|
2073
|
+
Happy
|
2074
|
+
<tr>
|
2075
|
+
<td headers='n r2'>
|
2076
|
+
Failing
|
2077
|
+
<th id='r2'>
|
2078
|
+
Grade
|
2079
|
+
<td>
|
2080
|
+
Passing
|
2081
|
+
</td>
|
2082
|
+
</th>
|
2083
|
+
</td>
|
2084
|
+
</tr>
|
2085
|
+
</td>
|
2086
|
+
</th>
|
2087
|
+
</td>
|
2088
|
+
</tr>
|
2089
|
+
</tbody>
|
2090
|
+
</th>
|
2091
|
+
</th>
|
2092
|
+
</th>
|
2093
|
+
</tr>
|
2094
|
+
</thead>
|
2095
|
+
</table>
|
2096
|
+
</div>
|
2097
|
+
<div class='markup'>
|
2098
|
+
<table>
|
2099
|
+
<caption>
|
2100
|
+
<strong>Characteristics with positive and negative sides.</strong>
|
2101
|
+
<details>
|
2102
|
+
<summary>Help</summary>
|
2103
|
+
<p>
|
2104
|
+
Characteristics are given in the second column, with the
|
2105
|
+
negative side in the left column and the positive side in the right
|
2106
|
+
column.
|
2107
|
+
</p>
|
2108
|
+
</details>
|
2109
|
+
</caption>
|
2110
|
+
<thead>
|
2111
|
+
<tr>
|
2112
|
+
<th id='n'>
|
2113
|
+
Negative
|
2114
|
+
<th>
|
2115
|
+
Characteristic
|
2116
|
+
<th>
|
2117
|
+
Positive
|
2118
|
+
<tbody>
|
2119
|
+
<tr>
|
2120
|
+
<td headers='n r1'>
|
2121
|
+
Sad
|
2122
|
+
<th id='r1'>
|
2123
|
+
Mood
|
2124
|
+
<td>
|
2125
|
+
Happy
|
2126
|
+
<tr>
|
2127
|
+
<td headers='n r2'>
|
2128
|
+
Failing
|
2129
|
+
<th id='r2'>
|
2130
|
+
Grade
|
2131
|
+
<td>
|
2132
|
+
Passing
|
2133
|
+
</td>
|
2134
|
+
</th>
|
2135
|
+
</td>
|
2136
|
+
</tr>
|
2137
|
+
</td>
|
2138
|
+
</th>
|
2139
|
+
</td>
|
2140
|
+
</tr>
|
2141
|
+
</tbody>
|
2142
|
+
</th>
|
2143
|
+
</th>
|
2144
|
+
</th>
|
2145
|
+
</tr>
|
2146
|
+
</thead>
|
2147
|
+
</table>
|
2148
|
+
</div>
|
2149
|
+
<div class='markup'>
|
2150
|
+
<figure>
|
2151
|
+
<figcaption>Characteristics with positive and negative sides</figcaption>
|
2152
|
+
<p>
|
2153
|
+
Characteristics are given in the second column, with the
|
2154
|
+
negative side in the left column and the positive side in the right
|
2155
|
+
column.
|
2156
|
+
</p>
|
2157
|
+
<table>
|
2158
|
+
<thead>
|
2159
|
+
<tr>
|
2160
|
+
<th id='n'>
|
2161
|
+
Negative
|
2162
|
+
<th>
|
2163
|
+
Characteristic
|
2164
|
+
<th>
|
2165
|
+
Positive
|
2166
|
+
<tbody>
|
2167
|
+
<tr>
|
2168
|
+
<td headers='n r1'>
|
2169
|
+
Sad
|
2170
|
+
<th id='r1'>
|
2171
|
+
Mood
|
2172
|
+
<td>
|
2173
|
+
Happy
|
2174
|
+
<tr>
|
2175
|
+
<td headers='n r2'>
|
2176
|
+
Failing
|
2177
|
+
<th id='r2'>
|
2178
|
+
Grade
|
2179
|
+
<td>
|
2180
|
+
Passing
|
2181
|
+
</td>
|
2182
|
+
</th>
|
2183
|
+
</td>
|
2184
|
+
</tr>
|
2185
|
+
</td>
|
2186
|
+
</th>
|
2187
|
+
</td>
|
2188
|
+
</tr>
|
2189
|
+
</tbody>
|
2190
|
+
</th>
|
2191
|
+
</th>
|
2192
|
+
</th>
|
2193
|
+
</tr>
|
2194
|
+
</thead>
|
2195
|
+
</table>
|
2196
|
+
</figure>
|
2197
|
+
</div>
|
2198
|
+
<div class='markup'>
|
2199
|
+
<figure>
|
2200
|
+
<figcaption>
|
2201
|
+
<strong>Characteristics with positive and negative sides</strong>
|
2202
|
+
<p>
|
2203
|
+
Characteristics are given in the second column, with the
|
2204
|
+
negative side in the left column and the positive side in the right
|
2205
|
+
column.
|
2206
|
+
</p>
|
2207
|
+
</figcaption>
|
2208
|
+
<table>
|
2209
|
+
<thead>
|
2210
|
+
<tr>
|
2211
|
+
<th id='n'>
|
2212
|
+
Negative
|
2213
|
+
<th>
|
2214
|
+
Characteristic
|
2215
|
+
<th>
|
2216
|
+
Positive
|
2217
|
+
<tbody>
|
2218
|
+
<tr>
|
2219
|
+
<td headers='n r1'>
|
2220
|
+
Sad
|
2221
|
+
<th id='r1'>
|
2222
|
+
Mood
|
2223
|
+
<td>
|
2224
|
+
Happy
|
2225
|
+
<tr>
|
2226
|
+
<td headers='n r2'>
|
2227
|
+
Failing
|
2228
|
+
<th id='r2'>
|
2229
|
+
Grade
|
2230
|
+
<td>
|
2231
|
+
Passing
|
2232
|
+
</td>
|
2233
|
+
</th>
|
2234
|
+
</td>
|
2235
|
+
</tr>
|
2236
|
+
</td>
|
2237
|
+
</th>
|
2238
|
+
</td>
|
2239
|
+
</tr>
|
2240
|
+
</tbody>
|
2241
|
+
</th>
|
2242
|
+
</th>
|
2243
|
+
</th>
|
2244
|
+
</tr>
|
2245
|
+
</thead>
|
2246
|
+
</table>
|
2247
|
+
</figure>
|
2248
|
+
</div>
|
2249
|
+
<div class='markup'>
|
2250
|
+
<table>
|
2251
|
+
<caption>Characteristics with positive and negative sides</caption>
|
2252
|
+
<thead>
|
2253
|
+
<tr>
|
2254
|
+
<th>
|
2255
|
+
Characteristic
|
2256
|
+
<th>
|
2257
|
+
Negative
|
2258
|
+
<th>
|
2259
|
+
Positive
|
2260
|
+
<tbody>
|
2261
|
+
<tr>
|
2262
|
+
<th>
|
2263
|
+
Mood
|
2264
|
+
<td>
|
2265
|
+
Sad
|
2266
|
+
<td>
|
2267
|
+
Happy
|
2268
|
+
<tr>
|
2269
|
+
<th>
|
2270
|
+
Grade
|
2271
|
+
<td>
|
2272
|
+
Failing
|
2273
|
+
<td>
|
2274
|
+
Passing
|
2275
|
+
</td>
|
2276
|
+
</td>
|
2277
|
+
</th>
|
2278
|
+
</tr>
|
2279
|
+
</td>
|
2280
|
+
</td>
|
2281
|
+
</th>
|
2282
|
+
</tr>
|
2283
|
+
</tbody>
|
2284
|
+
</th>
|
2285
|
+
</th>
|
2286
|
+
</th>
|
2287
|
+
</tr>
|
2288
|
+
</thead>
|
2289
|
+
</table>
|
2290
|
+
</div>
|
2291
|
+
</article>
|
2292
|
+
<article class='element' id='thead'>
|
2293
|
+
<h2 class='element-title'>
|
2294
|
+
<a href='http://developers.whatwg.org/tabular-data.html#the-thead-element'>thead</a>
|
2295
|
+
</h2>
|
2296
|
+
<p>
|
2297
|
+
The
|
2298
|
+
<code><a href='http://developers.whatwg.org/tabular-data.html#the-thead-element'>thead</a></code>
|
2299
|
+
element
|
2300
|
+
<a href='http://developers.whatwg.org/tabular-data.html#represents'>represents</a>
|
2301
|
+
the
|
2302
|
+
<a href='http://developers.whatwg.org/tabular-data.html#concept-row-group' title='concept-row-group'>block</a>
|
2303
|
+
of
|
2304
|
+
<a href='http://developers.whatwg.org/tabular-data.html#concept-row' title='concept-row'>rows</a>
|
2305
|
+
that consist of the column labels
|
2306
|
+
(headers) for the parent
|
2307
|
+
<code><a href='http://developers.whatwg.org/tabular-data.html#the-table-element'>table</a></code>
|
2308
|
+
element, if the
|
2309
|
+
<code><a href='http://developers.whatwg.org/tabular-data.html#the-thead-element'>thead</a></code>
|
2310
|
+
element has a parent and it is a
|
2311
|
+
<code><a href='http://developers.whatwg.org/tabular-data.html#the-table-element'>table</a></code>.
|
2312
|
+
</p>
|
2313
|
+
<div class='markup'>
|
2314
|
+
<table>
|
2315
|
+
<caption>School auction sign-up sheet</caption>
|
2316
|
+
<thead>
|
2317
|
+
<tr>
|
2318
|
+
<th>
|
2319
|
+
<label for='e1'>Name</label>
|
2320
|
+
<th>
|
2321
|
+
<label for='e2'>Product</label>
|
2322
|
+
<th>
|
2323
|
+
<label for='e3'>Picture</label>
|
2324
|
+
<th>
|
2325
|
+
<label for='e4'>Price</label>
|
2326
|
+
<tr>
|
2327
|
+
<td>
|
2328
|
+
Your name here
|
2329
|
+
<td>
|
2330
|
+
What are you selling?
|
2331
|
+
<td>
|
2332
|
+
Link to a picture
|
2333
|
+
<td>
|
2334
|
+
Your reserve price
|
2335
|
+
<tbody>
|
2336
|
+
<tr>
|
2337
|
+
<td>
|
2338
|
+
Ms Danus
|
2339
|
+
<td>
|
2340
|
+
Doughnuts
|
2341
|
+
<td>
|
2342
|
+
<img src='http://example.com/mydoughnuts.png' title='Doughnuts from Ms Danus'>
|
2343
|
+
<td>
|
2344
|
+
$45
|
2345
|
+
<tr>
|
2346
|
+
<td>
|
2347
|
+
<input form='f' id='e1' name='who' required='' type='text'>
|
2348
|
+
<td>
|
2349
|
+
<input form='f' id='e2' name='what' required='' type='text'>
|
2350
|
+
<td>
|
2351
|
+
<input form='f' id='e3' name='pic' type='url'>
|
2352
|
+
<td>
|
2353
|
+
<input form='f' id='e4' min='0' required='' step='0.01' type='number' value='0' />
|
2354
|
+
</td>
|
2355
|
+
</input>
|
2356
|
+
</td>
|
2357
|
+
</input>
|
2358
|
+
</td>
|
2359
|
+
</input>
|
2360
|
+
</td>
|
2361
|
+
</tr>
|
2362
|
+
</td>
|
2363
|
+
</img>
|
2364
|
+
</td>
|
2365
|
+
</td>
|
2366
|
+
</td>
|
2367
|
+
</tr>
|
2368
|
+
</tbody>
|
2369
|
+
</td>
|
2370
|
+
</td>
|
2371
|
+
</td>
|
2372
|
+
</td>
|
2373
|
+
</tr>
|
2374
|
+
</th>
|
2375
|
+
</th>
|
2376
|
+
</th>
|
2377
|
+
</th>
|
2378
|
+
</tr>
|
2379
|
+
</thead>
|
2380
|
+
</table>
|
2381
|
+
<form action='/auction.cgi' id='f'>
|
2382
|
+
<input name='add' type='button' value='Submit' />
|
2383
|
+
</form>
|
2384
|
+
</div>
|
2385
|
+
</article>
|
2386
|
+
<article class='element' id='sample-tables'>
|
2387
|
+
<h2 class='element-title'>Sample Tables</h2>
|
2388
|
+
<div class='markup'>
|
2389
|
+
<table>
|
2390
|
+
<caption>
|
2391
|
+
Specification values:
|
2392
|
+
<b>Steel</b>,
|
2393
|
+
<b>Castings</b>,
|
2394
|
+
Ann. A.S.T.M. A27-16, Class B;* P max. 0.06; S max. 0.05.
|
2395
|
+
</caption>
|
2396
|
+
<thead>
|
2397
|
+
<tr>
|
2398
|
+
<th rowspan='2'>Grade.</th>
|
2399
|
+
<th rowspan='2'>Yield Point.</th>
|
2400
|
+
<th colspan='2'>Ultimate tensile strength</th>
|
2401
|
+
<th rowspan='2'>Per cent elong. 50.8mm or 2 in.</th>
|
2402
|
+
<th rowspan='2'>Per cent reduct. area.</th>
|
2403
|
+
</tr>
|
2404
|
+
<tr>
|
2405
|
+
<th>
|
2406
|
+
kg/mm
|
2407
|
+
<sup>2</sup>
|
2408
|
+
</th>
|
2409
|
+
<th>
|
2410
|
+
lb/in
|
2411
|
+
<sup>2</sup>
|
2412
|
+
</th>
|
2413
|
+
</tr>
|
2414
|
+
</thead>
|
2415
|
+
<tbody>
|
2416
|
+
<tr>
|
2417
|
+
<td>Hard</td>
|
2418
|
+
<td>0.45 ultimate</td>
|
2419
|
+
<td>56.2</td>
|
2420
|
+
<td>80,000</td>
|
2421
|
+
<td>15</td>
|
2422
|
+
<td>20</td>
|
2423
|
+
</tr>
|
2424
|
+
<tr>
|
2425
|
+
<td>Medium</td>
|
2426
|
+
<td>0.45 ultimate</td>
|
2427
|
+
<td>49.2</td>
|
2428
|
+
<td>70,000</td>
|
2429
|
+
<td>18</td>
|
2430
|
+
<td>25</td>
|
2431
|
+
</tr>
|
2432
|
+
<tr>
|
2433
|
+
<td>Soft</td>
|
2434
|
+
<td>0.45 ultimate</td>
|
2435
|
+
<td>42.2</td>
|
2436
|
+
<td>60,000</td>
|
2437
|
+
<td>22</td>
|
2438
|
+
<td>30</td>
|
2439
|
+
</tr>
|
2440
|
+
</tbody>
|
2441
|
+
</table>
|
2442
|
+
</div>
|
2443
|
+
<div class='markup'>
|
2444
|
+
<table>
|
2445
|
+
<thead>
|
2446
|
+
<tr>
|
2447
|
+
<th>
|
2448
|
+
<th>
|
2449
|
+
2008
|
2450
|
+
<th>
|
2451
|
+
2007
|
2452
|
+
<th>
|
2453
|
+
2006
|
2454
|
+
<tbody>
|
2455
|
+
<tr>
|
2456
|
+
<th>
|
2457
|
+
Net sales
|
2458
|
+
<td>
|
2459
|
+
$ 32,479
|
2460
|
+
<td>
|
2461
|
+
$ 24,006
|
2462
|
+
<td>
|
2463
|
+
$ 19,315
|
2464
|
+
<tr>
|
2465
|
+
<th>
|
2466
|
+
Cost of sales
|
2467
|
+
<td>
|
2468
|
+
21,334
|
2469
|
+
<td>
|
2470
|
+
15,852
|
2471
|
+
<td>
|
2472
|
+
13,717
|
2473
|
+
<tbody>
|
2474
|
+
<tr>
|
2475
|
+
<th>
|
2476
|
+
Gross margin
|
2477
|
+
<td>
|
2478
|
+
$ 11,145
|
2479
|
+
<td>
|
2480
|
+
$ 8,154
|
2481
|
+
<td>
|
2482
|
+
$ 5,598
|
2483
|
+
<tfoot>
|
2484
|
+
<tr>
|
2485
|
+
<th>
|
2486
|
+
Gross margin percentage
|
2487
|
+
<td>
|
2488
|
+
34.3%
|
2489
|
+
<td>
|
2490
|
+
34.0%
|
2491
|
+
<td>
|
2492
|
+
29.0%
|
2493
|
+
</td>
|
2494
|
+
</td>
|
2495
|
+
</td>
|
2496
|
+
</th>
|
2497
|
+
</tr>
|
2498
|
+
</tfoot>
|
2499
|
+
</td>
|
2500
|
+
</td>
|
2501
|
+
</td>
|
2502
|
+
</th>
|
2503
|
+
</tr>
|
2504
|
+
</tbody>
|
2505
|
+
</td>
|
2506
|
+
</td>
|
2507
|
+
</td>
|
2508
|
+
</th>
|
2509
|
+
</tr>
|
2510
|
+
</td>
|
2511
|
+
</td>
|
2512
|
+
</td>
|
2513
|
+
</th>
|
2514
|
+
</tr>
|
2515
|
+
</tbody>
|
2516
|
+
</th>
|
2517
|
+
</th>
|
2518
|
+
</th>
|
2519
|
+
</th>
|
2520
|
+
</tr>
|
2521
|
+
</thead>
|
2522
|
+
</table>
|
2523
|
+
</div>
|
2524
|
+
<div class='markup'>
|
2525
|
+
<table>
|
2526
|
+
<colgroup>
|
2527
|
+
<col>
|
2528
|
+
<colgroup>
|
2529
|
+
<col>
|
2530
|
+
<col>
|
2531
|
+
<col>
|
2532
|
+
<thead>
|
2533
|
+
<tr>
|
2534
|
+
<th>
|
2535
|
+
<th>
|
2536
|
+
2008
|
2537
|
+
<th>
|
2538
|
+
2007
|
2539
|
+
<th>
|
2540
|
+
2006
|
2541
|
+
<tbody>
|
2542
|
+
<tr>
|
2543
|
+
<th scope='rowgroup'>
|
2544
|
+
Research and development
|
2545
|
+
<td>
|
2546
|
+
$ 1,109
|
2547
|
+
<td>
|
2548
|
+
$ 782
|
2549
|
+
<td>
|
2550
|
+
$ 712
|
2551
|
+
<tr>
|
2552
|
+
<th scope='row'>
|
2553
|
+
Percentage of net sales
|
2554
|
+
<td>
|
2555
|
+
3.4%
|
2556
|
+
<td>
|
2557
|
+
3.3%
|
2558
|
+
<td>
|
2559
|
+
3.7%
|
2560
|
+
<tbody>
|
2561
|
+
<tr>
|
2562
|
+
<th scope='rowgroup'>
|
2563
|
+
Selling, general, and administrative
|
2564
|
+
<td>
|
2565
|
+
$ 3,761
|
2566
|
+
<td>
|
2567
|
+
$ 2,963
|
2568
|
+
<td>
|
2569
|
+
$ 2,433
|
2570
|
+
<tr>
|
2571
|
+
<th scope='row'>
|
2572
|
+
Percentage of net sales
|
2573
|
+
<td>
|
2574
|
+
11.6%
|
2575
|
+
<td>
|
2576
|
+
12.3%
|
2577
|
+
<td>
|
2578
|
+
12.6%
|
2579
|
+
</td>
|
2580
|
+
</td>
|
2581
|
+
</td>
|
2582
|
+
</th>
|
2583
|
+
</tr>
|
2584
|
+
</td>
|
2585
|
+
</td>
|
2586
|
+
</td>
|
2587
|
+
</th>
|
2588
|
+
</tr>
|
2589
|
+
</tbody>
|
2590
|
+
</td>
|
2591
|
+
</td>
|
2592
|
+
</td>
|
2593
|
+
</th>
|
2594
|
+
</tr>
|
2595
|
+
</td>
|
2596
|
+
</td>
|
2597
|
+
</td>
|
2598
|
+
</th>
|
2599
|
+
</tr>
|
2600
|
+
</tbody>
|
2601
|
+
</th>
|
2602
|
+
</th>
|
2603
|
+
</th>
|
2604
|
+
</th>
|
2605
|
+
</tr>
|
2606
|
+
</thead>
|
2607
|
+
</col>
|
2608
|
+
</col>
|
2609
|
+
</col>
|
2610
|
+
</colgroup>
|
2611
|
+
</col>
|
2612
|
+
</colgroup>
|
2613
|
+
</table>
|
2614
|
+
</div>
|
2615
|
+
</article>
|
2616
|
+
</section>
|
2617
|
+
<section class='element-group' id='forms'>
|
2618
|
+
<h1 class='section-title'>
|
2619
|
+
<a href='http://developers.whatwg.org/forms.html'>Forms</a>
|
2620
|
+
</h1>
|
2621
|
+
<article class='element' id='sample-forms'>
|
2622
|
+
<h2 class='element-title'>Sample Forms</h2>
|
2623
|
+
<div class='markup'>
|
2624
|
+
<form action='https://pizza.example.com/order.cgi' enctype='application/x-www-form-urlencoded' method='post'>
|
2625
|
+
<p>
|
2626
|
+
<label>
|
2627
|
+
Customer name:
|
2628
|
+
<input name='custname' required='' />
|
2629
|
+
</label>
|
2630
|
+
</p>
|
2631
|
+
<p>
|
2632
|
+
<label>
|
2633
|
+
Telephone:
|
2634
|
+
<input name='custtel' type='tel' />
|
2635
|
+
</label>
|
2636
|
+
</p>
|
2637
|
+
<p>
|
2638
|
+
<label>
|
2639
|
+
E-mail address:
|
2640
|
+
<input name='custemail' type='email' />
|
2641
|
+
</label>
|
2642
|
+
</p>
|
2643
|
+
<fieldset>
|
2644
|
+
<legend>Pizza Size</legend>
|
2645
|
+
<p>
|
2646
|
+
<label>
|
2647
|
+
<input name='size' type='radio' value='small'>Small</input>
|
2648
|
+
</label>
|
2649
|
+
</p>
|
2650
|
+
<p>
|
2651
|
+
<label>
|
2652
|
+
<input name='size' type='radio' value='medium'>Medium</input>
|
2653
|
+
</label>
|
2654
|
+
</p>
|
2655
|
+
<p>
|
2656
|
+
<label>
|
2657
|
+
<input name='size' type='radio' value='large'>Large</input>
|
2658
|
+
</label>
|
2659
|
+
</p>
|
2660
|
+
</fieldset>
|
2661
|
+
<fieldset>
|
2662
|
+
<legend>Pizza Toppings</legend>
|
2663
|
+
<p>
|
2664
|
+
<label>
|
2665
|
+
<input name='topping' type='checkbox' value='bacon'>Bacon</input>
|
2666
|
+
</label>
|
2667
|
+
</p>
|
2668
|
+
<p>
|
2669
|
+
<label>
|
2670
|
+
<input name='topping' type='checkbox' value='cheese'>Extra Cheese</input>
|
2671
|
+
</label>
|
2672
|
+
</p>
|
2673
|
+
<p>
|
2674
|
+
<label>
|
2675
|
+
<input name='topping' type='checkbox' value='onion'>Onion</input>
|
2676
|
+
</label>
|
2677
|
+
</p>
|
2678
|
+
<p>
|
2679
|
+
<label>
|
2680
|
+
<input name='topping' type='checkbox' value='mushroom'>Mushroom</input>
|
2681
|
+
</label>
|
2682
|
+
</p>
|
2683
|
+
</fieldset>
|
2684
|
+
<p>
|
2685
|
+
<label>
|
2686
|
+
Preferred delivery time:
|
2687
|
+
<input max='21:00' min='11:00' name='delivery' required='' step='900' type='time' />
|
2688
|
+
</label>
|
2689
|
+
</p>
|
2690
|
+
<p>
|
2691
|
+
<label>
|
2692
|
+
Delivery instructions:
|
2693
|
+
<textarea maxlength='1000' name='comments'></textarea>
|
2694
|
+
</label>
|
2695
|
+
</p>
|
2696
|
+
<p>
|
2697
|
+
<button>Submit order</button>
|
2698
|
+
<p></p>
|
2699
|
+
</p>
|
2700
|
+
</form>
|
2701
|
+
</div>
|
2702
|
+
</article>
|
2703
|
+
<article class='element' id='fieldset'>
|
2704
|
+
<h2 class='element-title'>
|
2705
|
+
<a href='http://developers.whatwg.org/forms.html#the-fieldset-element'>fieldset</a>
|
2706
|
+
</h2>
|
2707
|
+
<div class='markup'>
|
2708
|
+
<fieldset disabled='' name='clubfields'>
|
2709
|
+
<legend>
|
2710
|
+
<label>
|
2711
|
+
<input name='club' onchange='form.clubfields.disabled = !checked' type='checkbox'>
|
2712
|
+
Use Club Card
|
2713
|
+
</input>
|
2714
|
+
</label>
|
2715
|
+
</legend>
|
2716
|
+
<p>
|
2717
|
+
<label>
|
2718
|
+
Name on card:
|
2719
|
+
<input name='clubname' required='' />
|
2720
|
+
</label>
|
2721
|
+
</p>
|
2722
|
+
<p>
|
2723
|
+
<label>
|
2724
|
+
Card number:
|
2725
|
+
<input name='clubnum' pattern='[-0-9]+' required='' />
|
2726
|
+
</label>
|
2727
|
+
</p>
|
2728
|
+
<p>
|
2729
|
+
<label>
|
2730
|
+
Expiry date:
|
2731
|
+
<input name='clubexp' type='month' />
|
2732
|
+
</label>
|
2733
|
+
</p>
|
2734
|
+
</fieldset>
|
2735
|
+
</div>
|
2736
|
+
<div class='markup'>
|
2737
|
+
<fieldset disabled='' name='clubfields'>
|
2738
|
+
<legend>
|
2739
|
+
<label>
|
2740
|
+
<input name='club' onchange='form.clubfields.disabled = !checked' type='checkbox'>
|
2741
|
+
Use Club Card
|
2742
|
+
</input>
|
2743
|
+
</label>
|
2744
|
+
</legend>
|
2745
|
+
<p>
|
2746
|
+
<label>
|
2747
|
+
Name on card:
|
2748
|
+
<input name='clubname' required='' />
|
2749
|
+
</label>
|
2750
|
+
</p>
|
2751
|
+
<fieldset name='numfields'>
|
2752
|
+
<legend>
|
2753
|
+
<label>
|
2754
|
+
<input checked='' name='clubtype' onchange='form.numfields.disabled = !checked' type='radio'>
|
2755
|
+
My card has numbers on it
|
2756
|
+
</input>
|
2757
|
+
</label>
|
2758
|
+
</legend>
|
2759
|
+
<p>
|
2760
|
+
<label>
|
2761
|
+
Card number:
|
2762
|
+
<input name='clubnum' pattern='[-0-9]+' required='' />
|
2763
|
+
</label>
|
2764
|
+
</p>
|
2765
|
+
</fieldset>
|
2766
|
+
<fieldset disabled='' name='letfields'>
|
2767
|
+
<legend>
|
2768
|
+
<label>
|
2769
|
+
<input name='clubtype' onchange='form.letfields.disabled = !checked' type='radio'>
|
2770
|
+
My card has letters on it
|
2771
|
+
</input>
|
2772
|
+
</label>
|
2773
|
+
</legend>
|
2774
|
+
<p>
|
2775
|
+
<label>
|
2776
|
+
Card code:
|
2777
|
+
<input name='clublet' pattern='[A-Za-z]+' required='' />
|
2778
|
+
</label>
|
2779
|
+
</p>
|
2780
|
+
</fieldset>
|
2781
|
+
</fieldset>
|
2782
|
+
</div>
|
2783
|
+
</article>
|
2784
|
+
<article class='element' id='label'>
|
2785
|
+
<h2 class='element-title'>
|
2786
|
+
<a href='http://developers.whatwg.org/forms.html#the-label-element'>label</a>
|
2787
|
+
</h2>
|
2788
|
+
<div class='markup'>
|
2789
|
+
<p>
|
2790
|
+
<label>
|
2791
|
+
Full name:
|
2792
|
+
<input name='fn'>
|
2793
|
+
<small>Format: First Last</small>
|
2794
|
+
</input>
|
2795
|
+
</label>
|
2796
|
+
</p>
|
2797
|
+
<p>
|
2798
|
+
<label>
|
2799
|
+
Age:
|
2800
|
+
<input min='0' name='age' type='number' />
|
2801
|
+
</label>
|
2802
|
+
</p>
|
2803
|
+
<p>
|
2804
|
+
<label>
|
2805
|
+
Post code:
|
2806
|
+
<input name='pc'>
|
2807
|
+
<small>Format: AB12 3CD</small>
|
2808
|
+
</input>
|
2809
|
+
</label>
|
2810
|
+
</p>
|
2811
|
+
</div>
|
2812
|
+
</article>
|
2813
|
+
</section>
|
2814
|
+
<section class='element-group' id='interactive'>
|
2815
|
+
<h1 class='section-title'>
|
2816
|
+
<a href='http://developers.whatwg.org/interactive-elements.html'>Interactive</a>
|
2817
|
+
</h1>
|
2818
|
+
<article class='element' id='details'>
|
2819
|
+
<h2 class='element-title'>
|
2820
|
+
<a href='http://developers.whatwg.org/interactive-elements.html#the-details-element'>details</a>
|
2821
|
+
</h2>
|
2822
|
+
<p>
|
2823
|
+
The
|
2824
|
+
<code><a href='http://developers.whatwg.org/interactive-elements.html#the-details-element'>details</a></code>
|
2825
|
+
element
|
2826
|
+
<a href='http://developers.whatwg.org/interactive-elements.html#represents'>represents</a>
|
2827
|
+
a
|
2828
|
+
disclosure widget from which the user can obtain additional
|
2829
|
+
information or controls.
|
2830
|
+
</p>
|
2831
|
+
<div class='markup'>
|
2832
|
+
<section class='progress window'>
|
2833
|
+
<h1>Copying "Really Achieving Your Childhood Dreams"</h1>
|
2834
|
+
<details>
|
2835
|
+
<summary>
|
2836
|
+
Copying...
|
2837
|
+
<progress max='375505392' value='97543282'></progress>
|
2838
|
+
25%
|
2839
|
+
</summary>
|
2840
|
+
<dl>
|
2841
|
+
<dt>Transfer rate:</dt>
|
2842
|
+
<dd>452KB/s</dd>
|
2843
|
+
<dt>Local filename:</dt>
|
2844
|
+
<dd>/home/rpausch/raycd.m4v</dd>
|
2845
|
+
<dt>Remote filename:</dt>
|
2846
|
+
<dd>/var/www/lectures/raycd.m4v</dd>
|
2847
|
+
<dt>Duration:</dt>
|
2848
|
+
<dd>01:16:27</dd>
|
2849
|
+
<dt>Color profile:</dt>
|
2850
|
+
<dd>SD (6-1-6)</dd>
|
2851
|
+
<dt>Dimensions:</dt>
|
2852
|
+
<dd>320×240</dd>
|
2853
|
+
</dl>
|
2854
|
+
</details>
|
2855
|
+
</section>
|
2856
|
+
</div>
|
2857
|
+
<div class='markup'>
|
2858
|
+
<details>
|
2859
|
+
<summary>
|
2860
|
+
<label for='fn'>Name & Extension:</label>
|
2861
|
+
</summary>
|
2862
|
+
<p>
|
2863
|
+
<input id='fn' name='fn' type='text' value='Pillar Magazine.pdf'>
|
2864
|
+
<p>
|
2865
|
+
<label>
|
2866
|
+
<input checked='' name='ext' type='checkbox'>Hide extension</input>
|
2867
|
+
</label>
|
2868
|
+
</p>
|
2869
|
+
</input>
|
2870
|
+
</p>
|
2871
|
+
</details>
|
2872
|
+
</div>
|
2873
|
+
</article>
|
2874
|
+
<article class='element' id='menu'>
|
2875
|
+
<h2 class='element-title'>
|
2876
|
+
<a href='http://developers.whatwg.org/interactive-elements.html#menus'>menu</a>
|
2877
|
+
</h2>
|
2878
|
+
<p>
|
2879
|
+
The
|
2880
|
+
<code><a href='http://developers.whatwg.org/interactive-elements.html#menus'>menu</a></code>
|
2881
|
+
element represents a list of commands.
|
2882
|
+
</p>
|
2883
|
+
<div class='markup'>
|
2884
|
+
<menu type='toolbar'>
|
2885
|
+
<li>
|
2886
|
+
<menu label='File'>
|
2887
|
+
<button onclick='fnew()' type='button'>New...</button>
|
2888
|
+
<button onclick='fopen()' type='button'>Open...</button>
|
2889
|
+
<button onclick='fsave()' type='button'>Save</button>
|
2890
|
+
<button onclick='fsaveas()' type='button'>Save as...</button>
|
2891
|
+
</menu>
|
2892
|
+
</li>
|
2893
|
+
<li>
|
2894
|
+
<menu label='Edit'>
|
2895
|
+
<button onclick='ecopy()' type='button'>Copy</button>
|
2896
|
+
<button onclick='ecut()' type='button'>Cut</button>
|
2897
|
+
<button onclick='epaste()' type='button'>Paste</button>
|
2898
|
+
</menu>
|
2899
|
+
</li>
|
2900
|
+
<li>
|
2901
|
+
<menu label='Help'>
|
2902
|
+
<li>
|
2903
|
+
<a href='help.html'>Help</a>
|
2904
|
+
</li>
|
2905
|
+
<li>
|
2906
|
+
<a href='about.html'>About</a>
|
2907
|
+
</li>
|
2908
|
+
</menu>
|
2909
|
+
</li>
|
2910
|
+
</menu>
|
2911
|
+
</div>
|
2912
|
+
<div class='markup'>
|
2913
|
+
<form action=''>
|
2914
|
+
<menu type='toolbar'>
|
2915
|
+
<label for='goto'>Go to...</label>
|
2916
|
+
<menu label='Go'>
|
2917
|
+
<select id='goto'>
|
2918
|
+
<option selected='selected' value=''>Select site:</option>
|
2919
|
+
<option value='http://www.apple.com/'>Apple</option>
|
2920
|
+
<option value='http://www.mozilla.org/'>Mozilla</option>
|
2921
|
+
<option value='http://www.opera.com/'>Opera</option>
|
2922
|
+
</select>
|
2923
|
+
<span>
|
2924
|
+
<input type='submit' value='Go' />
|
2925
|
+
</span>
|
2926
|
+
</menu>
|
2927
|
+
</menu>
|
2928
|
+
</form>
|
2929
|
+
</div>
|
2930
|
+
</article>
|
2931
|
+
</section>
|
2932
|
+
</div>
|
2933
|
+
<footer></footer>
|
2934
|
+
</div>
|
2935
|
+
<!--
|
2936
|
+
Javascript at the bottom for fast page loading
|
2937
|
+
Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if necessary
|
2938
|
+
-->
|
2939
|
+
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.js'></script>
|
2940
|
+
<script type='text/javascript'>
|
2941
|
+
//<![CDATA[
|
2942
|
+
window.jQuery || document.write("<script src='js/libs/jquery-1.6.min.js'>\x3C/script>")
|
2943
|
+
//]]>
|
2944
|
+
</script>
|
2945
|
+
<script src='/js/libs/plugins.js?v=1'></script>
|
2946
|
+
<script src='/js/script.js?v=1'></script>
|
2947
|
+
<script src='/js/kit/kit-source.jquery.js?v=1'></script>
|
2948
|
+
<!-- asynchronous google analytics: mathiasbynens.be/notes/async-analytics-snippet -->
|
2949
|
+
<!-- change the UA-XXXXX-X to be your site's ID -->
|
2950
|
+
<script type='text/javascript'>
|
2951
|
+
//<![CDATA[
|
2952
|
+
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"],["_trackPageLoadTime"]];
|
2953
|
+
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
|
2954
|
+
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
|
2955
|
+
s.parentNode.insertBefore(g,s)}(document,"script"));
|
2956
|
+
//]]>
|
2957
|
+
</script>
|
2958
|
+
</body>
|
2959
|
+
</html>
|