├── .gitignore ├── README.md ├── VERSIONS.md ├── acknowledgement.html ├── build ├── README.txt ├── build.xml └── yuicompressor-2.4.jar ├── css ├── aviz-print.css ├── aviz.css ├── aviz.ico ├── button.css ├── fan-of-mike-style.css └── style.css ├── documentation ├── index.html ├── streamClock.html ├── token.attr.html ├── token.html ├── token.selectAll.html └── workshop.md ├── examples ├── controls │ ├── StreamPlayer-1.1 │ │ ├── css │ │ │ └── streamPlayer.css │ │ ├── img │ │ │ ├── fb.png │ │ │ ├── ff.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── prev.png │ │ │ └── stop.png │ │ └── streamPlayer.js │ ├── barChartControls.html │ ├── tweetStreamPlayer.html │ └── tweets.json ├── demos.css ├── examples ├── flickrColor │ ├── _vs.chart.heapchart.js │ └── flickr_color.html ├── index.html ├── lib │ ├── jquery-ui-1.8.18.custom │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui-1.8.18.custom.css │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── jquery-ui-1.8.18.custom.min.js │ ├── jquery-ui │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui-1.8.18.custom.css │ │ ├── development-bundle │ │ │ ├── AUTHORS.txt │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── hoverintent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── addClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── animate │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── button │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ ├── modal-message.html │ │ │ │ │ └── modal.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── shopping-cart.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ └── index.html │ │ │ │ ├── hide │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── resize.html │ │ │ │ ├── removeClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── show │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── side-scroll.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ ├── steps.html │ │ │ │ │ └── tabs.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── switchClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── cookie.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── toggle │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ └── toggleClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── docs │ │ │ │ ├── accordion.html │ │ │ │ ├── addClass.html │ │ │ │ ├── animate.html │ │ │ │ ├── autocomplete.html │ │ │ │ ├── button.html │ │ │ │ ├── datepicker.html │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── droppable.html │ │ │ │ ├── effect.html │ │ │ │ ├── hide.html │ │ │ │ ├── position.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── removeClass.html │ │ │ │ ├── resizable.html │ │ │ │ ├── selectable.html │ │ │ │ ├── show.html │ │ │ │ ├── slider.html │ │ │ │ ├── sortable.html │ │ │ │ ├── switchClass.html │ │ │ │ ├── tabs.html │ │ │ │ ├── toggle.html │ │ │ │ └── toggleClass.html │ │ │ ├── external │ │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── themes │ │ │ │ ├── base │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ └── jquery.ui.theme.css │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui-1.8.18.custom.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── ui │ │ │ │ ├── i18n │ │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── jquery-ui-1.8.18.custom.js │ │ │ │ ├── jquery.effects.blind.js │ │ │ │ ├── jquery.effects.bounce.js │ │ │ │ ├── jquery.effects.clip.js │ │ │ │ ├── jquery.effects.core.js │ │ │ │ ├── jquery.effects.drop.js │ │ │ │ ├── jquery.effects.explode.js │ │ │ │ ├── jquery.effects.fade.js │ │ │ │ ├── jquery.effects.fold.js │ │ │ │ ├── jquery.effects.highlight.js │ │ │ │ ├── jquery.effects.pulsate.js │ │ │ │ ├── jquery.effects.scale.js │ │ │ │ ├── jquery.effects.shake.js │ │ │ │ ├── jquery.effects.slide.js │ │ │ │ ├── jquery.effects.transfer.js │ │ │ │ ├── jquery.ui.accordion.js │ │ │ │ ├── jquery.ui.autocomplete.js │ │ │ │ ├── jquery.ui.button.js │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── jquery.ui.datepicker.js │ │ │ │ ├── jquery.ui.dialog.js │ │ │ │ ├── jquery.ui.draggable.js │ │ │ │ ├── jquery.ui.droppable.js │ │ │ │ ├── jquery.ui.mouse.js │ │ │ │ ├── jquery.ui.position.js │ │ │ │ ├── jquery.ui.progressbar.js │ │ │ │ ├── jquery.ui.resizable.js │ │ │ │ ├── jquery.ui.selectable.js │ │ │ │ ├── jquery.ui.slider.js │ │ │ │ ├── jquery.ui.sortable.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ └── minified │ │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ │ └── jquery.ui.widget.min.js │ │ │ └── version.txt │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── jquery-ui-1.8.18.custom.min.js │ ├── miniBuffer │ │ ├── dataPlayer.js │ │ ├── miniBuffer.js │ │ └── miniBuffer2.js │ ├── one-color │ │ └── one-color.js │ └── utils.js ├── sediMMS │ ├── barGraph.html │ ├── bg.png │ ├── dataset.php │ ├── datasets.json │ ├── distribMMS.html │ ├── img │ │ ├── allmmstexture.jpg │ │ ├── bluemms.jpg │ │ ├── bluemms20.jpg │ │ ├── bluemmstexture.jpg │ │ ├── brownmms20.jpg │ │ ├── brownmmstexture.jpg │ │ ├── greenmms20.jpg │ │ ├── greenmmstexture.jpg │ │ ├── orangemms20.jpg │ │ ├── orangemmstexture.jpg │ │ ├── redmms.jpg │ │ ├── redmms20.jpg │ │ ├── redmmstexture.jpg │ │ ├── yellowmms20.jpg │ │ └── yellowmmstexture.jpg │ ├── index.css │ ├── jquery.csv-0.71.js │ ├── jquery.tweet.css │ ├── jquery.tweet.js │ ├── mms.json │ ├── sediMMS.css │ ├── sediMMS.html │ ├── sediMMS.js │ ├── simple_tweet.html │ ├── testGoogleDoc.html │ ├── tweet_reader.js │ ├── tweet_reader_slide.js │ ├── twitterfeed.css │ └── twitterfeed.js ├── sediclock │ ├── flocculationminute.js │ ├── sediclock.html │ ├── sediclock.js │ ├── tokensecond.js │ └── tutorial.html ├── sedivn │ ├── anonym_xml.html │ ├── chart_distribution.js │ ├── chart_legends.js │ ├── chart_sedivn.js │ ├── datasets │ │ └── aviz-svn-infovis12-anonym.xml │ ├── sedivn.css │ ├── sedivn.html │ ├── sound.js │ ├── sounds │ │ ├── 1000hz.wav │ │ ├── 1250hz.wav │ │ ├── 1500hz.wav │ │ ├── 150hz.wav │ │ ├── 250hz.wav │ │ ├── 500hz.wav │ │ ├── 750hz.wav │ │ └── wintab32dll.txt │ ├── sp500.csv │ ├── sp_doc.html │ ├── stream_player.html │ ├── test_brush.html │ ├── test_sound.html │ └── utils.js ├── simple │ ├── add_token_callback.html │ ├── add_token_force.html │ ├── add_token_manually.html │ ├── add_token_parametrized.html │ ├── add_token_texture.html │ ├── allCharts.html │ ├── barChart.html │ ├── barChartData.html │ ├── barChartData_NM_empty.html │ ├── barChartData_NM_strata_3default.html │ ├── barChartData_NM_strata_function.html │ ├── barChartData_NM_strata_value.html │ ├── barChart_basic_strata.html │ ├── barChart_default_strata.html │ ├── barChart_function_strata.html │ ├── barChart_init_strata.html │ ├── barChart_invertStrata.html │ ├── barChart_move_bounderies.html │ ├── barChart_no_strata.html │ ├── barChart_update.html │ ├── blankProject.html │ ├── bubbleChart.html │ ├── custom_layout │ │ ├── _vs.chart.balance.js │ │ ├── _vs.chart.bigbin.js │ │ ├── _vs.chart.circlelayoutless.js │ │ ├── _vs.chart.drop.js │ │ ├── _vs.chart.heapchart.js │ │ ├── _vs.chart.linechart.js │ │ ├── _vs.chart.sylochart.js │ │ ├── _vs.chart.typo.js │ │ ├── custom_layout.html │ │ ├── custom_layout_balance.html │ │ ├── custom_layout_bigbin.html │ │ ├── custom_layout_drop.html │ │ ├── custom_layout_line.html │ │ ├── custom_layout_sylo.html │ │ ├── custom_layout_typo.html │ │ └── pieChart_without_bounderies.html │ ├── dragDrop.html │ ├── flocculate_token.html │ ├── helloWorld.html │ ├── img │ │ └── ball.png │ ├── mapping_token_to_dom.html │ ├── pieChart.html │ ├── select_token.html │ ├── select_token_and_change_it.html │ └── viewport_chart.html ├── wikipedia │ ├── compare.html │ ├── index.html │ ├── index2.html │ ├── test.html │ └── test2.html └── worldometers │ ├── RTSp.js │ ├── birth-death.html │ ├── exportInfos.js │ ├── img │ ├── bike-weel.png │ ├── car.png │ └── computer.png │ ├── index.html │ ├── index.js │ ├── medias.html │ ├── truc.js │ └── utils.js ├── img ├── Towards-Visual-sedimentation.png ├── barchart.png ├── blobchart.png ├── bubblechart.png ├── bubblet.png ├── bubbletv.png ├── corner.png ├── dropChart.png ├── football.gif ├── isocontour.png ├── loading.gif ├── loadingAnimation.gif ├── metaphor.png ├── natural-sedimentation.png ├── overchart.png ├── physical-and-visual-sedimentation.png ├── pmw_sediviz_UpChart.png ├── pmw_sediviz_blobChart.png ├── pmw_sediviz_blobChart.psd ├── pmw_sediviz_bubblet.png ├── pmw_sediviz_bubbletv.png ├── pmw_sediviz_corner.png ├── pmw_sediviz_dropChart.png ├── pmw_sediviz_isocontour.png ├── pmw_sediviz_metaphor.png ├── pmw_sediviz_overchart.png ├── pmw_sediviz_process.png ├── pmw_sediviz_silochart.png ├── pmw_sediviz_spiral.png ├── pmw_sediviz_strataAlign.png ├── pmw_sediviz_strataAlign2.png ├── pmw_sediviz_transitions.png ├── pmw_structure.png ├── process.png ├── rocks │ ├── layer_0.png │ ├── layer_1.png │ ├── layer_10.png │ ├── layer_11.png │ ├── layer_12.png │ ├── layer_13.png │ ├── layer_14.png │ ├── layer_15.png │ ├── layer_16.png │ ├── layer_17.png │ ├── layer_18.png │ ├── layer_19.png │ ├── layer_2.png │ ├── layer_3.png │ ├── layer_4.png │ ├── layer_5.png │ ├── layer_6.png │ ├── layer_7.png │ ├── layer_8.png │ └── layer_9.png ├── sediviz-bubble.png ├── sediviz-histogram.png ├── sediviz-physical-visual-metaphor.png ├── sediviz-piechart.png ├── silochart.png ├── spiral.png ├── strataAlign.png ├── strataAlign2.png ├── streamClock.png ├── teaser.png ├── token1.png ├── tokenExemple1.png ├── transitions.png ├── upchart.png └── viewport.png ├── index.html ├── js ├── _VisualSedimentation.js ├── _vs.aggregate.js ├── _vs.barchart.js ├── _vs.chart.circlelayout.js ├── _vs.chart.js ├── _vs.chart.stackedareachart.js ├── _vs.decay.js ├── _vs.draw.js ├── _vs.flocculate.js ├── _vs.hearder.js ├── _vs.js ├── _vs.mouse.js ├── _vs.old.js ├── _vs.phy.js ├── _vs.strata.js ├── _vs.stream.js ├── _vs.token2.js ├── lib │ ├── Box2DWeb │ │ ├── Box2DWeb-2.1.a.3.js │ │ └── Box2DWeb-2.1.a.3.min.js │ ├── StreamPlayer │ │ ├── css │ │ │ └── streamPlayer.css │ │ ├── img │ │ │ └── controls.png │ │ └── streamPlayer.js │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── d3 │ │ └── d3.v2.js │ ├── highlight.v0.min.js │ └── jQuery │ │ └── jquery-1.4.2.min.js ├── min │ └── vs.0.1-min.js └── tweets │ ├── main.js │ ├── podium.js │ ├── tweetsource.js │ └── tweetvote-anim.js ├── license └── index.html └── tests ├── barChart_emptyStrata.html └── barChart_noStrata.html /.gitignore: -------------------------------------------------------------------------------- 1 | OLD 2 | clojure-compiler.jar 3 | .DS_Store 4 | .svn 5 | /js/lib/tweet 6 | /datasets 7 | /build 8 | /examples/pdftribute 9 | /examples/sedimotion 10 | /examples/uselections 11 | /examples/visualeditor 12 | /examples/albertinemeunier 13 | /examples/eloqua-redesign 14 | /examples/donkeyKong 15 | /examples/flickColor 16 | /examples/twitter 17 | /examples/ripple 18 | /examples/slider_time.html 19 | /examples/histogram-chart.js 20 | /examples/wikipedia 21 | /examples/worldometers/exportInfos.js 22 | /examples/worldometers/index.js 23 | /examples/worldometers/RTSp.js 24 | /examples/worldometers/utils.js 25 | 26 | /OLD 27 | /latest 28 | /documentation/todo.doc.html 29 | /dev 30 | -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- 1 | VisualSedimentation Versions 2 | =================== 3 | 4 | This file report modifications and features additions arround versions. 5 | 6 | ## v0.01 7 | 8 | * ADD Seminal commit. 9 | 10 | ## v0.02 11 | 12 | * ADD stratas object. 13 | * ADD mouse interactions (over and click on tokens). 14 | 15 | ## v0.03 16 | 17 | * ADD Roll Out on tokens 18 | * ADD Stratas Alignements 19 | * ADD new exemples : stackoverflow, sedivn, sedimms, wikipedia(not finish) 20 | * ADD slides tutorials 21 | 22 | ## Next version 23 | 24 | * 25 | -------------------------------------------------------------------------------- /build/README.txt: -------------------------------------------------------------------------------- 1 | How to concat and minify the visual Sedimentation library : 2 | 3 | 1. To Build you need to install ant : http://ant.apache.org/ 4 | 2. After you just have to execute "ant" inside this this repository -------------------------------------------------------------------------------- /build/yuicompressor-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/build/yuicompressor-2.4.jar -------------------------------------------------------------------------------- /css/aviz-print.css: -------------------------------------------------------------------------------- 1 | # These are a few modifications to aviz.css for the printing media 2 | body { 3 | background-color: white; 4 | margin-left: 10px; 5 | margin-right: 10px; 6 | margin-top: 0px; 7 | margin-bottom: 0px; 8 | } 9 | body { 10 | font-size: 86%; 11 | } 12 | h1 { 13 | font-size: 220%; 14 | } 15 | h2 { 16 | font-size: 130%; 17 | padding: 0px 0px 0px 2px; 18 | background-color: white; 19 | border-bottom-style: solid; 20 | border-bottom-style: #000000; 21 | border-bottom-width: 2px; 22 | } 23 | .note { 24 | border-color: black; 25 | border-left-width: 1px; 26 | } 27 | a { 28 | color: black; 29 | text-decoration: none; 30 | font-weight: bold; 31 | } 32 | img { 33 | border-style: none; 34 | } 35 | -------------------------------------------------------------------------------- /css/aviz.css: -------------------------------------------------------------------------------- 1 | # Note: The AVIZ logo's color theme is #93b3b3 or RGB (147, 179, 179) 2 | # The web page background color is #fafafa or RGB (250, 250, 250) 3 | body {} 4 | body, p, a, td, h1, h2, h3, h4, h5, h6 { 5 | font-family: arial, sans-serif; 6 | text-align: justify; 7 | } 8 | body, td { 9 | background-color: #fafafa; 10 | font-size: 96%; 11 | margin-left: 40px; 12 | margin-right: 45px; 13 | margin-top: 20px; 14 | margin-bottom: 40px; 15 | } 16 | .logo { 17 | margin-left: -20px; 18 | } 19 | .titlelogo { 20 | margin-left: -20px; 21 | margin-right: 15px; 22 | border-style: none; 23 | } 24 | .note { 25 | font-size: 85%; 26 | padding: 10px 10px 10px 10px; 27 | border-style: solid; 28 | border-color: #d2e0e0; 29 | border-width: 0; 30 | border-left-width: 5px; 31 | } 32 | h1 { 33 | font-size: 260%; 34 | color: #93b3b3; 35 | margin-left: -5px; 36 | margin-right: -5px; 37 | } 38 | h2 { 39 | font-size: 120%; 40 | padding: 2px 0px 2px 10px; 41 | background-color: #c3d7d7; 42 | margin-left: -5px; 43 | margin-right: -5px; 44 | } 45 | td { 46 | padding: 5px 10px 5px 0px; 47 | } 48 | -------------------------------------------------------------------------------- /css/aviz.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/css/aviz.ico -------------------------------------------------------------------------------- /css/button.css: -------------------------------------------------------------------------------- 1 | button { 2 | font: 14px Helvetica Neue; 3 | background-color: #222; 4 | background-image: -moz-linear-gradient(top, rgba(255,255,255,.25), rgba(255,255,255,.11)); 5 | background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, rgba(255,255,255,.25)),color-stop(1, rgba(255,255,255,.11))); 6 | background-image: -webkit-linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.11)); 7 | color: #fff; 8 | text-rendering: optimizeLegibility; 9 | text-shadow: 0 -1px 1px #222; 10 | padding: 6px 10px 6px 10px; 11 | border: 0; 12 | border-radius: 0; 13 | border-bottom: 1px solid #222; 14 | margin: 0; 15 | -moz-box-shadow: 0 1px 3px #999; 16 | -webkit-box-shadow: 0 1px 3px #999; 17 | } 18 | 19 | button.first { 20 | border-top-left-radius: 5px; 21 | border-bottom-left-radius: 5px; 22 | } 23 | 24 | button.last { 25 | border-top-right-radius: 5px; 26 | border-bottom-right-radius: 5px; 27 | } 28 | 29 | button.active { 30 | background-color: rgb(65,102,133); 31 | } 32 | 33 | button:hover { 34 | background-color: steelblue; 35 | } 36 | -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/fb.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/ff.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/next.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/pause.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/play.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/prev.png -------------------------------------------------------------------------------- /examples/controls/StreamPlayer-1.1/img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/controls/StreamPlayer-1.1/img/stop.png -------------------------------------------------------------------------------- /examples/examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/examples -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui-1.8.18.custom/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | jQuery UI Authors (http://jqueryui.com/about) 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | and logs, available at http://github.com/jquery/jquery-ui 6 | 7 | Brandon Aaron 8 | Paul Bakaus (paulbakaus.com) 9 | David Bolter 10 | Rich Caloggero 11 | Chi Cheng (cloudream@gmail.com) 12 | Colin Clark (http://colin.atrc.utoronto.ca/) 13 | Michelle D'Souza 14 | Aaron Eisenberger (aaronchi@gmail.com) 15 | Ariel Flesler 16 | Bohdan Ganicky 17 | Scott González 18 | Marc Grabanski (m@marcgrabanski.com) 19 | Klaus Hartl (stilbuero.de) 20 | Scott Jehl 21 | Cody Lindley 22 | Eduardo Lundgren (eduardolundgren@gmail.com) 23 | Todd Parker 24 | John Resig 25 | Patty Toland 26 | Ca-Phun Ung (yelotofu.com) 27 | Keith Wood (kbwood@virginbroadband.com.au) 28 | Maggie Costello Wachs 29 | Richard D. Worth (rdworth.org) 30 | Jörn Zaefferer (bassistance.de) 31 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Demos 6 | 7 | 8 | 9 |
10 |

