├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── attic ├── dev │ ├── GapMinderJSON.php │ ├── HumbleBubble.js │ ├── HumbleFinance.js │ ├── finance │ │ ├── ajax.json │ │ ├── google-daily.js │ │ ├── google-daily.json │ │ ├── google-weekly.csv │ │ ├── initial.json │ │ ├── parse.js │ │ └── tojson.js │ ├── indicators │ │ ├── country_regions.txt │ │ ├── gdp_per_capita_constant_2000.csv │ │ ├── indicatorgapmindergdp_per_capita_ppp.csv │ │ ├── life_expectancy_at_birth.csv │ │ └── population.csv │ ├── memprofile.html │ ├── memprofile.js │ ├── o │ └── weierstrass.js ├── examples │ ├── bubble.html │ ├── bubble_data.js │ ├── data-small.js │ ├── data.js │ ├── demo.js │ ├── example-small.html │ ├── example.html │ └── index.html ├── flotr │ ├── base64.js │ ├── canvas2image.js │ ├── canvastext.js │ ├── excanvas.js │ ├── flotr.humble.js │ ├── flotr.humble2.js │ ├── flotr.js │ ├── license.txt │ └── patches │ │ ├── flor.bars-plot.patch │ │ ├── flor.d2p.patch │ │ └── flotr.patch ├── prototype │ ├── builder.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ ├── prototype.js │ ├── prototype.min.js │ ├── scriptaculous.js │ ├── slider.js │ ├── sound.js │ └── unittest.js └── raphael │ ├── g.bar-min.js │ ├── g.dot-min.js │ ├── g.line-min.js │ ├── g.pie-min.js │ ├── g.raphael-min.js │ ├── raphael-min.js │ └── raphael.js ├── css ├── flotr.css └── templates │ ├── finance.css │ └── timeseries.css ├── demos ├── ajax-loader.gif ├── ajax.html ├── ajax.js ├── custom.html ├── custom.js ├── data │ ├── ajax.json │ ├── data.js │ └── initial.json ├── demos.css ├── finance.html ├── finance.js ├── fractal.css ├── fractal.html ├── fractal.js ├── includes.build.js ├── includes.js ├── index.html ├── million.html ├── million.js ├── spline.html ├── spline.js ├── timeseries.html ├── timeseries.js ├── weierstrass.html ├── weierstrass.js ├── yepnope.js └── zoom.css ├── envision.css ├── envision.js ├── envision.min.css ├── envision.min.js ├── js ├── Component.js ├── Envision.js ├── Interaction.js ├── Preprocessor.js ├── Visualization.js ├── actions │ ├── hit.js │ ├── namespace.js │ ├── selection.js │ └── zoom.js ├── adapters │ ├── flotr │ │ ├── Child.js │ │ ├── defaultOptions.js │ │ ├── lite-lines.js │ │ ├── namespace.js │ │ └── whiskers.js │ └── namespace.js ├── components │ ├── QuadraticDrawing.js │ └── namespace.js ├── license.js └── templates │ ├── Finance.js │ ├── TimeSeries.js │ ├── Zoom.js │ └── namespace.js ├── lib ├── FlashCanvas │ ├── README │ ├── bin │ │ ├── canvas2png.js │ │ ├── flashcanvas.js │ │ ├── flashcanvas.swf │ │ ├── proxy.php │ │ └── save.php │ ├── doc │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ └── LICENSE │ ├── examples │ │ ├── canvas-text.googlecode.com │ │ │ └── svn │ │ │ │ └── trunk │ │ │ │ ├── LICENSE │ │ │ │ ├── canvas.text.js │ │ │ │ ├── examples │ │ │ │ ├── animation.html │ │ │ │ ├── index.html │ │ │ │ ├── performance-lib.html │ │ │ │ ├── performance-native.html │ │ │ │ ├── performance.html │ │ │ │ ├── style.css │ │ │ │ ├── textposition.html │ │ │ │ └── transformations.html │ │ │ │ ├── excanvas.js │ │ │ │ └── faces │ │ │ │ └── optimer-normal-normal.js │ │ ├── developer.mozilla.org │ │ │ └── samples │ │ │ │ └── canvas-tutorial │ │ │ │ ├── 1_1_canvas_template.html │ │ │ │ ├── 2_1_canvas_rect.html │ │ │ │ ├── 2_2_canvas_moveto.html │ │ │ │ ├── 2_3_canvas_lineto.html │ │ │ │ ├── 2_4_canvas_arc.html │ │ │ │ ├── 2_5_canvas_quadraticcurveto.html │ │ │ │ ├── 2_6_canvas_beziercurveto.html │ │ │ │ ├── 2_7_canvas_combined.html │ │ │ │ ├── 3_1_canvas_drawimage.html │ │ │ │ ├── 3_2_canvas_drawimage.html │ │ │ │ ├── 3_3_canvas_drawimage.html │ │ │ │ ├── 3_4_canvas_gallery.html │ │ │ │ ├── 4_10_canvas_radialgradient.html │ │ │ │ ├── 4_11_canvas_createpattern.html │ │ │ │ ├── 4_1_canvas_fillstyle.html │ │ │ │ ├── 4_2_canvas_strokestyle.html │ │ │ │ ├── 4_3_canvas_globalalpha.html │ │ │ │ ├── 4_4_canvas_rgba.html │ │ │ │ ├── 4_5_canvas_linewidth.html │ │ │ │ ├── 4_6_canvas_linecap.html │ │ │ │ ├── 4_7_canvas_linejoin.html │ │ │ │ ├── 4_8_canvas_miterlimit.html │ │ │ │ ├── 4_9_canvas_lineargradient.html │ │ │ │ ├── 5_1_canvas_savestate.html │ │ │ │ ├── 5_2_canvas_translate.html │ │ │ │ ├── 5_3_canvas_rotate.html │ │ │ │ ├── 5_4_canvas_scale.html │ │ │ │ ├── 5_5_canvas_transform.html │ │ │ │ ├── 6_1_canvas_composite.html │ │ │ │ ├── 6_2_canvas_clipping.html │ │ │ │ ├── 7_2_canvas_animation.html │ │ │ │ ├── images │ │ │ │ ├── backdrop.png │ │ │ │ ├── bg_gallery.png │ │ │ │ ├── gallery_1.jpg │ │ │ │ ├── gallery_2.jpg │ │ │ │ ├── gallery_3.jpg │ │ │ │ ├── gallery_4.jpg │ │ │ │ ├── gallery_5.jpg │ │ │ │ ├── gallery_6.jpg │ │ │ │ ├── gallery_7.jpg │ │ │ │ ├── gallery_8.jpg │ │ │ │ ├── picture_frame.png │ │ │ │ ├── rhino.jpg │ │ │ │ └── wallpaper.png │ │ │ │ └── index.html │ │ ├── explorercanvas.googlecode.com │ │ │ └── svn │ │ │ │ └── trunk │ │ │ │ ├── COPYING │ │ │ │ ├── examples │ │ │ │ ├── example1.html │ │ │ │ ├── example2.html │ │ │ │ ├── example3.html │ │ │ │ └── ff.jpg │ │ │ │ ├── index.html │ │ │ │ └── testcases │ │ │ │ ├── arc.html │ │ │ │ ├── clearpath.html │ │ │ │ ├── colors.html │ │ │ │ ├── draw-image-flip.html │ │ │ │ ├── drawimage.html │ │ │ │ ├── gradient.html │ │ │ │ ├── gradient2.html │ │ │ │ ├── linewidth.html │ │ │ │ ├── overflow.html │ │ │ │ ├── overlay.html │ │ │ │ ├── pattern.html │ │ │ │ ├── pattern.jpg │ │ │ │ ├── quadraticcurve.html │ │ │ │ ├── resizing.html │ │ │ │ ├── saverestorepath.html │ │ │ │ ├── stroke-scale-rotate.html │ │ │ │ ├── stroke-should-not-close-path.html │ │ │ │ └── text.html │ │ ├── www.andrew-hoyer.com │ │ │ └── exp_src │ │ │ │ ├── cloth.html │ │ │ │ └── cloth_JS │ │ │ │ ├── canvas.js │ │ │ │ ├── cloth.js │ │ │ │ ├── constraint.js │ │ │ │ ├── fast_vector.js │ │ │ │ └── point.js │ │ └── www.chiptune.com │ │ │ ├── kaleidoscope │ │ │ ├── ico.gif │ │ │ ├── icon.gif │ │ │ └── index.html │ │ │ └── starfield │ │ │ └── starfield.html │ └── src │ │ └── flashcanvas.js ├── bonzo │ └── bonzo.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.16.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.6.2.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.16.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-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-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-ko.js │ │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ ├── jquery.ui.datepicker-ms.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.16.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.6.2.min.js │ │ └── jquery-ui-1.8.16.custom.min.js └── jquery │ └── jquery-1.7.1.min.js ├── make ├── build.json ├── post.js └── pre.js ├── markdown ├── api.md ├── footer.md └── head.md └── spec ├── helpers ├── MockAction.js ├── MockAdapter.js └── MockComponent.js ├── index.html ├── jasmine.yml ├── jasmine ├── MIT.LICENSE ├── jasmine-html.js ├── jasmine.css ├── jasmine.js └── jasmine_favicon.png └── js ├── Component.js ├── Envision.js ├── Interaction.js ├── Preprocessor.js └── Visualization.js /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.swp 3 | .jhw-cache 4 | Session.vim 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/flotr2"] 2 | path = lib/flotr2 3 | url = git://github.com/HumbleSoftware/Flotr2.git 4 | [submodule "spec/jasmine-jquery"] 5 | path = spec/jasmine-jquery 6 | url = git://github.com/HumbleSoftware/jasmine-jquery.git 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012 Humble Software Development 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /attic/dev/finance/parse.js: -------------------------------------------------------------------------------- 1 | var csv = require('./node-csv/lib/csv'); 2 | 3 | var ting = csv.each('./google-weekly.csv'); 4 | -------------------------------------------------------------------------------- /attic/dev/memprofile.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /attic/dev/memprofile.js: -------------------------------------------------------------------------------- 1 | // Compare on JS Perf: 2 | // http://jsperf.com/arrays-vs-points/2 3 | // 4 | var 5 | test = 1e5, 6 | data = {}; 7 | 8 | function test_points (data) { 9 | 10 | var 11 | i; 12 | 13 | data.test = []; 14 | 15 | for (i = 0; i < test; i++) { 16 | data.test.push([i, i]); 17 | } 18 | } 19 | 20 | function test_arrays (data) { 21 | 22 | var 23 | i; 24 | 25 | data.x = []; 26 | data.y = []; 27 | 28 | for (i = 0; i < test; i++) { 29 | data.x.push(i); 30 | data.y.push(i); 31 | } 32 | } 33 | 34 | //test_points(data); 35 | 36 | test_arrays(data); 37 | 38 | console.log(window.data); 39 | -------------------------------------------------------------------------------- /attic/dev/weierstrass.js: -------------------------------------------------------------------------------- 1 | // Generate Weierstrass Data 2 | 3 | var count = 1e6, 4 | precision = 10000000, 5 | i = 0, 6 | a = 2, // Weierstrass a 7 | x, y; 8 | 9 | //console.time('weierstrass'); 10 | console.log('var weierdata = ['); 11 | 12 | 13 | for (i = 1; i < count; i++) { 14 | x = -1 + i * 2 / count; 15 | y = 0; 16 | for (var k = 1; k < 50; k++) { 17 | y += 18 | 19 | Math.sin(Math.PI * Math.pow(k, a) * x) / 20 | (Math.PI * Math.pow(k,a)); 21 | } 22 | x = Math.round(x*precision)/precision; 23 | y = Math.round(y*precision)/precision; 24 | console.log('[%d, %d],', x, y); 25 | } 26 | 27 | 28 | // Unfolded final loop (no trailing comma); 29 | i = count; 30 | x = -1 + i * 2 / 1e2; 31 | y = 0; 32 | for (var k = 1; k < 50; k++) { 33 | y += Math.sin(Math.PI * Math.pow(k, a) * x) / (Math.PI * Math.pow(k,a)); 34 | } 35 | x = Math.round(x*10000)/10000; 36 | y = Math.round(y*10000)/10000; 37 | console.log('[%d, %d]', x, y); 38 | 39 | console.log(']'); 40 | -------------------------------------------------------------------------------- /attic/examples/demo.js: -------------------------------------------------------------------------------- 1 | 2 | Event.observe(document, 'dom:loaded', function() { 3 | 4 | HumbleFinance.trackFormatter = function (obj) { 5 | 6 | var x = Math.floor(obj.x); 7 | var data = jsonData[x]; 8 | var text = data.date + " Price: " + data.close + " Vol: " + data.volume; 9 | 10 | return text; 11 | }; 12 | 13 | HumbleFinance.yTickFormatter = function (n) { 14 | 15 | if (n == this.max) { 16 | return false; 17 | } 18 | 19 | return '$'+n; 20 | }; 21 | 22 | HumbleFinance.xTickFormatter = function (n) { 23 | 24 | n = parseInt(n); 25 | 26 | if (n == 0) { 27 | return false; 28 | } 29 | 30 | var date = jsonData[n].date; 31 | date = date.split(' '); 32 | date = date[2]; 33 | 34 | return date; 35 | }; 36 | 37 | HumbleFinance.init('humblefinance', priceData, volumeData, summaryData); 38 | HumbleFinance.setFlags(flagData); 39 | }); 40 | -------------------------------------------------------------------------------- /attic/examples/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Demo 5 | 6 | 7 | 8 | 9 |
10 |
11 | 12 |
13 |