Examples

11 | 25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/button/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | An anchor 28 | 29 |
30 | 31 | 32 | 33 |
34 |

Examples of the markup that can be used for buttons: A button element, an input of type submit and an anchor.

35 |
36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/button/radio.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button - Radios 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 |
23 |
24 | 25 | 26 | 27 |
28 |
29 | 30 |
31 | 32 | 33 | 34 |
35 |

A set of three radio buttons transformed into a button set.

36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/buttonbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display button bar 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |

Date:

25 | 26 |
27 | 28 | 29 | 30 |
31 |

Display a button for selecting Today's date and a Done button for closing the calendar with the boolean showButtonPanel option. Each button is enabled by default when the bar is displayed, but can be turned off with additional options. Button text is customizable.

32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 |

Date:

23 | 24 |
25 | 26 | 27 | 28 |
29 |

The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value.

30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/dropdown-month-year.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display month & year menus 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

Show month and year dropdowns in place of the static month/year header to facilitate navigation through large timeframes. Add the boolean changeMonth and changeYear options.

33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Icon trigger 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 23 | 24 |
25 | 26 |

Date:

27 | 28 |
29 | 30 | 31 | 32 |
33 |

Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display inline 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 | Date:
23 | 24 |
25 | 26 | 27 | 28 |
29 |

Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.

30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display multiple months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Dates in other months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

The datepicker can show dates that come from other than the main month 33 | being displayed. These other dates can also be made selectable.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/datepicker/show-week.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Show week of the year 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

The datepicker can show the week of the year. The default calculation follows 33 | the ISO 8601 definition: the week starts on Monday, the first week of the year 34 | contains the first Thursday of the year. This means that some days from one 35 | year may be placed into weeks 'belonging' to another year.

36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/draggable/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 21 | 22 | 23 | 24 |
25 | 26 |
27 |

Drag me around

28 |
29 | 30 |
31 | 32 | 33 | 34 |
35 |

Enable draggable functionality on any DOM element. Move the draggable object by clicking on it with the mouse and dragging it anywhere within the viewport.

36 |
37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/progressbar/animated.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Animated 6 | 7 | 8 | 9 | 10 | 11 | 12 | 15 | 22 | 23 | 24 | 25 |
26 | 27 |
28 | 29 |
30 | 31 | 32 | 33 |
34 |

35 | This progressbar has an animated fill by setting the 36 | background-image 37 | on the 38 | .ui-progressbar-value 39 | element, using css. 40 |

41 |
42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 |
31 |

Default determinate progress bar.

32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/resizable/textarea.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Textarea 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 32 |
33 | 34 | 35 | 36 |
37 |

Display only an outline of the element while resizing by setting the helper option to a CSS class.

38 |
39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 |
33 |