Demos:

14 | 19 |

Bubbles:

20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /attic/flotr/canvastext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/attic/flotr/canvastext.js -------------------------------------------------------------------------------- /attic/flotr/flotr.humble2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/attic/flotr/flotr.humble2.js -------------------------------------------------------------------------------- /attic/flotr/flotr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/attic/flotr/flotr.js -------------------------------------------------------------------------------- /attic/flotr/license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 Bas Wenneker 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /css/flotr.css: -------------------------------------------------------------------------------- 1 | /* Flotr */ 2 | .flotr-handles-handle { 3 | background: #eee; 4 | border: 1px solid #333; 5 | position: absolute; 6 | cursor: pointer; 7 | border-radius: 3px; 8 | } 9 | .flotr-handles-handle, 10 | .flotr-grid-label { 11 | -webkit-user-select: none; 12 | -khtml-user-select: none; 13 | -moz-user-select: none; 14 | -o-user-select: none; 15 | user-select: none; 16 | } 17 | .flotr-handles-drag { 18 | height: 12px; 19 | width: 6px; 20 | } 21 | .flotr-handles-scroll { 22 | height: 6px; 23 | cursor: move; 24 | } 25 | .flotr-handles-left { 26 | cursor: w-resize; 27 | } 28 | .flotr-handles-right { 29 | cursor: e-resize; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /css/templates/timeseries.css: -------------------------------------------------------------------------------- 1 | /* Dimensions */ 2 | .envision-timeseries { 3 | width: auto; 4 | } 5 | .envision-timeseries-detail .envision-component { 6 | height: 200px; 7 | } 8 | .envision-timeseries-connection .envision-component { 9 | height: 16px; 10 | } 11 | .envision-timeseries-summary .envision-component { 12 | cursor: all-scroll; 13 | height: 80px; 14 | } 15 | 16 | /* Bubble Borders */ 17 | .envision-timeseries-detail { 18 | padding-top: 7px; 19 | border: 1px solid #B6D9FF; 20 | border-top-right-radius: 5px; 21 | border-top-left-radius: 5px; 22 | border-bottom: 0px; 23 | background : #e2f0ff; 24 | } 25 | 26 | /* Connection overlay */ 27 | .envision-timeseries-connection canvas { 28 | z-index: 10; 29 | background: #fff; 30 | } 31 | .envision-timeseries-connection canvas object { 32 | position: absolute; 33 | top: 0px; 34 | } 35 | .envision-timeseries-summary .envision-component { 36 | margin-top: -2px; 37 | } 38 | 39 | 40 | -------------------------------------------------------------------------------- /demos/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/demos/ajax-loader.gif -------------------------------------------------------------------------------- /demos/ajax.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Ajax Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |

Ajax Demo:

17 |
18 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /demos/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Custom Demo 5 | 6 | 7 | 8 | 9 | 10 | 16 | 17 | 18 |
19 |

Custom Demo:

20 |
21 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demos/finance.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Finance Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |

Finance Demo:

17 |
18 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /demos/finance.js: -------------------------------------------------------------------------------- 1 | function example () { 2 | 3 | var 4 | V = envision, 5 | container = document.getElementById('demo'), 6 | summaryTicks = financeData.summaryTicks, 7 | options, vis; 8 | 9 | options = { 10 | container : container, 11 | data : { 12 | price : financeData.price, 13 | volume : financeData.volume, 14 | summary : financeData.price 15 | }, 16 | trackFormatter : function (o) { 17 | 18 | var 19 | data = o.series.data, 20 | index = data[o.index][0], 21 | value; 22 | 23 | value = summaryTicks[index].date + ': $' + summaryTicks[index].close + ", Vol: " + summaryTicks[index].volume; 24 | 25 | return value; 26 | }, 27 | xTickFormatter : function (index) { 28 | var date = new Date(financeData.summaryTicks[index].date); 29 | return date.getFullYear() + ''; 30 | }, 31 | // An initial selection 32 | selection : { 33 | data : { 34 | x : { 35 | min : 100, 36 | max : 200 37 | } 38 | } 39 | } 40 | }; 41 | 42 | vis = new envision.templates.Finance(options); 43 | } 44 | -------------------------------------------------------------------------------- /demos/fractal.css: -------------------------------------------------------------------------------- 1 | #demo { 2 | height : auto !important; 3 | } 4 | .envision-component { 5 | border : none !important; 6 | } 7 | -------------------------------------------------------------------------------- /demos/fractal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fractal Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |

Fractal Demo:

15 |
16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /demos/includes.build.js: -------------------------------------------------------------------------------- 1 | window.FlashCanvasOptions = { 2 | swfPath: 'lib/FlashCanvas/bin/' 3 | }; 4 | yepnope([ 5 | 6 | 'lib/jquery/jquery-1.7.1.min.js', 7 | 8 | // IE 9 | { 10 | test : (navigator.appVersion.indexOf("MSIE") != -1 && parseFloat(navigator.appVersion.split("MSIE")[1]) < 9), 11 | yep : [ 12 | 'lib/flotr2/lib/base64.js' 13 | ] 14 | }, 15 | { 16 | test : (navigator.appVersion.indexOf("MSIE") != -1), 17 | yep : [ 18 | 'lib/FlashCanvas/bin/flashcanvas.js' 19 | ] 20 | }, 21 | 22 | // Libs 23 | 'flotr2.min.js', 24 | { 25 | test : ('ontouchstart' in window), 26 | nope : [ 27 | 'handles.js' 28 | ] 29 | }, 30 | 'lib/bonzo/bonzo.min.js', 31 | 'envision.min.js', 32 | 33 | { complete : example } 34 | ]); 35 | -------------------------------------------------------------------------------- /demos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Demo 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |

Demos:

13 | 20 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /demos/timeseries.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TimeSeries Demo 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 |

TimeSeries Demo:

17 |
18 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /demos/timeseries.js: -------------------------------------------------------------------------------- 1 | function example () { 2 | 3 | var 4 | container = document.getElementById('demo'), 5 | options; 6 | 7 | options = { 8 | container : container, 9 | data : { 10 | detail : financeData.price, 11 | summary : financeData.price 12 | }, 13 | // An initial selection 14 | selection : { 15 | data : { 16 | x : { 17 | min : 100, 18 | max : 200 19 | } 20 | } 21 | } 22 | }; 23 | 24 | new envision.templates.TimeSeries(options); 25 | } 26 | -------------------------------------------------------------------------------- /demos/zoom.css: -------------------------------------------------------------------------------- 1 | div#demo { 2 | border: 1px solid #99CCFF; 3 | } 4 | 5 | /* Vis */ 6 | .envision-visualization { 7 | background: #eee; 8 | } 9 | .envision-component-container { 10 | border-bottom: 4px solid white; 11 | border-top: 4px solid white; 12 | background: #fff; 13 | } 14 | .envision-component-container+.envision-component-container { 15 | margin-top: 1px; 16 | } 17 | .envision-component { 18 | width: 598px; 19 | height: 200px; 20 | } 21 | 22 | /* Million */ 23 | .million .summary .envision-component { 24 | height: 178px; 25 | margin: 11px 0px 26 | } 27 | .million .zoom .envision-component { 28 | height: 100px; 29 | margin: 50px 0px 30 | } 31 | 32 | @media screen and (max-width: 600px) { 33 | .envision-component { 34 | width: 100%; 35 | height: 118px; 36 | } 37 | .million .summary .envision-component { 38 | height: 100px; 39 | margin: 11px 0px 40 | } 41 | .million .zoom .envision-component { 42 | height: 50px; 43 | margin: 32px 0px 44 | } 45 | div#demo { 46 | height: 253px; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /js/Envision.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The Envision namespace. 3 | * @namespace 4 | */ 5 | var envision = { 6 | 7 | // Globals 8 | _ : Flotr._, // Underscore.js, functional microlib 9 | bean : Flotr.bean, // Bean, events 10 | bonzo : bonzo, // Bonzo, dom 11 | 12 | // Utility 13 | noConflict : (function (root) { 14 | var previous = root.envision; 15 | return function () { 16 | root.envision = previous; 17 | return this; 18 | }; 19 | })(this) 20 | }; 21 | -------------------------------------------------------------------------------- /js/actions/hit.js: -------------------------------------------------------------------------------- 1 | envision.actions.hit = { 2 | events : [ 3 | 'hit', 4 | 'mouseout' 5 | ] 6 | }; 7 | -------------------------------------------------------------------------------- /js/actions/namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Actions namespace. Actions are configurations for 3 | * common use cases when building Interactions. 4 | */ 5 | envision.actions = envision.actions || {}; 6 | -------------------------------------------------------------------------------- /js/actions/selection.js: -------------------------------------------------------------------------------- 1 | envision.actions.selection = { 2 | events : [ 3 | { 4 | handler : 'select', 5 | consumer : 'zoom' 6 | }, 7 | // Reset on click, avoids re-drawing the leader. 8 | { 9 | handler : 'click', 10 | consumer : 'reset' 11 | } 12 | ] 13 | }; 14 | -------------------------------------------------------------------------------- /js/actions/zoom.js: -------------------------------------------------------------------------------- 1 | envision.actions.zoom = { 2 | events : [ 3 | // Zoom on the followers as selecting 4 | { 5 | handler : 'select', 6 | consumer : 'zoom' 7 | }, 8 | // Zoom on the leader after mouseup 9 | 'zoom', 10 | // Reset all on click 11 | 'reset' 12 | ] 13 | }; 14 | -------------------------------------------------------------------------------- /js/adapters/flotr/defaultOptions.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Flotr Default Options 3 | */ 4 | 5 | envision.adapters.defaultOptions = { 6 | grid : { 7 | outlineWidth : 0, 8 | labelMargin : 0, 9 | horizontalLines : false, 10 | verticalLines : false 11 | }, 12 | bars : { 13 | show : false, 14 | barWidth : 0.5, 15 | fill : true, 16 | lineWidth : 1, 17 | fillOpacity : 1 18 | }, 19 | lines : { 20 | lineWidth : 1 21 | }, 22 | xaxis : { 23 | margin : false, 24 | tickDecimals: 0, 25 | showLabels : false 26 | }, 27 | yaxis : { 28 | margin : false, 29 | showLabels : false 30 | }, 31 | shadowSize : false 32 | }; 33 | -------------------------------------------------------------------------------- /js/adapters/flotr/namespace.js: -------------------------------------------------------------------------------- 1 | envision.adapters.flotr = {}; 2 | -------------------------------------------------------------------------------- /js/adapters/namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Adapters namespace. These are component adapters for external 3 | * librares. Envision.js ships with a Flotr2 adapter. 4 | */ 5 | envision.adapters = envision.adapters || {}; 6 | -------------------------------------------------------------------------------- /js/components/namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Components namespace. These are standalone, custom components 3 | * APIs for widgets, decorations, flair. 4 | */ 5 | envision.components = envision.components || {}; 6 | -------------------------------------------------------------------------------- /js/license.js: -------------------------------------------------------------------------------- 1 | // Envision.js 2 | // (c) 2012 Carl Sutherland, Humble Software 3 | // Distributed under the MIT License 4 | // Source: http://www.github.com/HumbleSoftware/envisionjs 5 | // Homepage: http://www.humblesoftware.com/envision 6 | -------------------------------------------------------------------------------- /js/templates/namespace.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Templates namespace. 3 | * 4 | * Templates are pre-built interactive visualizations fitting common 5 | * use-cases. These include several components together with 6 | * interactions and configuration for each. They may have their own 7 | * custom configuration options as well. 8 | */ 9 | envision.templates = envision.templates || {}; 10 | -------------------------------------------------------------------------------- /lib/FlashCanvas/bin/canvas2png.js: -------------------------------------------------------------------------------- 1 | /* 2 | * canvas2png.js 3 | * 4 | * Copyright (c) 2010-2011 Shinya Muramatsu 5 | * Released under the MIT License 6 | * http://flashcanvas.net/ 7 | */ 8 | 9 | (function(doc) { 10 | 11 | var scripts = doc.getElementsByTagName("script"); 12 | var script = scripts[scripts.length - 1]; 13 | var url = script.getAttribute("src").replace(/[^\/]+$/, "save.php"); 14 | 15 | window.canvas2png = function(canvas) { 16 | var tagName = canvas.tagName.toLowerCase(); 17 | if (tagName !== "canvas") { 18 | return; 19 | } 20 | 21 | if (typeof FlashCanvas !== "undefined") { 22 | FlashCanvas.saveImage(canvas); 23 | } else { 24 | var form = doc.createElement("form"); 25 | var input = doc.createElement("input"); 26 | 27 | form.setAttribute("action", url); 28 | form.setAttribute("method", "post"); 29 | 30 | input.setAttribute("type", "hidden"); 31 | input.setAttribute("name", "dataurl"); 32 | input.setAttribute("value", canvas.toDataURL()); 33 | 34 | doc.body.appendChild(form); 35 | form.appendChild(input); 36 | form.submit(); 37 | form.removeChild(input); 38 | doc.body.removeChild(form); 39 | } 40 | } 41 | 42 | })(document); 43 | -------------------------------------------------------------------------------- /lib/FlashCanvas/bin/flashcanvas.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/bin/flashcanvas.swf -------------------------------------------------------------------------------- /lib/FlashCanvas/doc/AUTHORS: -------------------------------------------------------------------------------- 1 | FlashCanvas 2 | =========== 3 | 4 | Project members 5 | --------------- 6 | 7 | * Tim Cameron Ryan 8 | * Shinya Muramatsu 9 | -------------------------------------------------------------------------------- /lib/FlashCanvas/doc/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2009-2011 FlashCanvas Project: 4 | 5 | * Tim Cameron Ryan 6 | * Shinya Muramatsu 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a 9 | copy of this software and associated documentation files (the "Software"), 10 | to deal in the Software without restriction, including without limitation 11 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 12 | and/or sell copies of the Software, and to permit persons to whom the 13 | Software is furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 | THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 23 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 24 | DEALINGS IN THE SOFTWARE. 25 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/canvas-text.googlecode.com/svn/trunk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/canvas-text.googlecode.com/svn/trunk/LICENSE -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/canvas-text.googlecode.com/svn/trunk/examples/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Canvas text examples 6 | 7 | 8 | 9 | 10 | These examples are originally distributed at 11 | Canvas text project page 12 | under the MIT License. 13 | 14 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/canvas-text.googlecode.com/svn/trunk/examples/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 3 | font-size: 12px; 4 | color: #000; 5 | 6 | background: #fff; 7 | margin: 1em; 8 | } 9 | 10 | h1, h2, h3 { 11 | font-family: Georgia,"Times New Roman",Times,serif; 12 | font-style: italic; 13 | } 14 | 15 | a { 16 | color: #167BFF; 17 | text-decoration: none; 18 | font-weight: bold; 19 | } 20 | 21 | a:hover { 22 | text-decoration: underline; 23 | } 24 | 25 | canvas { 26 | border: 2px dashed #999; 27 | display: block; 28 | } 29 | 30 | .footer { 31 | display: block; 32 | margin-top: 1em; 33 | } 34 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/1_1_canvas_template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Canvas tutorial template 5 | 8 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/backdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/backdrop.png -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/bg_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/bg_gallery.png -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_1.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_2.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_3.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_4.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_5.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_6.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_7.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/gallery_8.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/picture_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/picture_frame.png -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/rhino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/rhino.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/developer.mozilla.org/samples/canvas-tutorial/images/wallpaper.png -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/examples/ff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/examples/ff.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/arc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Arc Test 5 | 12 | 13 | 40 | 41 | 42 | 43 | 44 | 45 |

This tests that drawing arches work in the same way in different 46 | browsers.

47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/clearpath.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Clear path Test 5 | 12 | 13 | 40 | 41 | 42 | 43 | 44 | 45 |

This tests the clearing of the path. You should only see a diamond shape 46 | above.

47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/drawimage.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Draw Image Test 5 | 12 | 13 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/gradient.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Gradient Test 5 | 12 | 13 | 31 | 32 | 33 | 34 | 35 | 36 |

This tests gradients

37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/gradient2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Gradient Test 5 | 13 | 14 | 34 | 35 | 36 | 37 | 38 | 39 |

This tests gradients

40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/linewidth.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Line Width Test 5 | 12 | 13 | 38 | 39 | 40 | 41 | 42 | 43 |

This tests that lines work in the same way in different browsers when you are 44 | using sub pixel coordinates.

45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/overflow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Overflow Test 5 | 12 | 13 | 29 | 30 | 31 | 32 | 33 | 34 |

This tests if content gets cropped if painting outside the canvas.

35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/pattern.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Pattern Test 5 | 12 | 13 | 33 | 34 | 35 | 36 | 37 | 38 |

This tests patterns

39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/pattern.jpg -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/quadraticcurve.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Quadratic Curve Test 5 | 12 | 13 | 47 | 48 | 49 | 50 | 51 | 52 |

This tests that drawing quadratic curves work in the same way in different 53 | browsers.

54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/saverestorepath.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Save/restore path Test 5 | 12 | 13 | 39 | 40 | 41 | 42 | 43 | 44 |

This tests ensures that save/restore does not do anything to the current 45 | path. You should see a diamond shape above.

46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/explorercanvas.googlecode.com/svn/trunk/testcases/stroke-should-not-close-path.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Stroke should not close path 5 | 12 | 13 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/www.andrew-hoyer.com/exp_src/cloth_JS/canvas.js: -------------------------------------------------------------------------------- 1 | 2 | function Canvas(id){ 3 | this.canvas = document.getElementById(id); 4 | if (typeof FlashCanvas == "object") { 5 | FlashCanvas.initElement(this.canvas); 6 | } 7 | this.ctx = this.canvas.getContext('2d'); 8 | this.width = this.canvas.width; 9 | this.height = this.canvas.height; 10 | this.fill_color = "#FFF"; 11 | this.stroke_color = "#000"; 12 | } 13 | Canvas.prototype={ 14 | isInside: function(pos) { 15 | return (pos.x >= 0 && pos.x<=1 && pos.y>=0 && pos.y<=1); 16 | }, 17 | 18 | clear: function(){ 19 | this.ctx.clearRect(0, 0, this.width, this.height); 20 | }, 21 | circle: function(p,r){ 22 | x = p.x*this.width; 23 | y = p.y*this.height; 24 | //this.ctx.save(); 25 | this.ctx.beginPath(); 26 | this.ctx.strokeStyle = this.stroke_color; 27 | this.ctx.moveTo(x+r,y); 28 | this.ctx.arc(x,y,r,0,TWO_PI,false); 29 | this.ctx.fill(); 30 | //this.ctx.restore(); 31 | }, 32 | line: function(x1,x2){ 33 | //this.ctx.save(); 34 | this.ctx.beginPath(); 35 | this.ctx.strokeStyle = this.stroke_color; 36 | this.ctx.moveTo(x1.x*this.width,x1.y*this.height); 37 | this.ctx.lineTo(x2.x*this.width,x2.y*this.height); 38 | this.ctx.stroke(); 39 | //this.ctx.restore(); 40 | } 41 | }; 42 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/www.andrew-hoyer.com/exp_src/cloth_JS/constraint.js: -------------------------------------------------------------------------------- 1 | 2 | function Constraint(p1,p2,rl){ 3 | this.p1 = p1; 4 | this.p2 = p2; 5 | this.rest_length = rl||p1.currentPosition().subtract(p2.currentPosition()).length(); 6 | this.squared_rest_length = this.rest_length*this.rest_length; 7 | } 8 | Constraint.prototype = { 9 | draw: function() { 10 | //draw a line from p1 to p2 11 | canvas.line(this.p1.currentPosition(),this.p2.currentPosition()); 12 | }, 13 | satisfy: function() { 14 | var p1 = this.p1.currentPosition(); 15 | var p2 = this.p2.currentPosition(); 16 | var delta = p2.subtract(p1); 17 | 18 | var p1_im = this.p1.inv_mass; 19 | var p2_im = this.p2.inv_mass; 20 | 21 | /* 22 | var delta_len = 0.5*(this.rest_length+(delta.squaredLength()/this.rest_length)); 23 | var diff = (delta_len-this.rest_length)/(delta_len*(p1_im+p2_im)); 24 | */ 25 | var d = delta.squaredLength(); 26 | var diff = (d-this.squared_rest_length)/((this.squared_rest_length+d)*(p1_im+p2_im)); 27 | if(p1_im!=0){ 28 | this.p1.setCurrentPos( p1.add(delta.multiply(p1_im*diff)) ); 29 | } 30 | if(p2_im!=0){ 31 | this.p2.setCurrentPos( p2.subtract(delta.multiply(p2_im*diff)) ); 32 | } 33 | } 34 | 35 | 36 | } -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/www.andrew-hoyer.com/exp_src/cloth_JS/point.js: -------------------------------------------------------------------------------- 1 | 2 | function Point(p,m,inv_m){ 3 | this.curr = this.prev = p; 4 | this.mass = m; 5 | if(inv_m == 0){ 6 | this.inv_mass = 0; 7 | }else{ 8 | this.inv_mass = inv_m||1/m; 9 | } 10 | this.force = GRAVITY; 11 | this.RADIUS = 3; 12 | } 13 | Point.prototype = { 14 | setCurrentPos: function(p) { 15 | this.curr = p; 16 | }, 17 | setPreviousPos: function(p) { 18 | this.prev = p; 19 | }, 20 | currentPosition: function() { 21 | return this.curr; 22 | }, 23 | previousPosition: function() { 24 | return this.prev; 25 | }, 26 | move: function() { 27 | if(this.inv_mass!=0){ 28 | //a = this.force.scale(this.mass); 29 | var new_pos = this.curr.multiply(DRAG_C_1).subtract(this.prev.multiply(DRAG_C_2)).add(GRAVITY_SCALED); 30 | new_pos.x = (new_pos.x<0)?0:((new_pos.x>1)?1:new_pos.x); 31 | new_pos.y = (new_pos.y<0)?0:((new_pos.y>1)?1:new_pos.y); 32 | this.prev = this.curr; 33 | this.curr = new_pos; 34 | } 35 | }, 36 | 37 | 38 | draw: function() { 39 | //draw a circle at current point. 40 | canvas.circle(this.curr,this.RADIUS); 41 | }, 42 | select: function() { 43 | canvas.circle(this.curr,this.RADIUS*2); 44 | } 45 | 46 | }; 47 | -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/www.chiptune.com/kaleidoscope/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/www.chiptune.com/kaleidoscope/ico.gif -------------------------------------------------------------------------------- /lib/FlashCanvas/examples/www.chiptune.com/kaleidoscope/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/FlashCanvas/examples/www.chiptune.com/kaleidoscope/icon.gif -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Demos 6 | 7 | 8 | 9 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/datepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker Demos 6 | 7 | 8 | 9 | 10 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/datepicker/min-max.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Restrict date range 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 |

Date:

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

Restrict the range of selectable dates with the minDate and maxDate options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.

30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Demos 6 | 7 | 8 | 9 | 10 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/resizable/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 17 | 22 | 23 | 24 | 25 |
26 | 27 |
28 |

Resizable

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

Enable any DOM element to be resizable. With the cursor grab the right or bottom border and drag to the desired width or height.

37 |
38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Demos 6 | 7 | 8 | 9 | 10 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Demos 6 | 7 | 8 | 9 | 10 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.16 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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 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 | -------------------------------------------------------------------------------- /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"); -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 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; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Resizable 1.8.16 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/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.16 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; } -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/lib/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Accordion 1.8.16 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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.16 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 | -------------------------------------------------------------------------------- /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"); -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.16 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; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Resizable 1.8.16 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/Resizable#theming 9 | */ 10 | .ui-resizable { position: relative;} 11 | .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } 12 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 13 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 14 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 15 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 16 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 17 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 18 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 19 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 20 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.16 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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/themes/ui-lightness/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Slider 1.8.16 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; } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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: ['1','2','3','4','5','6', 12 | '7','8','9','10','11','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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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ás', 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é', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hu']); 23 | }); 24 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 10 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 11 | monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 12 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 13 | dayNames: ['일','월','화','수','목','금','토'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kz.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['kz'] = { 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['kz']); 23 | }); 24 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | }); -------------------------------------------------------------------------------- /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 | jQuery(function($){ 4 | $.datepicker.regional['uk'] = { 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['uk']); 23 | }); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.16 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 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.8.16 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 | */ 13 | (function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a, 14 | g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Clip 1.8.16 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 | */ 13 | (function(b){b.effects.clip=function(e){return this.queue(function(){var a=b(this),i=["position","top","bottom","left","right","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){d.css(g.size,0);d.css(g.position, 14 | c/2)}var h={};h[g.size]=f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{queue:false,duration:e.duration,easing:e.options.easing,complete:function(){f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Drop 1.8.16 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 | */ 13 | (function(c){c.effects.drop=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true})/2:a.outerWidth({margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={opacity:e== 14 | "show"?1:0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.16 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(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery); 14 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.fold.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fold 1.8.16 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 | */ 13 | (function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1], 14 | 10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Highlight 1.8.16 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 | */ 13 | (function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& 14 | this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Pulsate 1.8.16 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 | */ 13 | (function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c
').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments); 14 | b.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /lib/jquery-ui/development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.16 2 | -------------------------------------------------------------------------------- /make/post.js: -------------------------------------------------------------------------------- 1 | return envision; 2 | })); 3 | -------------------------------------------------------------------------------- /make/pre.js: -------------------------------------------------------------------------------- 1 | define(function (root, factory) { 2 | if (typeof define === 'function' && define.amd) { 3 | // AMD. Register as an anonymous module. 4 | define(['flotr2', 'bonzo'], function (Flotr, bonzo) { 5 | // Also create a global in case some scripts 6 | // that are loaded still are looking for 7 | // a global even when an AMD loader is in use. 8 | return factory(root, Flotr, bonzo); 9 | }); 10 | } else { 11 | 12 | // Browser globals 13 | root.envision = factory(root, root.Flotr, root.bonzo); 14 | } 15 | }(this, function (root, Flotr, bonzo) { 16 | 17 | 18 | -------------------------------------------------------------------------------- /markdown/footer.md: -------------------------------------------------------------------------------- 1 | ## Development 2 | 3 | This project uses [smoosh](https://github.com/fat/smoosh) to build and [jasmine](http://pivotal.github.com/jasmine/) 4 | with [js-imagediff](https://github.com/HumbleSoftware/js-imagediff) to test. Tests may be executed by 5 | [jasmine-headless-webkit](http://johnbintz.github.com/jasmine-headless-webkit/) with 6 | `cd spec; jasmine-headless-webkit -j jasmine.yml -c` or by a browser by navigating to 7 | `spec/SpecRunner.html`. 8 | 9 | -------------------------------------------------------------------------------- /spec/helpers/MockAction.js: -------------------------------------------------------------------------------- 1 | function MockAction () { 2 | this.events = [ 3 | { 4 | handler : 'handle', 5 | consumer : 'consume' 6 | }, 7 | 'handleConsume' 8 | ]; 9 | } 10 | -------------------------------------------------------------------------------- /spec/helpers/MockAdapter.js: -------------------------------------------------------------------------------- 1 | function MockAdapter () {} 2 | MockAdapter.prototype = { 3 | attach : function (component, name, callback) { 4 | bean.add.apply(bean, arguments); 5 | }, 6 | detach : function () {}, 7 | trigger : function () { 8 | bean.fire.apply(bean, arguments); 9 | }, 10 | destroy : function () {} 11 | }; 12 | -------------------------------------------------------------------------------- /spec/helpers/MockComponent.js: -------------------------------------------------------------------------------- 1 | function MockComponent () {} 2 | MockComponent.prototype = { 3 | render : function (element) { 4 | this.container = element; 5 | }, 6 | destroy : function () {} 7 | }; 8 | -------------------------------------------------------------------------------- /spec/jasmine.yml: -------------------------------------------------------------------------------- 1 | src_files: 2 | # Library: 3 | - "spec/jasmine-jquery/lib/jasmine-jquery.js" 4 | - "spec/jasmine-jquery/vendor/jquery/jquery.js" 5 | - "lib/flotr2/flotr2.js" 6 | - "lib/bonzo/bonzo.min.js" 7 | # Vis source: 8 | - "js/Envision.js" 9 | - "js/Visualization.js" 10 | - "js/Component.js" 11 | - "js/Preprocessor.js" 12 | - "js/Interaction.js" 13 | helper_files: 14 | - "MockAction.js" 15 | - "MockAdapter.js" 16 | - "MockComponent.js" 17 | spec_files: 18 | - "js/Envision.js" 19 | - "js/Visualization.js" 20 | - "js/Component.js" 21 | - "js/Preprocessor.js" 22 | - "js/Interaction.js" 23 | src_dir: "." 24 | spec_dir: "spec/" 25 | helper_dir: "spec/helpers/" 26 | -------------------------------------------------------------------------------- /spec/jasmine/MIT.LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008-2011 Pivotal Labs 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /spec/jasmine/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HumbleSoftware/envisionjs/747cccd6f72f3b13539685c61904f8394cf6a0ac/spec/jasmine/jasmine_favicon.png -------------------------------------------------------------------------------- /spec/js/Envision.js: -------------------------------------------------------------------------------- 1 | describe('Envision', function () { 2 | 3 | var 4 | E = envision; 5 | 6 | it('defines envision', function () { 7 | expect(E).toBeDefined(); 8 | }); 9 | 10 | describe('Dependencies', function () { 11 | 12 | it('has underscore.js', function () { 13 | expect(E._).toBeDefined(); 14 | }); 15 | 16 | it('has bean', function () { 17 | expect(E.bean).toBeDefined(); 18 | }); 19 | 20 | it('has bonzo', function () { 21 | expect(E.bonzo).toBeDefined(); 22 | }); 23 | 24 | }); 25 | 26 | describe('Utility', function () { 27 | 28 | it('has a noConflict', function () { 29 | var root = (function () { return this; })(); // Not strict compatible? 30 | expect(root.envision).toBe(E); 31 | expect(E.noConflict).toBeDefined(); 32 | expect(E.noConflict()).toBe(E); 33 | expect(root.envision).not.toBe(E); 34 | }); 35 | 36 | }); 37 | 38 | }); 39 | --------------------------------------------------------------------------------