The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Accordion#theming 9 | */ 10 | /* IE/Win - Fix animation bug - #4615 */ 11 | .ui-accordion { width: 100%; } 12 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 13 | .ui-accordion .ui-accordion-li-fix { display: inline; } 14 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 15 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 16 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 17 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 18 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 19 | .ui-accordion .ui-accordion-content-active { display: block; } 20 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Slider#theming 9 | */ 10 | .ui-slider { position: relative; text-align: left; } 11 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 12 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 13 | 14 | .ui-slider-horizontal { height: .8em; } 15 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 16 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 17 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 18 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 19 | 20 | .ui-slider-vertical { width: .8em; height: 100px; } 21 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 22 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 23 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 24 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- 1 | /* Afrikaans initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Renier Pretorius. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['af'] = { 5 | closeText: 'Selekteer', 6 | prevText: 'Vorige', 7 | nextText: 'Volgende', 8 | currentText: 'Vandag', 9 | monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie', 10 | 'Julie','Augustus','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 13 | dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 14 | dayNamesShort: ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], 15 | dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['af']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- 1 | /* Algerian Arabic Translation for jQuery UI date picker plugin. (can be used for Tunisia)*/ 2 | /* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['ar-DZ'] = { 6 | closeText: 'إغلاق', 7 | prevText: '<السابق', 8 | nextText: 'التالي>', 9 | currentText: 'اليوم', 10 | monthNames: ['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان', 11 | 'جويلية', 'أوت', 'سبتمبر','أكتوبر', 'نوفمبر', 'ديسمبر'], 12 | monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 13 | dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 14 | dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 15 | dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 16 | weekHeader: 'أسبوع', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ar-DZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- 1 | /* Arabic Translation for jQuery UI date picker plugin. */ 2 | /* Khaled Alhourani -- me@khaledalhourani.com */ 3 | /* NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */ 4 | jQuery(function($){ 5 | $.datepicker.regional['ar'] = { 6 | closeText: 'إغلاق', 7 | prevText: '<السابق', 8 | nextText: 'التالي>', 9 | currentText: 'اليوم', 10 | monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'مايو', 'حزيران', 11 | 'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'], 12 | monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 13 | dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 14 | dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 15 | dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 16 | weekHeader: 'أسبوع', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ar']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- 1 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jamil Najafov (necefov33@gmail.com). */ 3 | jQuery(function($) { 4 | $.datepicker.regional['az'] = { 5 | closeText: 'Bağla', 6 | prevText: '<Geri', 7 | nextText: 'İrəli>', 8 | currentText: 'Bugün', 9 | monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun', 10 | 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'], 11 | monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun', 12 | 'İyul','Avq','Sen','Okt','Noy','Dek'], 13 | dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'], 14 | dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'], 15 | dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['az']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- 1 | /* Bulgarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stoyan Kyosev (http://svest.org). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bg'] = { 5 | closeText: 'затвори', 6 | prevText: '<назад', 7 | nextText: 'напред>', 8 | nextBigText: '>>', 9 | currentText: 'днес', 10 | monthNames: ['Януари','Февруари','Март','Април','Май','Юни', 11 | 'Юли','Август','Септември','Октомври','Ноември','Декември'], 12 | monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни', 13 | 'Юли','Авг','Сеп','Окт','Нов','Дек'], 14 | dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'], 15 | dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'], 16 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'], 17 | weekHeader: 'Wk', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['bg']); 24 | }); 25 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tancar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Avui', 9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', 10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Oct','Nov','Des'], 13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], 14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], 15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- 1 | /* Czech initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Tomas Muller (tomas@tomas-muller.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cs'] = { 5 | closeText: 'Zavřít', 6 | prevText: '<Dříve', 7 | nextText: 'Později>', 8 | currentText: 'Nyní', 9 | monthNames: ['leden','únor','březen','duben','květen','červen', 10 | 'červenec','srpen','září','říjen','listopad','prosinec'], 11 | monthNamesShort: ['led','úno','bře','dub','kvě','čer', 12 | 'čvc','srp','zář','říj','lis','pro'], 13 | dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], 14 | dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], 15 | dayNamesMin: ['ne','po','út','st','čt','pá','so'], 16 | weekHeader: 'Týd', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cs']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- 1 | /* Welsh/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by William Griffiths. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cy-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin', 10 | 'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'], 11 | monthNamesShort: ['Ion', 'Chw', 'Maw', 'Ebr', 'Mai', 'Meh', 12 | 'Gor', 'Aws', 'Med', 'Hyd', 'Tac', 'Rha'], 13 | dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'], 14 | dayNamesShort: ['Sul', 'Llu', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'], 15 | dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'], 16 | weekHeader: 'Wy', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cy-GB']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- 1 | /* Danish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jan Christensen ( deletestuff@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['da'] = { 5 | closeText: 'Luk', 6 | prevText: '<Forrige', 7 | nextText: 'Næste>', 8 | currentText: 'Idag', 9 | monthNames: ['Januar','Februar','Marts','April','Maj','Juni', 10 | 'Juli','August','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 14 | dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 15 | dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 16 | weekHeader: 'Uge', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['da']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- 1 | /* German initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Milian Wolff (mail@milianw.de). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['de'] = { 5 | closeText: 'schließen', 6 | prevText: '<zurück', 7 | nextText: 'Vor>', 8 | currentText: 'heute', 9 | monthNames: ['Januar','Februar','März','April','Mai','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dez'], 13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], 14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], 15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], 16 | weekHeader: 'Wo', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- 1 | /* Greek (el) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Alex Cicovic (http://www.alexcicovic.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['el'] = { 5 | closeText: 'Κλείσιμο', 6 | prevText: 'Προηγούμενος', 7 | nextText: 'Επόμενος', 8 | currentText: 'Τρέχων Μήνας', 9 | monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος', 10 | 'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'], 11 | monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν', 12 | 'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'], 13 | dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'], 14 | dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'], 15 | dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'], 16 | weekHeader: 'Εβδ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['el']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- 1 | /* English/Australia initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-AU'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-AU']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- 1 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stuart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- 1 | /* English/New Zealand initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-NZ'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-NZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- 1 | /* Esperanto initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Olivier M. (olivierweb@ifrance.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eo'] = { 5 | closeText: 'Fermi', 6 | prevText: '<Anta', 7 | nextText: 'Sekv>', 8 | currentText: 'Nuna', 9 | monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio', 10 | 'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aŭg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'], 16 | weekHeader: 'Sb', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eo']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- 1 | /* Inicialización en español para la extensión 'UI date picker' para jQuery. */ 2 | /* Traducido por Vester (xvester@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['es'] = { 5 | closeText: 'Cerrar', 6 | prevText: '<Ant', 7 | nextText: 'Sig>', 8 | currentText: 'Hoy', 9 | monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', 10 | 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], 11 | monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', 12 | 'Jul','Ago','Sep','Oct','Nov','Dic'], 13 | dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['es']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- 1 | /* Estonian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mart Sõmermaa (mrts.pydev at gmail com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['et'] = { 5 | closeText: 'Sulge', 6 | prevText: 'Eelnev', 7 | nextText: 'Järgnev', 8 | currentText: 'Täna', 9 | monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni', 10 | 'Juuli','August','September','Oktoober','November','Detsember'], 11 | monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni', 12 | 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'], 13 | dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'], 14 | dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'], 15 | dayNamesMin: ['P','E','T','K','N','R','L'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['et']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- 1 | /* Euskarako oinarria 'UI date picker' jquery-ko extentsioarentzat */ 2 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eu'] = { 5 | closeText: 'Egina', 6 | prevText: '<Aur', 7 | nextText: 'Hur>', 8 | currentText: 'Gaur', 9 | monthNames: ['Urtarrila','Otsaila','Martxoa','Apirila','Maiatza','Ekaina', 10 | 'Uztaila','Abuztua','Iraila','Urria','Azaroa','Abendua'], 11 | monthNamesShort: ['Urt','Ots','Mar','Api','Mai','Eka', 12 | 'Uzt','Abu','Ira','Urr','Aza','Abe'], 13 | dayNames: ['Igandea','Astelehena','Asteartea','Asteazkena','Osteguna','Ostirala','Larunbata'], 14 | dayNamesShort: ['Iga','Ast','Ast','Ast','Ost','Ost','Lar'], 15 | dayNamesMin: ['Ig','As','As','As','Os','Os','La'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eu']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- 1 | /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */ 2 | /* Javad Mowlanezhad -- jmowla@gmail.com */ 3 | /* Jalali calendar should supported soon! (Its implemented but I have to test it) */ 4 | jQuery(function($) { 5 | $.datepicker.regional['fa'] = { 6 | closeText: 'بستن', 7 | prevText: '<قبلي', 8 | nextText: 'بعدي>', 9 | currentText: 'امروز', 10 | monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور', 11 | 'مهر','آبان','آذر','دي','بهمن','اسفند'], 12 | monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'], 13 | dayNames: ['يکشنبه','دوشنبه','سه‌شنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'], 14 | dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'], 15 | dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'], 16 | weekHeader: 'هف', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fa']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- 1 | /* Finnish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Harri Kilpi� (harrikilpio@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fi'] = { 5 | closeText: 'Sulje', 6 | prevText: '«Edellinen', 7 | nextText: 'Seuraava»', 8 | currentText: 'Tänään', 9 | monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu', 10 | 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'], 11 | monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä', 12 | 'Heinä','Elo','Syys','Loka','Marras','Joulu'], 13 | dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'], 14 | dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'], 15 | dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fi']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- 1 | /* Faroese initialisation for the jQuery UI date picker plugin */ 2 | /* Written by Sverri Mohr Olsen, sverrimo@gmail.com */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fo'] = { 5 | closeText: 'Lat aftur', 6 | prevText: '<Fyrra', 7 | nextText: 'Næsta>', 8 | currentText: 'Í dag', 9 | monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni', 10 | 'Juli','August','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Des'], 13 | dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'], 14 | dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'], 15 | dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fo']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- 1 | /* Swiss-French initialisation for the jQuery UI date picker plugin. */ 2 | /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fr-CH'] = { 5 | closeText: 'Fermer', 6 | prevText: '<Préc', 7 | nextText: 'Suiv>', 8 | currentText: 'Courant', 9 | monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', 10 | 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], 11 | monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', 12 | 'Jul','Aoû','Sep','Oct','Nov','Déc'], 13 | dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fr-CH']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- 1 | /* French initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Keith Wood (kbwood{at}iinet.com.au), 3 | Stéphane Nahmani (sholby@sholby.net), 4 | Stéphane Raimbault */ 5 | jQuery(function($){ 6 | $.datepicker.regional['fr'] = { 7 | closeText: 'Fermer', 8 | prevText: 'Précédent', 9 | nextText: 'Suivant', 10 | currentText: 'Aujourd\'hui', 11 | monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', 12 | 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], 13 | monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin', 14 | 'Juil.','Août','Sept.','Oct.','Nov.','Déc.'], 15 | dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], 16 | dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'], 17 | dayNamesMin: ['D','L','M','M','J','V','S'], 18 | weekHeader: 'Sem.', 19 | dateFormat: 'dd/mm/yy', 20 | firstDay: 1, 21 | isRTL: false, 22 | showMonthAfterYear: false, 23 | yearSuffix: ''}; 24 | $.datepicker.setDefaults($.datepicker.regional['fr']); 25 | }); 26 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- 1 | /* Galician localization for 'UI date picker' jQuery extension. */ 2 | /* Translated by Jorge Barreiro . */ 3 | jQuery(function($){ 4 | $.datepicker.regional['gl'] = { 5 | closeText: 'Pechar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Hoxe', 9 | monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño', 10 | 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'], 11 | monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ', 12 | 'Xul','Ago','Set','Out','Nov','Dec'], 13 | dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mé','Xo','Ve','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['gl']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני', 12 | 'יולי','אוג','ספט','אוק','נוב','דצמ'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- 1 | /* Hindi initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Michael Dawart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hi'] = { 5 | closeText: 'होकर', 6 | prevText: 'अगला', 7 | nextText: 'नेक्स्ट', 8 | currentText: 'आज', 9 | monthNames: ['जनवरी ','फरवरी','मार्च','अप्रेल','मै','जून', 10 | 'जूलाई','अगस्त ','सितम्बर','आक्टोबर','नवम्बर','दिसम्बर'], 11 | monthNamesShort: ['जन', 'फर', 'मार्च', 'अप्रेल', 'मै', 'जून', 12 | 'जूलाई', 'अग', 'सित', 'आक्ट', 'नव', 'िद'], 13 | dayNames: ['रविवासर', 'सोमवासर', 'मंगलवासर', 'बुधवासर', 'गुरुवासर', 'शुक्रवासर', 'शनिवासर'], 14 | dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], 15 | dayNamesMin: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], 16 | weekHeader: 'हफ्ता', 17 | dateFormat: 'mm/dd/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hi']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- 1 | /* Croatian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Vjekoslav Nesek. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hr'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', 10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], 11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', 12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'], 13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Tje', 17 | dateFormat: 'dd.mm.yy.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hr']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- 1 | /* Hungarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hu'] = { 5 | closeText: 'bezár', 6 | prevText: 'vissza', 7 | nextText: 'előre', 8 | currentText: 'ma', 9 | monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', 10 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', 12 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], 13 | dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], 14 | dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], 15 | dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], 16 | weekHeader: 'Hét', 17 | dateFormat: 'yy.mm.dd.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hu']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- 1 | /* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/ 3 | jQuery(function($){ 4 | $.datepicker.regional['hy'] = { 5 | closeText: 'Փակել', 6 | prevText: '<Նախ.', 7 | nextText: 'Հաջ.>', 8 | currentText: 'Այսօր', 9 | monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս', 10 | 'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'], 11 | monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս', 12 | 'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'], 13 | dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'], 14 | dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 15 | dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 16 | weekHeader: 'ՇԲՏ', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hy']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['id'] = { 5 | closeText: 'Tutup', 6 | prevText: '<mundur', 7 | nextText: 'maju>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni', 10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Agus','Sep','Okt','Nop','Des'], 13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], 14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], 15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['id']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-is.js: -------------------------------------------------------------------------------- 1 | /* Icelandic initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Haukur H. Thorsson (haukur@eskill.is). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['is'] = { 5 | closeText: 'Loka', 6 | prevText: '< Fyrri', 7 | nextText: 'Næsti >', 8 | currentText: 'Í dag', 9 | monthNames: ['Janúar','Febrúar','Mars','Apríl','Maí','Júní', 10 | 'Júlí','Ágúst','September','Október','Nóvember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maí','Jún', 12 | 'Júl','Ágú','Sep','Okt','Nóv','Des'], 13 | dayNames: ['Sunnudagur','Mánudagur','Þriðjudagur','Miðvikudagur','Fimmtudagur','Föstudagur','Laugardagur'], 14 | dayNamesShort: ['Sun','Mán','Þri','Mið','Fim','Fös','Lau'], 15 | dayNamesMin: ['Su','Má','Þr','Mi','Fi','Fö','La'], 16 | weekHeader: 'Vika', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['is']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- 1 | /* Italian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Antonello Pasella (antonello.pasella@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['it'] = { 5 | closeText: 'Chiudi', 6 | prevText: '<Prec', 7 | nextText: 'Succ>', 8 | currentText: 'Oggi', 9 | monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', 10 | 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', 12 | 'Lug','Ago','Set','Ott','Nov','Dic'], 13 | dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], 15 | dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['it']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js: -------------------------------------------------------------------------------- 1 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['kk'] = { 5 | closeText: 'Жабу', 6 | prevText: '<Алдыңғы', 7 | nextText: 'Келесі>', 8 | currentText: 'Бүгін', 9 | monthNames: ['Қаңтар','Ақпан','Наурыз','Сәуір','Мамыр','Маусым', 10 | 'Шілде','Тамыз','Қыркүйек','Қазан','Қараша','Желтоқсан'], 11 | monthNamesShort: ['Қаң','Ақп','Нау','Сәу','Мам','Мау', 12 | 'Шіл','Там','Қыр','Қаз','Қар','Жел'], 13 | dayNames: ['Жексенбі','Дүйсенбі','Сейсенбі','Сәрсенбі','Бейсенбі','Жұма','Сенбі'], 14 | dayNamesShort: ['жкс','дсн','ссн','срс','бсн','жма','снб'], 15 | dayNamesMin: ['Жк','Дс','Сс','Ср','Бс','Жм','Сн'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['kk']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- 1 | /* Khmer initialisation for the jQuery calendar extension. */ 2 | /* Written by Chandara Om (chandara.teacher@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['km'] = { 5 | closeText: 'ធ្វើ​រួច', 6 | prevText: 'មុន', 7 | nextText: 'បន្ទាប់', 8 | currentText: 'ថ្ងៃ​នេះ', 9 | monthNames: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា', 10 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'], 11 | monthNamesShort: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា', 12 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'], 13 | dayNames: ['អាទិត្យ', 'ចន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'], 14 | dayNamesShort: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'], 15 | dayNamesMin: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'], 16 | weekHeader: 'សប្ដាហ៍', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['km']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월','2월','3월','4월','5월','6월', 10 | '7월','8월','9월','10월','11월','12월'], 11 | monthNamesShort: ['1월','2월','3월','4월','5월','6월', 12 | '7월','8월','9월','10월','11월','12월'], 13 | dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js: -------------------------------------------------------------------------------- 1 | /* Luxembourgish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Michel Weimerskirch */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lb'] = { 5 | closeText: 'Fäerdeg', 6 | prevText: 'Zréck', 7 | nextText: 'Weider', 8 | currentText: 'Haut', 9 | monthNames: ['Januar','Februar','Mäerz','Abrëll','Mee','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 13 | dayNames: ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'], 14 | dayNamesShort: ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'], 15 | dayNamesMin: ['So','Mé','Dë','Më','Do','Fr','Sa'], 16 | weekHeader: 'W', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lb']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- 1 | /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lt'] = { 5 | closeText: 'Uždaryti', 6 | prevText: '<Atgal', 7 | nextText: 'Pirmyn>', 8 | currentText: 'Šiandien', 9 | monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis', 10 | 'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'], 11 | monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir', 12 | 'Lie','Rugp','Rugs','Spa','Lap','Gru'], 13 | dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'], 14 | dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'], 15 | dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lt']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- 1 | /* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lv'] = { 5 | closeText: 'Aizvērt', 6 | prevText: 'Iepr', 7 | nextText: 'Nāka', 8 | currentText: 'Šodien', 9 | monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs', 10 | 'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn', 12 | 'Jūl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'], 14 | dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'], 15 | dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'], 16 | weekHeader: 'Nav', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lv']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- 1 | /* Macedonian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Stojce Slavkovski. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['mk'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Денес', 9 | monthNames: ['Јануари','Фебруари','Март','Април','Мај','Јуни', 10 | 'Јули','Август','Септември','Октомври','Ноември','Декември'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Ное','Дек'], 13 | dayNames: ['Недела','Понеделник','Вторник','Среда','Четврток','Петок','Сабота'], 14 | dayNamesShort: ['Нед','Пон','Вто','Сре','Чет','Пет','Саб'], 15 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['mk']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- 1 | /* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Saji Nediyanchath (saji89@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ml'] = { 5 | closeText: 'ശരി', 6 | prevText: 'മുന്നത്തെ', 7 | nextText: 'അടുത്തത് ', 8 | currentText: 'ഇന്ന്', 9 | monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്‍ച്ച്','ഏപ്രില്‍','മേയ്','ജൂണ്‍', 10 | 'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്‍','ഒക്ടോബര്‍','നവംബര്‍','ഡിസംബര്‍'], 11 | monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍', 12 | 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'], 13 | dayNames: ['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 14 | dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 15 | dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'], 16 | weekHeader: 'ആ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ml']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- 1 | /* Malaysian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ms'] = { 5 | closeText: 'Tutup', 6 | prevText: '<Sebelum', 7 | nextText: 'Selepas>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Mac','April','Mei','Jun', 10 | 'Julai','Ogos','September','Oktober','November','Disember'], 11 | monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun', 12 | 'Jul','Ogo','Sep','Okt','Nov','Dis'], 13 | dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'], 14 | dayNamesShort: ['Aha','Isn','Sel','Rab','kha','Jum','Sab'], 15 | dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ms']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js: -------------------------------------------------------------------------------- 1 | /* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */ 2 | /* David De Sloovere @DavidDeSloovere */ 3 | jQuery(function($){ 4 | $.datepicker.regional['nl-BE'] = { 5 | closeText: 'Sluiten', 6 | prevText: '←', 7 | nextText: '→', 8 | currentText: 'Vandaag', 9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 11 | monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['nl-BE']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- 1 | /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mathias Bynens */ 3 | jQuery(function($){ 4 | $.datepicker.regional.nl = { 5 | closeText: 'Sluiten', 6 | prevText: '←', 7 | nextText: '→', 8 | currentText: 'Vandaag', 9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 11 | monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional.nl); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- 1 | /* Norwegian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Naimdjon Takhirov (naimdjon@gmail.com). */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['no'] = { 6 | closeText: 'Lukk', 7 | prevText: '«Forrige', 8 | nextText: 'Neste»', 9 | currentText: 'I dag', 10 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], 11 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], 12 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'], 13 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'], 14 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'], 15 | weekHeader: 'Uke', 16 | dateFormat: 'dd.mm.yy', 17 | firstDay: 1, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: '' 21 | }; 22 | $.datepicker.setDefaults($.datepicker.regional['no']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- 1 | /* Polish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pl'] = { 5 | closeText: 'Zamknij', 6 | prevText: '<Poprzedni', 7 | nextText: 'Następny>', 8 | currentText: 'Dziś', 9 | monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', 10 | 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'], 11 | monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze', 12 | 'Lip','Sie','Wrz','Pa','Lis','Gru'], 13 | dayNames: ['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota'], 14 | dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'], 15 | dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'], 16 | weekHeader: 'Tydz', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pl']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- 1 | /* Brazilian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Leonildo Costa Silva (leocsilva@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pt-BR'] = { 5 | closeText: 'Fechar', 6 | prevText: '<Anterior', 7 | nextText: 'Próximo>', 8 | currentText: 'Hoje', 9 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 10 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 11 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Out','Nov','Dez'], 13 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 14 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pt-BR']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- 1 | /* Portuguese initialisation for the jQuery UI date picker plugin. */ 2 | jQuery(function($){ 3 | $.datepicker.regional['pt'] = { 4 | closeText: 'Fechar', 5 | prevText: '<Anterior', 6 | nextText: 'Seguinte', 7 | currentText: 'Hoje', 8 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 9 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 10 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 11 | 'Jul','Ago','Set','Out','Nov','Dez'], 12 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 13 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 14 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | weekHeader: 'Sem', 16 | dateFormat: 'dd/mm/yy', 17 | firstDay: 0, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: ''}; 21 | $.datepicker.setDefaults($.datepicker.regional['pt']); 22 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- 1 | /* Romansh initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['rm'] = { 5 | closeText: 'Serrar', 6 | prevText: '<Suandant', 7 | nextText: 'Precedent>', 8 | currentText: 'Actual', 9 | monthNames: ['Schaner','Favrer','Mars','Avrigl','Matg','Zercladur', 'Fanadur','Avust','Settember','October','November','December'], 10 | monthNamesShort: ['Scha','Fev','Mar','Avr','Matg','Zer', 'Fan','Avu','Sett','Oct','Nov','Dec'], 11 | dayNames: ['Dumengia','Glindesdi','Mardi','Mesemna','Gievgia','Venderdi','Sonda'], 12 | dayNamesShort: ['Dum','Gli','Mar','Mes','Gie','Ven','Som'], 13 | dayNamesMin: ['Du','Gl','Ma','Me','Gi','Ve','So'], 14 | weekHeader: 'emna', 15 | dateFormat: 'dd/mm/yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: ''}; 20 | $.datepicker.setDefaults($.datepicker.regional['rm']); 21 | }); 22 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- 1 | /* Romanian initialisation for the jQuery UI date picker plugin. 2 | * 3 | * Written by Edmond L. (ll_edmond@walla.com) 4 | * and Ionut G. Stan (ionut.g.stan@gmail.com) 5 | */ 6 | jQuery(function($){ 7 | $.datepicker.regional['ro'] = { 8 | closeText: 'Închide', 9 | prevText: '« Luna precedentă', 10 | nextText: 'Luna următoare »', 11 | currentText: 'Azi', 12 | monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie', 13 | 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], 14 | monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 15 | 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 16 | dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], 17 | dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], 18 | dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'], 19 | weekHeader: 'Săpt', 20 | dateFormat: 'dd.mm.yy', 21 | firstDay: 1, 22 | isRTL: false, 23 | showMonthAfterYear: false, 24 | yearSuffix: ''}; 25 | $.datepicker.setDefaults($.datepicker.regional['ro']); 26 | }); 27 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- 1 | /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Andrew Stromnov (stromnov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ru'] = { 5 | closeText: 'Закрыть', 6 | prevText: '<Пред', 7 | nextText: 'След>', 8 | currentText: 'Сегодня', 9 | monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', 10 | 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'], 14 | dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'], 15 | dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'], 16 | weekHeader: 'Нед', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ru']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- 1 | /* Slovak initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Vojtech Rinik (vojto@hmm.sk). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sk'] = { 5 | closeText: 'Zavrieť', 6 | prevText: '<Predchádzajúci', 7 | nextText: 'Nasledujúci>', 8 | currentText: 'Dnes', 9 | monthNames: ['Január','Február','Marec','Apríl','Máj','Jún', 10 | 'Júl','August','September','Október','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún', 12 | 'Júl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'], 15 | dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'], 16 | weekHeader: 'Ty', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sk']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- 1 | /* Slovenian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jaka Jancar (jaka@kubje.org). */ 3 | /* c = č, s = š z = ž C = Č S = Š Z = Ž */ 4 | jQuery(function($){ 5 | $.datepicker.regional['sl'] = { 6 | closeText: 'Zapri', 7 | prevText: '<Prejšnji', 8 | nextText: 'Naslednji>', 9 | currentText: 'Trenutni', 10 | monthNames: ['Januar','Februar','Marec','April','Maj','Junij', 11 | 'Julij','Avgust','September','Oktober','November','December'], 12 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 13 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 14 | dayNames: ['Nedelja','Ponedeljek','Torek','Sreda','Četrtek','Petek','Sobota'], 15 | dayNamesShort: ['Ned','Pon','Tor','Sre','Čet','Pet','Sob'], 16 | dayNamesMin: ['Ne','Po','To','Sr','Če','Pe','So'], 17 | weekHeader: 'Teden', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['sl']); 24 | }); 25 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- 1 | /* Albanian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Flakron Bytyqi (flakron@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sq'] = { 5 | closeText: 'mbylle', 6 | prevText: '<mbrapa', 7 | nextText: 'Përpara>', 8 | currentText: 'sot', 9 | monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor', 10 | 'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'], 11 | monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer', 12 | 'Kor','Gus','Sht','Tet','Nën','Dhj'], 13 | dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'], 14 | dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'], 15 | dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'], 16 | weekHeader: 'Ja', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sq']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- 1 | /* Swedish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Anders Ekdahl ( anders@nomadiz.se). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sv'] = { 5 | closeText: 'Stäng', 6 | prevText: '«Förra', 7 | nextText: 'Nästa»', 8 | currentText: 'Idag', 9 | monthNames: ['Januari','Februari','Mars','April','Maj','Juni', 10 | 'Juli','Augusti','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'], 14 | dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'], 15 | dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'], 16 | weekHeader: 'Ve', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sv']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- 1 | /* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by S A Sureshkumar (saskumar@live.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ta'] = { 5 | closeText: 'மூடு', 6 | prevText: 'முன்னையது', 7 | nextText: 'அடுத்தது', 8 | currentText: 'இன்று', 9 | monthNames: ['தை','மாசி','பங்குனி','சித்திரை','வைகாசி','ஆனி', 10 | 'ஆடி','ஆவணி','புரட்டாசி','ஐப்பசி','கார்த்திகை','மார்கழி'], 11 | monthNamesShort: ['தை','மாசி','பங்','சித்','வைகா','ஆனி', 12 | 'ஆடி','ஆவ','புர','ஐப்','கார்','மார்'], 13 | dayNames: ['ஞாயிற்றுக்கிழமை','திங்கட்கிழமை','செவ்வாய்க்கிழமை','புதன்கிழமை','வியாழக்கிழமை','வெள்ளிக்கிழமை','சனிக்கிழமை'], 14 | dayNamesShort: ['ஞாயிறு','திங்கள்','செவ்வாய்','புதன்','வியாழன்','வெள்ளி','சனி'], 15 | dayNamesMin: ['ஞா','தி','செ','பு','வி','வெ','ச'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ta']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- 1 | /* Thai initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by pipo (pipo@sixhead.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['th'] = { 5 | closeText: 'ปิด', 6 | prevText: '« ย้อน', 7 | nextText: 'ถัดไป »', 8 | currentText: 'วันนี้', 9 | monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน', 10 | 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'], 11 | monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.', 12 | 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'], 13 | dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'], 14 | dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 15 | dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['th']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- 1 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tj'] = { 5 | closeText: 'Идома', 6 | prevText: '<Қафо', 7 | nextText: 'Пеш>', 8 | currentText: 'Имрӯз', 9 | monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн', 10 | 'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'], 14 | dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'], 15 | dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'], 16 | weekHeader: 'Хф', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tj']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- 1 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tr'] = { 5 | closeText: 'kapat', 6 | prevText: '<geri', 7 | nextText: 'ileri>', 8 | currentText: 'bugün', 9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', 10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], 11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', 12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'], 13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], 14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tr']); 23 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- 1 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */ 3 | /* Corrected by Igor Milla (igor.fsp.milla@gmail.com). */ 4 | jQuery(function($){ 5 | $.datepicker.regional['uk'] = { 6 | closeText: 'Закрити', 7 | prevText: '<', 8 | nextText: '>', 9 | currentText: 'Сьогодні', 10 | monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень', 11 | 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'], 12 | monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер', 13 | 'Лип','Сер','Вер','Жов','Лис','Гру'], 14 | dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'], 15 | dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'], 16 | dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'], 17 | weekHeader: 'Тиж', 18 | dateFormat: 'dd/mm/yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['uk']); 24 | }); -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- 1 | /* Vietnamese initialisation for the jQuery UI date picker plugin. */ 2 | /* Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['vi'] = { 5 | closeText: 'Đóng', 6 | prevText: '<Trước', 7 | nextText: 'Tiếp>', 8 | currentText: 'Hôm nay', 9 | monthNames: ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 10 | 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai'], 11 | monthNamesShort: ['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', 12 | 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12'], 13 | dayNames: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'], 14 | dayNamesShort: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 15 | dayNamesMin: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 16 | weekHeader: 'Tu', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['vi']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function( $, undefined ) { 14 | 15 | $.effects.fade = function(o) { 16 | return this.queue(function() { 17 | var elem = $(this), 18 | mode = $.effects.setMode(elem, o.options.mode || 'hide'); 19 | 20 | elem.animate({ opacity: mode }, { 21 | queue: false, 22 | duration: o.duration, 23 | easing: o.options.easing, 24 | complete: function() { 25 | (o.callback && o.callback.apply(this, arguments)); 26 | elem.dequeue(); 27 | } 28 | }); 29 | }); 30 | }; 31 | 32 | })(jQuery); 33 | -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Blind 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Clip 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Clip 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.clip=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","height","width"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=c[0].tagName=="IMG"?g:c,i={size:f=="vertical"?"height":"width",position:f=="vertical"?"top":"left"},j=f=="vertical"?h.height():h.width();e=="show"&&(h.css(i.size,0),h.css(i.position,j/2));var k={};k[i.size]=e=="show"?j:0,k[i.position]=e=="show"?0:j/2,h.animate(k,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()}})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Drop 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Drop 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.drop=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","opacity"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0})/2:c.outerWidth({margin:!0})/2);e=="show"&&c.css("opacity",0).css(g,h=="pos"?-i:i);var j={opacity:e=="show"?1:0};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.fold.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fold 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fold 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Highlight 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Highlight 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Pulsate 1.8.18 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Pulsate 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */(function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show");times=(b.options.times||5)*2-1,duration=b.duration?b.duration/2:a.fx.speeds._default/2,isVisible=c.is(":visible"),animateTo=0,isVisible||(c.css("opacity",0).show(),animateTo=1),(d=="hide"&&isVisible||d=="show"&&!isVisible)&×--;for(var e=0;e').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery) -------------------------------------------------------------------------------- /examples/lib/jquery-ui/development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.18 2 | -------------------------------------------------------------------------------- /examples/lib/miniBuffer/dataPlayer.js: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | # Tools to play a buffer 4 | # Need Jquery for AJAX stuff 5 | # Author : Samuel Huron 6 | 7 | */ 8 | var DataPlayer = function(data,setup){ 9 | 10 | this.i = 0 11 | this.setting = { 12 | callback:function(e){ 13 | console.log(e) 14 | }, 15 | rate:1000 16 | } 17 | 18 | this.interval = null 19 | 20 | this.play = function(buffer,callback){ 21 | if(this.i<=(buffer.length-1)){ 22 | if(typeof(buffer[this.i])!="undefined"){ 23 | if(typeof(this.setting.callback)!="undefined"){this.setting.callback(buffer[this.i])} 24 | this.i++; 25 | } 26 | } else { 27 | //console.log("no more fresh data ") 28 | } 29 | } 30 | 31 | this.start = function (data,setup){ 32 | var self = this 33 | if(typeof(setup)!="undefined") { 34 | this.setting = setup; 35 | } 36 | if(this.interval!=null) window.clearInterval(this.interval) 37 | this.interval = window.setInterval( 38 | function(){ 39 | self.play(data)} 40 | ,this.setting.rate) 41 | } 42 | 43 | 44 | this.start(data,setup) 45 | return this; 46 | } 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /examples/sediMMS/barGraph.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | barGraph 5 | 6 | 7 | 8 | 9 |

barGraph

10 | 11 | 12 |
13 |
14 | 29 | 30 | -------------------------------------------------------------------------------- /examples/sediMMS/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/bg.png -------------------------------------------------------------------------------- /examples/sediMMS/dataset.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/sediMMS/img/allmmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/allmmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/bluemms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/bluemms.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/bluemms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/bluemms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/bluemmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/bluemmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/brownmms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/brownmms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/brownmmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/brownmmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/greenmms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/greenmms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/greenmmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/greenmmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/orangemms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/orangemms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/orangemmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/orangemmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/redmms.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/redmms.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/redmms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/redmms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/redmmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/redmmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/yellowmms20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/yellowmms20.jpg -------------------------------------------------------------------------------- /examples/sediMMS/img/yellowmmstexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/img/yellowmmstexture.jpg -------------------------------------------------------------------------------- /examples/sediMMS/jquery.tweet.css: -------------------------------------------------------------------------------- 1 | .tweet, 2 | .query { 3 | font: 120% Georgia, serif; 4 | color: #085258; 5 | } 6 | 7 | .tweet_list { 8 | -webkit-border-radius: 0.5em; 9 | -moz-border-radius: 0.5em; 10 | border-radius: 0.5em; 11 | list-style: none; 12 | margin: 0; 13 | padding: 0; 14 | overflow-y: hidden; 15 | 16 | } 17 | 18 | .tweet_list li { 19 | overflow-y: auto; 20 | overflow-x: hidden; 21 | padding: 0.5em; 22 | list-style-type: none; 23 | } 24 | 25 | .tweet_list li a { 26 | color: #0C717A; 27 | } 28 | 29 | .tweet_list .tweet_even { 30 | background-color: #91E5E7; 31 | } 32 | 33 | .tweet_list .tweet_avatar { 34 | padding-right: .5em; float: left; 35 | } 36 | 37 | .tweet_list .tweet_avatar img { 38 | vertical-align: middle; 39 | } -------------------------------------------------------------------------------- /examples/sediMMS/testGoogleDoc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | What is Twitter's favorite M&M's Color? 5 | 6 | 7 | 8 | 9 | 36 | 37 | -------------------------------------------------------------------------------- /examples/sediMMS/twitterfeed.css: -------------------------------------------------------------------------------- 1 | #twitter-feed { 2 | width:458px; 3 | margin:auto; 4 | font-family: Arial, Helvetica, sans-serif; 5 | margin-top:60px; 6 | padding:8px 10px 5px 10px; 7 | border-radius:12px; 8 | background-color:#FFF; 9 | color:#333; 10 | overflow:auto; 11 | } 12 | #twitter-feed h1 { 13 | margin:0px; 14 | padding:5px 0px 9px 0px; 15 | font-size:20px; 16 | font-weight:lighter; 17 | } 18 | .twitter-article { 19 | float:left; 20 | padding:8px 0px 8px 0px; 21 | } 22 | .twitter-pic { 23 | float:left; 24 | } 25 | 26 | .twitter-pic img { 27 | float:left; 28 | border-radius:7px; 29 | 30 | } 31 | .twitter-text p { 32 | margin:0px; 33 | line-height:15px; 34 | } 35 | .twitter-text a, h1 a { 36 | color: #00acee; 37 | text-decoration: none; 38 | } 39 | .twitter-text a:hover, h1 a:hover { 40 | text-decoration: underline; 41 | color: #00acee; 42 | } 43 | 44 | .twitter-text { 45 | width:404px; 46 | float:left; 47 | font-size:11px; 48 | padding-left: 11px; 49 | } 50 | 51 | .tweet-time { 52 | font-size:10px; 53 | color:#878787; 54 | } 55 | -------------------------------------------------------------------------------- /examples/sediMMS/twitterfeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sediMMS/twitterfeed.js -------------------------------------------------------------------------------- /examples/sedivn/sound.js: -------------------------------------------------------------------------------- 1 | // AUDIO PRE-LOADING 2 | var _mySnd = ["150hz.wav","250hz.wav","500hz.wav","750hz.wav","1000hz.wav","1250hz.wav","1500hz.wav"]; 3 | var _sndCollection = [], _sndSrc = []; 4 | 5 | var sound_scale = d3.scale.linear() 6 | .rangeRound([0, _mySnd.length-1]) 7 | .domain([1, 80]); 8 | 9 | for (var i = 0; i < _mySnd.length; i++) { 10 | _sndCollection[i] = new Audio(); 11 | _sndSrc[i] = document.createElement("source"); 12 | _sndSrc[i].type = "audio/mpeg"; 13 | _sndSrc[i].src = "sounds/"+_mySnd[i]; 14 | _sndCollection[i].appendChild(_sndSrc[i]); 15 | } -------------------------------------------------------------------------------- /examples/sedivn/sounds/1000hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/1000hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/1250hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/1250hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/1500hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/1500hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/150hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/150hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/250hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/250hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/500hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/500hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/750hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/750hz.wav -------------------------------------------------------------------------------- /examples/sedivn/sounds/wintab32dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/sedivn/sounds/wintab32dll.txt -------------------------------------------------------------------------------- /examples/sedivn/sp_doc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Constructor 6 | 7 | 8 | 9 | StreamSlider StreamSlider( , [Object options] ) 10 | 11 | -Ob 12 | 13 | 14 | Options 15 | 16 | Methods 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /examples/sedivn/test_sound.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | SVN Commits by Visual Sedimentation 4 | 5 | 6 | 26 | 27 | -------------------------------------------------------------------------------- /examples/sedivn/utils.js: -------------------------------------------------------------------------------- 1 | function ISODateString(d){ 2 | function pad(n){return n<10 ? '0'+n : n} 3 | return d.getUTCFullYear()+'-' 4 | + pad(d.getUTCMonth()+1)+'-' 5 | + pad(d.getUTCDate())+'T' 6 | + pad(d.getUTCHours())+':' 7 | + pad(d.getUTCMinutes())+':' 8 | + pad(d.getUTCSeconds())+'Z' 9 | } 10 | 11 | function toModel(arr) { 12 | var rv = []; 13 | for (var i = 0; i < arr.length; ++i) 14 | rv[i] = {label:arr[i],value:0}; 15 | return rv; 16 | } 17 | 18 | function toStrata(arr) { 19 | var rv = []; 20 | for (var i = 0; i < arr.length; ++i) 21 | rv[i] = [{value: 1, label: "Strata 1"}]; 22 | return rv; 23 | } 24 | 25 | function truncate(string, size){ 26 | if (string.length > size) 27 | return string.substring(0,size)+'...'; 28 | else 29 | return string; 30 | }; 31 | 32 | function init_array(size) { 33 | return new Array(size).join('0').split('').map(function(e) {return parseInt(e, 10);}) 34 | } 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /examples/simple/blankProject.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Name of your project 5 | 6 | 7 | 8 | 9 | 10 | 11 |

Name of your project

12 | 13 | 14 |
15 | 16 | 17 | 18 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /examples/simple/img/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/simple/img/ball.png -------------------------------------------------------------------------------- /examples/worldometers/img/bike-weel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/worldometers/img/bike-weel.png -------------------------------------------------------------------------------- /examples/worldometers/img/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/worldometers/img/car.png -------------------------------------------------------------------------------- /examples/worldometers/img/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/examples/worldometers/img/computer.png -------------------------------------------------------------------------------- /examples/worldometers/utils.js: -------------------------------------------------------------------------------- 1 | var utils = { 2 | textFormating:function (value,separator,unit){ 3 | var value = String(value) 4 | var transform = [] 5 | var result="" 6 | 7 | for (var i = 0; i < value.length ; i+=3) { 8 | transform.push(value.substring(value.length-(i+3),value.length-i)) 9 | }; 10 | for (var i = transform.length - 1; i >= 0; i--) { 11 | result += transform[i] 12 | if(i!=0)result+=separator 13 | }; 14 | return result+" "+unit 15 | }, 16 | function clone(obj) { 17 | if (null == obj || "object" != typeof obj) return obj; 18 | var copy = obj.constructor(); 19 | for (var attr in obj) { 20 | if (obj.hasOwnProperty(attr)) copy[attr] = obj[attr]; 21 | } 22 | return copy; 23 | } 24 | } -------------------------------------------------------------------------------- /img/Towards-Visual-sedimentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/Towards-Visual-sedimentation.png -------------------------------------------------------------------------------- /img/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/barchart.png -------------------------------------------------------------------------------- /img/blobchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/blobchart.png -------------------------------------------------------------------------------- /img/bubblechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/bubblechart.png -------------------------------------------------------------------------------- /img/bubblet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/bubblet.png -------------------------------------------------------------------------------- /img/bubbletv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/bubbletv.png -------------------------------------------------------------------------------- /img/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/corner.png -------------------------------------------------------------------------------- /img/dropChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/dropChart.png -------------------------------------------------------------------------------- /img/football.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/football.gif -------------------------------------------------------------------------------- /img/isocontour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/isocontour.png -------------------------------------------------------------------------------- /img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/loading.gif -------------------------------------------------------------------------------- /img/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/loadingAnimation.gif -------------------------------------------------------------------------------- /img/metaphor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/metaphor.png -------------------------------------------------------------------------------- /img/natural-sedimentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/natural-sedimentation.png -------------------------------------------------------------------------------- /img/overchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/overchart.png -------------------------------------------------------------------------------- /img/physical-and-visual-sedimentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/physical-and-visual-sedimentation.png -------------------------------------------------------------------------------- /img/pmw_sediviz_UpChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_UpChart.png -------------------------------------------------------------------------------- /img/pmw_sediviz_blobChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_blobChart.png -------------------------------------------------------------------------------- /img/pmw_sediviz_blobChart.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_blobChart.psd -------------------------------------------------------------------------------- /img/pmw_sediviz_bubblet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_bubblet.png -------------------------------------------------------------------------------- /img/pmw_sediviz_bubbletv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_bubbletv.png -------------------------------------------------------------------------------- /img/pmw_sediviz_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_corner.png -------------------------------------------------------------------------------- /img/pmw_sediviz_dropChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_dropChart.png -------------------------------------------------------------------------------- /img/pmw_sediviz_isocontour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_isocontour.png -------------------------------------------------------------------------------- /img/pmw_sediviz_metaphor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_metaphor.png -------------------------------------------------------------------------------- /img/pmw_sediviz_overchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_overchart.png -------------------------------------------------------------------------------- /img/pmw_sediviz_process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_process.png -------------------------------------------------------------------------------- /img/pmw_sediviz_silochart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_silochart.png -------------------------------------------------------------------------------- /img/pmw_sediviz_spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_spiral.png -------------------------------------------------------------------------------- /img/pmw_sediviz_strataAlign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_strataAlign.png -------------------------------------------------------------------------------- /img/pmw_sediviz_strataAlign2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_strataAlign2.png -------------------------------------------------------------------------------- /img/pmw_sediviz_transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_sediviz_transitions.png -------------------------------------------------------------------------------- /img/pmw_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/pmw_structure.png -------------------------------------------------------------------------------- /img/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/process.png -------------------------------------------------------------------------------- /img/rocks/layer_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_0.png -------------------------------------------------------------------------------- /img/rocks/layer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_1.png -------------------------------------------------------------------------------- /img/rocks/layer_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_10.png -------------------------------------------------------------------------------- /img/rocks/layer_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_11.png -------------------------------------------------------------------------------- /img/rocks/layer_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_12.png -------------------------------------------------------------------------------- /img/rocks/layer_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_13.png -------------------------------------------------------------------------------- /img/rocks/layer_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_14.png -------------------------------------------------------------------------------- /img/rocks/layer_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_15.png -------------------------------------------------------------------------------- /img/rocks/layer_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_16.png -------------------------------------------------------------------------------- /img/rocks/layer_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_17.png -------------------------------------------------------------------------------- /img/rocks/layer_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_18.png -------------------------------------------------------------------------------- /img/rocks/layer_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_19.png -------------------------------------------------------------------------------- /img/rocks/layer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_2.png -------------------------------------------------------------------------------- /img/rocks/layer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_3.png -------------------------------------------------------------------------------- /img/rocks/layer_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_4.png -------------------------------------------------------------------------------- /img/rocks/layer_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_5.png -------------------------------------------------------------------------------- /img/rocks/layer_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_6.png -------------------------------------------------------------------------------- /img/rocks/layer_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_7.png -------------------------------------------------------------------------------- /img/rocks/layer_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_8.png -------------------------------------------------------------------------------- /img/rocks/layer_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/rocks/layer_9.png -------------------------------------------------------------------------------- /img/sediviz-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/sediviz-bubble.png -------------------------------------------------------------------------------- /img/sediviz-histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/sediviz-histogram.png -------------------------------------------------------------------------------- /img/sediviz-physical-visual-metaphor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/sediviz-physical-visual-metaphor.png -------------------------------------------------------------------------------- /img/sediviz-piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/sediviz-piechart.png -------------------------------------------------------------------------------- /img/silochart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/silochart.png -------------------------------------------------------------------------------- /img/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/spiral.png -------------------------------------------------------------------------------- /img/strataAlign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/strataAlign.png -------------------------------------------------------------------------------- /img/strataAlign2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/strataAlign2.png -------------------------------------------------------------------------------- /img/streamClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/streamClock.png -------------------------------------------------------------------------------- /img/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/teaser.png -------------------------------------------------------------------------------- /img/token1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/token1.png -------------------------------------------------------------------------------- /img/tokenExemple1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/tokenExemple1.png -------------------------------------------------------------------------------- /img/transitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/transitions.png -------------------------------------------------------------------------------- /img/upchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/upchart.png -------------------------------------------------------------------------------- /img/viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/img/viewport.png -------------------------------------------------------------------------------- /js/_vs.barchart.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | $.extend($.fn.visualSedimentation.vs,test = function(){ 4 | console.log("ici visualSedimentation.fn.test") 5 | }); 6 | 7 | })(jQuery); 8 | -------------------------------------------------------------------------------- /js/_vs.decay.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | $.fn._vs.decay = { 4 | tokens:[], 5 | update:function(_this) { 6 | var incrementationStrate = 1; 7 | var top = _this.settings.sedimentation.suspension.height 8 | var height = _this.settings.height 9 | var intervalStrate = _this.settings.sedimentation.token.size/4 10 | var power = _this.settings.sedimentation.suspension.decay.power 11 | var scale = _this.settings.options.scale 12 | var limit = _this.settings.sedimentation.token.size.minimum 13 | 14 | if(power==null){var power = 0} 15 | 16 | for(var b = 0; b < this.tokens.length; b++) { 17 | var tokenSize = this.tokens[b].attr("size") 18 | if(power!=0){ 19 | this.tokens[b].attr("size",tokenSize/power) 20 | } 21 | // Flocculate 22 | 23 | if(tokenSize<=limit){ 24 | if (_this.settings.sedimentation.flocculate.strategy!=null){ 25 | _this.flocculate.destroyIt(_this,this.tokens[b]); 26 | _this.strata.update(_this); 27 | } 28 | } 29 | } 30 | } 31 | } 32 | 33 | })(jQuery); 34 | -------------------------------------------------------------------------------- /js/_vs.hearder.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Visual Sedimentation Library v0.01 3 | * http://www.visualsedimentation.org/ 4 | * 5 | * Copyright 2013, Samuel Huron & Romain Vuillemont 6 | * Licensed under the CeCILL-B or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * 10 | * 11 | * 12 | * 13 | * Includes jquery.js 14 | * http://jquery.com/ 15 | * Copyright 2010, John Resig 16 | * Released under Dual licensed under the MIT or GPL Version 2 licenses. 17 | * 18 | * Includes d3.js 19 | * http://d3js.org/ 20 | * Copyright 2012, Michael Bostock 21 | * Released under BSD licenses. 22 | * 23 | * Includes Box2DWeb 24 | * http://www.gphysics.com 25 | * Copyright 2006, Erin Catto 26 | * Released under zlib License. 27 | * 28 | * Includes Sizzle.js 29 | * http://sizzlejs.com/ 30 | * Copyright 2010, The Dojo Foundation 31 | * Released under the MIT, BSD, and GPL Licenses. 32 | * 33 | * Date: Tue Jan 01 14:25:48 2010 -0500 34 | */ -------------------------------------------------------------------------------- /js/_vs.mouse.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | $.fn._vs.mouse = { 3 | init:function(){}, 4 | } 5 | }) -------------------------------------------------------------------------------- /js/_vs.phy.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | $.fn._vs.phy = { 4 | b2Vec2 : Box2D.Common.Math.b2Vec2, 5 | b2AABB : Box2D.Collision.b2AABB, 6 | b2BodyDef : Box2D.Dynamics.b2BodyDef, 7 | b2Body : Box2D.Dynamics.b2Body, 8 | b2FixtureDef : Box2D.Dynamics.b2FixtureDef, 9 | b2Fixture : Box2D.Dynamics.b2Fixture, 10 | b2World : Box2D.Dynamics.b2World, 11 | b2MassData : Box2D.Collision.Shapes.b2MassData, 12 | b2PolygonShape : Box2D.Collision.Shapes.b2PolygonShape, 13 | b2CircleShape : Box2D.Collision.Shapes.b2CircleShape, 14 | b2DebugDraw : Box2D.Dynamics.b2DebugDraw, 15 | b2MouseJointDef : Box2D.Dynamics.Joints.b2MouseJointDef, 16 | b2Shape : Box2D.Collision.Shapes.b2Shape, 17 | b2DistanceJointDef : Box2D.Dynamics.Joints.b2DistanceJointDef, 18 | b2RevoluteJointDef : Box2D.Dynamics.Joints.b2RevoluteJointDef, 19 | b2Joint : Box2D.Dynamics.Joints.b2Joint, 20 | b2PrismaticJointDef: Box2D.Dynamics.Joints.b2PrismaticJointDef, 21 | b2ContactListener : Box2D.Dynamics.b2ContactListener, 22 | b2Settings : Box2D.Common.b2Settings 23 | } 24 | 25 | })(jQuery); 26 | -------------------------------------------------------------------------------- /js/lib/StreamPlayer/css/streamPlayer.css: -------------------------------------------------------------------------------- 1 | .command { 2 | font-size: 1em; 3 | color: transparent; /* Fix for Firefox */ 4 | /* border-style: none; */ 5 | /* border-width: 0; */ 6 | padding: 0 0 0 16px !important; /* Fix for Internet Explorer */ 7 | text-align: left; 8 | width: 26px; 9 | height: 26px; 10 | line-height: 1 !important; 11 | background-image: url(../img/controls.png); 12 | overflow: hidden; 13 | cursor: pointer; 14 | } 15 | .play { 16 | background-position: -48px 0px; 17 | } 18 | .pause { 19 | background-position: -48px -24px; 20 | } 21 | .stop { 22 | background-position: -72px 0px; 23 | } 24 | .fb { 25 | background-position: 0px 0px; 26 | } 27 | .ff { 28 | background-position: -120px 0px; 29 | } 30 | .prev { 31 | background-position: -24px 0px; 32 | } 33 | .next { 34 | background-position: -96px 0px; 35 | } 36 | .soundon { 37 | background-position: -144px 0px; 38 | } 39 | .soundoff { 40 | background-position: -144px -24px; 41 | } 42 | .disabled { 43 | opacity:0.5; 44 | } -------------------------------------------------------------------------------- /js/lib/StreamPlayer/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/js/lib/StreamPlayer/img/controls.png -------------------------------------------------------------------------------- /js/lib/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/js/lib/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /js/lib/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/INRIA/VisualSedimentation/afefa8c4b6a0be4b94ef535bf013957eab9a787e/js/lib/bootstrap/img/glyphicons-halflings.png --------------------------------------------------------------------------------