├── common
├── Tx.py
└── __init__.py
├── dsp
├── __init__.py
├── demodulator.py
├── downconverter.py
└── lowpass.py
├── pyhackrf
├── __init__.py
├── pyusb-based-hackrflib(Deprecated)
│ └── __init__.py
└── .gitignore
├── HackRFWebtools
├── __init__.py
├── urls.py
└── wsgi.py
├── html
├── static
│ ├── js
│ │ ├── func
│ │ │ ├── .svn
│ │ │ │ ├── format
│ │ │ │ ├── all-wcprops
│ │ │ │ ├── text-base
│ │ │ │ │ └── base.js.svn-base
│ │ │ │ └── entries
│ │ │ └── base.js
│ │ └── ajax.js
│ ├── jquery
│ │ ├── tests
│ │ │ ├── unit
│ │ │ │ ├── autocomplete
│ │ │ │ │ ├── remote_string_array.txt
│ │ │ │ │ ├── remote_object_array_labels.txt
│ │ │ │ │ ├── remote_object_array_values.txt
│ │ │ │ │ ├── autocomplete_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── tabs
│ │ │ │ │ ├── data
│ │ │ │ │ │ └── test.html
│ │ │ │ │ ├── tabs_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── sortable
│ │ │ │ │ ├── sortable_core.js
│ │ │ │ │ ├── sortable_test_helpers.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── sortable_common.js
│ │ │ │ ├── selectable
│ │ │ │ │ ├── selectable_core.js
│ │ │ │ │ ├── selectable_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── images
│ │ │ │ │ └── jqueryui_32x32.png
│ │ │ │ ├── resizable
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── test.jpg
│ │ │ │ │ ├── resizable_methods.js
│ │ │ │ │ ├── resizable_test_helpers.js
│ │ │ │ │ ├── resizable_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── datepicker
│ │ │ │ │ ├── images
│ │ │ │ │ │ └── calendar.gif
│ │ │ │ │ ├── datepicker_common.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── datepicker_test_helpers.js
│ │ │ │ ├── qunit-composite.css
│ │ │ │ ├── progressbar
│ │ │ │ │ ├── progressbar_common.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── progressbar_methods.js
│ │ │ │ ├── button
│ │ │ │ │ ├── button_common.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── button_events.js
│ │ │ │ ├── spinner
│ │ │ │ │ ├── spinner_test_helpers.js
│ │ │ │ │ ├── spinner_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── droppable
│ │ │ │ │ ├── droppable_test_helpers.js
│ │ │ │ │ ├── droppable_common.js
│ │ │ │ │ ├── droppable_core.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── swarminject.js
│ │ │ │ ├── menu
│ │ │ │ │ ├── menu_common.js
│ │ │ │ │ ├── menu_test_helpers.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── menu_core.js
│ │ │ │ ├── tooltip
│ │ │ │ │ ├── tooltip_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── slider
│ │ │ │ │ ├── slider_common.js
│ │ │ │ │ └── all.html
│ │ │ │ ├── accordion
│ │ │ │ │ ├── accordion_common.js
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── accordion_test_helpers.js
│ │ │ │ ├── subsuite.js
│ │ │ │ ├── core
│ │ │ │ │ └── all.html
│ │ │ │ ├── dialog
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── dialog_common.js
│ │ │ │ ├── widget
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── widget.html
│ │ │ │ ├── effects
│ │ │ │ │ └── all.html
│ │ │ │ ├── position
│ │ │ │ │ └── all.html
│ │ │ │ └── draggable
│ │ │ │ │ ├── all.html
│ │ │ │ │ └── draggable_common.js
│ │ │ ├── visual
│ │ │ │ ├── visual.css
│ │ │ │ ├── button
│ │ │ │ │ └── performance.html
│ │ │ │ ├── effects
│ │ │ │ │ └── effects.css
│ │ │ │ └── compound
│ │ │ │ │ ├── datepicker_dialog.html
│ │ │ │ │ └── tabs_tooltips.html
│ │ │ ├── index.js
│ │ │ ├── index.css
│ │ │ └── jquery.js
│ │ ├── demos
│ │ │ ├── tabs
│ │ │ │ ├── ajax
│ │ │ │ │ └── content4-broken.php
│ │ │ │ └── index.html
│ │ │ ├── tooltip
│ │ │ │ ├── ajax
│ │ │ │ │ ├── content1.html
│ │ │ │ │ └── content2.html
│ │ │ │ ├── images
│ │ │ │ │ ├── st-stephens.jpg
│ │ │ │ │ └── tower-bridge.jpg
│ │ │ │ └── index.html
│ │ │ ├── images
│ │ │ │ ├── calendar.gif
│ │ │ │ ├── pbar-ani.gif
│ │ │ │ ├── demo-config-on.gif
│ │ │ │ ├── icon-docs-info.gif
│ │ │ │ ├── demo-config-on-tile.gif
│ │ │ │ ├── demo-spindown-closed.gif
│ │ │ │ └── demo-spindown-open.gif
│ │ │ ├── position
│ │ │ │ ├── images
│ │ │ │ │ ├── earth.jpg
│ │ │ │ │ ├── flight.jpg
│ │ │ │ │ └── rocket.jpg
│ │ │ │ └── index.html
│ │ │ ├── datepicker
│ │ │ │ ├── images
│ │ │ │ │ └── calendar.gif
│ │ │ │ ├── inline.html
│ │ │ │ ├── jquery.ui.datepicker-zh-TW.js
│ │ │ │ ├── jquery.ui.datepicker-he.js
│ │ │ │ ├── multiple-calendars.html
│ │ │ │ ├── other-months.html
│ │ │ │ ├── icon-trigger.html
│ │ │ │ ├── dropdown-month-year.html
│ │ │ │ ├── default.html
│ │ │ │ ├── buttonbar.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jquery.ui.datepicker-fr.js
│ │ │ │ ├── show-week.html
│ │ │ │ └── min-max.html
│ │ │ ├── progressbar
│ │ │ │ ├── images
│ │ │ │ │ └── pbar-ani.gif
│ │ │ │ ├── index.html
│ │ │ │ └── default.html
│ │ │ ├── droppable
│ │ │ │ ├── images
│ │ │ │ │ ├── high_tatras.jpg
│ │ │ │ │ ├── high_tatras2.jpg
│ │ │ │ │ ├── high_tatras3.jpg
│ │ │ │ │ ├── high_tatras4.jpg
│ │ │ │ │ ├── high_tatras_min.jpg
│ │ │ │ │ ├── high_tatras2_min.jpg
│ │ │ │ │ ├── high_tatras3_min.jpg
│ │ │ │ │ └── high_tatras4_min.jpg
│ │ │ │ └── index.html
│ │ │ ├── autocomplete
│ │ │ │ ├── images
│ │ │ │ │ ├── jquery_32x32.png
│ │ │ │ │ ├── jqueryui_32x32.png
│ │ │ │ │ ├── sizzlejs_32x32.png
│ │ │ │ │ ├── transparent_1x1.png
│ │ │ │ │ └── ui-anim_basic_16x16.gif
│ │ │ │ └── index.html
│ │ │ ├── hide
│ │ │ │ └── index.html
│ │ │ ├── show
│ │ │ │ └── index.html
│ │ │ ├── widget
│ │ │ │ └── index.html
│ │ │ ├── addClass
│ │ │ │ └── index.html
│ │ │ ├── animate
│ │ │ │ └── index.html
│ │ │ ├── toggle
│ │ │ │ └── index.html
│ │ │ ├── removeClass
│ │ │ │ └── index.html
│ │ │ ├── switchClass
│ │ │ │ └── index.html
│ │ │ ├── toggleClass
│ │ │ │ └── index.html
│ │ │ ├── menu
│ │ │ │ └── index.html
│ │ │ ├── effect
│ │ │ │ └── index.html
│ │ │ ├── demos.css
│ │ │ ├── selectable
│ │ │ │ └── index.html
│ │ │ ├── spinner
│ │ │ │ └── index.html
│ │ │ ├── button
│ │ │ │ ├── index.html
│ │ │ │ ├── default.html
│ │ │ │ └── radio.html
│ │ │ ├── dialog
│ │ │ │ └── index.html
│ │ │ ├── accordion
│ │ │ │ └── index.html
│ │ │ ├── sortable
│ │ │ │ └── index.html
│ │ │ ├── draggable
│ │ │ │ ├── index.html
│ │ │ │ └── default.html
│ │ │ ├── resizable
│ │ │ │ ├── index.html
│ │ │ │ ├── textarea.html
│ │ │ │ ├── default.html
│ │ │ │ └── snap-to-grid.html
│ │ │ └── slider
│ │ │ │ ├── default.html
│ │ │ │ └── index.html
│ │ ├── themes
│ │ │ └── base
│ │ │ │ ├── images
│ │ │ │ ├── animated-overlay.gif
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── minified
│ │ │ │ ├── images
│ │ │ │ │ ├── animated-overlay.gif
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ │ ├── jquery.ui.selectable.min.css
│ │ │ │ ├── jquery.ui.tooltip.min.css
│ │ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ │ ├── jquery.ui.accordion.min.css
│ │ │ │ ├── jquery.ui.spinner.min.css
│ │ │ │ ├── jquery.ui.tabs.min.css
│ │ │ │ ├── jquery.ui.core.min.css
│ │ │ │ ├── jquery.ui.resizable.min.css
│ │ │ │ ├── jquery.ui.slider.min.css
│ │ │ │ ├── jquery.ui.dialog.min.css
│ │ │ │ └── jquery.ui.menu.min.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.tooltip.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ └── jquery.ui.accordion.css
│ │ └── ui
│ │ │ ├── .jshintrc
│ │ │ ├── jquery.ui.effect-fade.js
│ │ │ └── i18n
│ │ │ ├── jquery.ui.datepicker-ja.js
│ │ │ ├── jquery.ui.datepicker-ko.js
│ │ │ ├── jquery.ui.datepicker-zh-TW.js
│ │ │ ├── jquery.ui.datepicker-zh-CN.js
│ │ │ ├── jquery.ui.datepicker-zh-HK.js
│ │ │ ├── jquery.ui.datepicker-sr.js
│ │ │ ├── jquery.ui.datepicker-bs.js
│ │ │ ├── jquery.ui.datepicker-sr-SR.js
│ │ │ ├── jquery.ui.datepicker-he.js
│ │ │ ├── jquery.ui.datepicker-mk.js
│ │ │ ├── jquery.ui.datepicker-hr.js
│ │ │ ├── jquery.ui.datepicker-pt.js
│ │ │ ├── jquery.ui.datepicker-ca.js
│ │ │ ├── jquery.ui.datepicker-tr.js
│ │ │ ├── jquery.ui.datepicker-de.js
│ │ │ ├── jquery.ui.datepicker-en-GB.js
│ │ │ ├── jquery.ui.datepicker-sq.js
│ │ │ ├── jquery.ui.datepicker-sv.js
│ │ │ ├── jquery.ui.datepicker-tj.js
│ │ │ ├── jquery.ui.datepicker-az.js
│ │ │ ├── jquery.ui.datepicker-cs.js
│ │ │ ├── jquery.ui.datepicker-da.js
│ │ │ ├── jquery.ui.datepicker-gl.js
│ │ │ ├── jquery.ui.datepicker-hi.js
│ │ │ ├── jquery.ui.datepicker-id.js
│ │ │ ├── jquery.ui.datepicker-nb.js
│ │ │ ├── jquery.ui.datepicker-nn.js
│ │ │ ├── jquery.ui.datepicker-no.js
│ │ │ ├── jquery.ui.datepicker-eo.js
│ │ │ ├── jquery.ui.datepicker-es.js
│ │ │ ├── jquery.ui.datepicker-sk.js
│ │ │ ├── jquery.ui.datepicker-km.js
│ │ │ ├── jquery.ui.datepicker-ms.js
│ │ │ ├── jquery.ui.datepicker-af.js
│ │ │ ├── jquery.ui.datepicker-fr-CH.js
│ │ │ ├── jquery.ui.datepicker-rm.js
│ │ │ ├── jquery.ui.datepicker-ru.js
│ │ │ ├── jquery.ui.datepicker-th.js
│ │ │ ├── jquery.ui.datepicker-en-AU.js
│ │ │ ├── jquery.ui.datepicker-en-NZ.js
│ │ │ ├── jquery.ui.datepicker-fo.js
│ │ │ ├── jquery.ui.datepicker-kk.js
│ │ │ ├── jquery.ui.datepicker-pl.js
│ │ │ ├── jquery.ui.datepicker-cy-GB.js
│ │ │ ├── jquery.ui.datepicker-fr-CA.js
│ │ │ ├── jquery.ui.datepicker-it.js
│ │ │ ├── jquery.ui.datepicker-ky.js
│ │ │ ├── jquery.ui.datepicker-be.js
│ │ │ ├── jquery.ui.datepicker-eu.js
│ │ │ ├── jquery.ui.datepicker-is.js
│ │ │ ├── jquery.ui.datepicker-ka.js
│ │ │ ├── jquery.ui.datepicker-bg.js
│ │ │ ├── jquery.ui.datepicker-nl-BE.js
│ │ │ ├── jquery.ui.datepicker-nl.js
│ │ │ ├── jquery.ui.datepicker-hu.js
│ │ │ ├── jquery.ui.datepicker-lb.js
│ │ │ ├── jquery.ui.datepicker-hy.js
│ │ │ ├── jquery.ui.datepicker-lv.js
│ │ │ ├── jquery.ui.datepicker-el.js
│ │ │ ├── jquery.ui.datepicker-et.js
│ │ │ ├── jquery.ui.datepicker-fi.js
│ │ │ ├── jquery.ui.datepicker-sl.js
│ │ │ ├── jquery.ui.datepicker-ml.js
│ │ │ ├── jquery.ui.datepicker-pt-BR.js
│ │ │ ├── jquery.ui.datepicker-ta.js
│ │ │ ├── jquery.ui.datepicker-lt.js
│ │ │ ├── jquery.ui.datepicker-uk.js
│ │ │ ├── jquery.ui.datepicker-ar-DZ.js
│ │ │ ├── jquery.ui.datepicker-ro.js
│ │ │ ├── jquery.ui.datepicker-fr.js
│ │ │ └── jquery.ui.datepicker-vi.js
│ ├── css
│ │ └── ._layout.css
│ ├── default-logo.png
│ ├── default-logo2.png
│ └── fonts
│ │ ├── ionicons.eot
│ │ ├── ionicons.ttf
│ │ ├── ionicons.woff
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
└── wui4hf
│ ├── .project
│ └── index.html
├── manage.py
├── GlobalData.py
└── .gitignore
/common/Tx.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/common/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dsp/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/pyhackrf/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/HackRFWebtools/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/html/static/js/func/.svn/format:
--------------------------------------------------------------------------------
1 | 9
2 |
--------------------------------------------------------------------------------
/pyhackrf/pyusb-based-hackrflib(Deprecated)/__init__.py:
--------------------------------------------------------------------------------
1 | from hackrf import *
--------------------------------------------------------------------------------
/dsp/demodulator.py:
--------------------------------------------------------------------------------
1 | class Demodulator():
2 | def __init__(self):
3 | pass
--------------------------------------------------------------------------------
/dsp/downconverter.py:
--------------------------------------------------------------------------------
1 | class Downconverter():
2 | def __init__(self):
3 | pass
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/autocomplete/remote_string_array.txt:
--------------------------------------------------------------------------------
1 | ["java", "javascript"]
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/tabs/data/test.html:
--------------------------------------------------------------------------------
1 |
…content loaded via Ajax.
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/sortable/sortable_core.js:
--------------------------------------------------------------------------------
1 | /*
2 | * sortable_core.js
3 | */
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/selectable/selectable_core.js:
--------------------------------------------------------------------------------
1 | /*
2 | * selectable_core.js
3 | */
--------------------------------------------------------------------------------
/html/static/jquery/demos/tabs/ajax/content4-broken.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/tooltip/ajax/content1.html:
--------------------------------------------------------------------------------
1 | " ).progressbar({ value: 20 });
14 | equal( element.progressbar( "value" ), 20, "correct value as getter" );
15 | strictEqual( element.progressbar( "value", 30 ), element, "chainable as setter" );
16 | equal( element.progressbar( "option", "value" ), 30, "correct value after setter" );
17 | });
18 |
19 | test( "widget", function() {
20 | expect( 2 );
21 | var element = $( "#progressbar" ).progressbar(),
22 | widgetElement = element.progressbar( "widget" );
23 | equal( widgetElement.length, 1, "one element" );
24 | strictEqual( widgetElement[ 0 ], element[ 0 ], "same element" );
25 | });
26 |
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/minified/jquery.ui.core.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/minified/jquery.ui.resizable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/autocomplete/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
jQuery UI Autocomplete Demos
6 |
7 |
8 |
9 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/dialog/dialog_common.js:
--------------------------------------------------------------------------------
1 | TestHelpers.commonWidgetTests( "dialog", {
2 | defaults: {
3 | appendTo: "body",
4 | autoOpen: true,
5 | buttons: [],
6 | closeOnEscape: true,
7 | closeText: "close",
8 | disabled: false,
9 | dialogClass: "",
10 | draggable: true,
11 | height: "auto",
12 | hide: null,
13 | maxHeight: null,
14 | maxWidth: null,
15 | minHeight: 150,
16 | minWidth: 150,
17 | modal: false,
18 | position: {
19 | my: "center",
20 | at: "center",
21 | of: window,
22 | collision: "fit",
23 | using: $.ui.dialog.prototype.options.position.using
24 | },
25 | resizable: true,
26 | show: null,
27 | title: null,
28 | width: 300,
29 |
30 | // callbacks
31 | beforeClose: null,
32 | close: null,
33 | create: null,
34 | drag: null,
35 | dragStart: null,
36 | dragStop: null,
37 | focus: null,
38 | open: null,
39 | resize: null,
40 | resizeStart: null,
41 | resizeStop: null
42 | }
43 | });
44 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-he.js:
--------------------------------------------------------------------------------
1 | /* Hebrew initialisation for the UI Datepicker extension. */
2 | /* Written by Amir Hardon (ahardon at gmail dot com). */
3 | jQuery(function($){
4 | $.datepicker.regional['he'] = {
5 | closeText: 'סגור',
6 | prevText: '<הקודם',
7 | nextText: 'הבא>',
8 | currentText: 'היום',
9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
11 | monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
12 | 'יולי','אוג','ספט','אוק','נוב','דצמ'],
13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: true,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['he']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-mk.js:
--------------------------------------------------------------------------------
1 | /* Macedonian i18n for the jQuery UI date picker plugin. */
2 | /* Written by Stojce Slavkovski. */
3 | jQuery(function($){
4 | $.datepicker.regional['mk'] = {
5 | closeText: 'Затвори',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Денес',
9 | monthNames: ['Јануари','Февруари','Март','Април','Мај','Јуни',
10 | 'Јули','Август','Септември','Октомври','Ноември','Декември'],
11 | monthNamesShort: ['Јан','Фев','Мар','Апр','Мај','Јун',
12 | 'Јул','Авг','Сеп','Окт','Ное','Дек'],
13 | dayNames: ['Недела','Понеделник','Вторник','Среда','Четврток','Петок','Сабота'],
14 | dayNamesShort: ['Нед','Пон','Вто','Сре','Чет','Пет','Саб'],
15 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'],
16 | weekHeader: 'Сед',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['mk']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/datepicker/jquery.ui.datepicker-he.js:
--------------------------------------------------------------------------------
1 | /* Hebrew initialisation for the UI Datepicker extension. */
2 | /* Written by Amir Hardon (ahardon at gmail dot com). */
3 | jQuery(function($){
4 | $.datepicker.regional['he'] = {
5 | closeText: 'סגור',
6 | prevText: '<הקודם',
7 | nextText: 'הבא>',
8 | currentText: 'היום',
9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
11 | monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
12 | 'יולי','אוג','ספט','אוק','נוב','דצמ'],
13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: true,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['he']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
Date:
24 |
25 |
26 |
Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
23 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-ca.js:
--------------------------------------------------------------------------------
1 | /* Inicialització en català per a l'extensió 'UI date picker' per jQuery. */
2 | /* Writers: (joan.leon@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ca'] = {
5 | closeText: 'Tanca',
6 | prevText: 'Anterior',
7 | nextText: 'Següent',
8 | currentText: 'Avui',
9 | monthNames: ['gener','febrer','març','abril','maig','juny',
10 | 'juliol','agost','setembre','octubre','novembre','desembre'],
11 | monthNamesShort: ['gen','feb','març','abr','maig','juny',
12 | 'jul','ag','set','oct','nov','des'],
13 | dayNames: ['diumenge','dilluns','dimarts','dimecres','dijous','divendres','dissabte'],
14 | dayNamesShort: ['dg','dl','dt','dc','dj','dv','ds'],
15 | dayNamesMin: ['dg','dl','dt','dc','dj','dv','ds'],
16 | weekHeader: 'Set',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ca']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/draggable/draggable_common.js:
--------------------------------------------------------------------------------
1 | TestHelpers.commonWidgetTests( "draggable", {
2 | defaults: {
3 | appendTo: "parent",
4 | axis: false,
5 | cancel: "input,textarea,button,select,option",
6 | connectToSortable: false,
7 | containment: false,
8 | cursor: "auto",
9 | cursorAt: false,
10 | disabled: false,
11 | grid: false,
12 | handle: false,
13 | helper: "original",
14 | opacity: false,
15 | refreshPositions: false,
16 | revert: false,
17 | revertDuration: 500,
18 | scroll: true,
19 | scrollSensitivity: 20,
20 | scrollSpeed: 20,
21 | scope: "default",
22 | snap: false,
23 | snapMode: "both",
24 | snapTolerance: 20,
25 | stack: false,
26 | zIndex: false,
27 |
28 | //todo: remove the following option checks when interactions are rewritten:
29 | addClasses: true,
30 | delay: 0,
31 | distance: 1,
32 | iframeFix: false,
33 |
34 | // callbacks
35 | create: null,
36 | drag: null,
37 | start: null,
38 | stop: null
39 | }
40 | });
41 |
--------------------------------------------------------------------------------
/html/static/jquery/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: 'KW',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['de']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
Date:
24 |
25 |
26 |
The datepicker can show dates that come from other than the main month
27 | being displayed. These other dates can also be made selectable.
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-hi.js:
--------------------------------------------------------------------------------
1 | /* Hindi initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Michael Dawart. */
3 | jQuery(function($){
4 | $.datepicker.regional['hi'] = {
5 | closeText: 'बंद',
6 | prevText: 'पिछला',
7 | nextText: 'अगला',
8 | currentText: 'आज',
9 | monthNames: ['जनवरी ','फरवरी','मार्च','अप्रेल','मई','जून',
10 | 'जूलाई','अगस्त ','सितम्बर','अक्टूबर','नवम्बर','दिसम्बर'],
11 | monthNamesShort: ['जन', 'फर', 'मार्च', 'अप्रेल', 'मई', 'जून',
12 | 'जूलाई', 'अग', 'सित', 'अक्ट', 'नव', 'दि'],
13 | dayNames: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'],
14 | dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
15 | dayNamesMin: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
16 | weekHeader: 'हफ्ता',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['hi']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-nb.js:
--------------------------------------------------------------------------------
1 | /* Norwegian Bokmål initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Bjørn Johansen (post@bjornjohansen.no). */
3 | jQuery(function($){
4 | $.datepicker.regional['nb'] = {
5 | closeText: 'Lukk',
6 | prevText: '«Forrige',
7 | nextText: 'Neste»',
8 | currentText: 'I dag',
9 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'],
10 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'],
11 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'],
12 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'],
13 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'],
14 | weekHeader: 'Uke',
15 | dateFormat: 'dd.mm.yy',
16 | firstDay: 1,
17 | isRTL: false,
18 | showMonthAfterYear: false,
19 | yearSuffix: ''
20 | };
21 | $.datepicker.setDefaults($.datepicker.regional['nb']);
22 | });
23 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-nn.js:
--------------------------------------------------------------------------------
1 | /* Norwegian Nynorsk initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Bjørn Johansen (post@bjornjohansen.no). */
3 | jQuery(function($){
4 | $.datepicker.regional['nn'] = {
5 | closeText: 'Lukk',
6 | prevText: '«Førre',
7 | nextText: 'Neste»',
8 | currentText: 'I dag',
9 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'],
10 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'],
11 | dayNamesShort: ['sun','mån','tys','ons','tor','fre','lau'],
12 | dayNames: ['sundag','måndag','tysdag','onsdag','torsdag','fredag','laurdag'],
13 | dayNamesMin: ['su','må','ty','on','to','fr','la'],
14 | weekHeader: 'Veke',
15 | dateFormat: 'dd.mm.yy',
16 | firstDay: 1,
17 | isRTL: false,
18 | showMonthAfterYear: false,
19 | yearSuffix: ''
20 | };
21 | $.datepicker.setDefaults($.datepicker.regional['nn']);
22 | });
23 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-km.js:
--------------------------------------------------------------------------------
1 | /* Khmer initialisation for the jQuery calendar extension. */
2 | /* Written by Chandara Om (chandara.teacher@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['km'] = {
5 | closeText: 'ធ្វើរួច',
6 | prevText: 'មុន',
7 | nextText: 'បន្ទាប់',
8 | currentText: 'ថ្ងៃនេះ',
9 | monthNames: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា',
10 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'],
11 | monthNamesShort: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា',
12 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'],
13 | dayNames: ['អាទិត្យ', 'ចន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'],
14 | dayNamesShort: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'],
15 | dayNamesMin: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'],
16 | weekHeader: 'សប្ដាហ៍',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['km']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['fo']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-kk.js:
--------------------------------------------------------------------------------
1 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['kk'] = {
5 | closeText: 'Жабу',
6 | prevText: '<Алдыңғы',
7 | nextText: 'Келесі>',
8 | currentText: 'Бүгін',
9 | monthNames: ['Қаңтар','Ақпан','Наурыз','Сәуір','Мамыр','Маусым',
10 | 'Шілде','Тамыз','Қыркүйек','Қазан','Қараша','Желтоқсан'],
11 | monthNamesShort: ['Қаң','Ақп','Нау','Сәу','Мам','Мау',
12 | 'Шіл','Там','Қыр','Қаз','Қар','Жел'],
13 | dayNames: ['Жексенбі','Дүйсенбі','Сейсенбі','Сәрсенбі','Бейсенбі','Жұма','Сенбі'],
14 | dayNamesShort: ['жкс','дсн','ссн','срс','бсн','жма','снб'],
15 | dayNamesMin: ['Жк','Дс','Сс','Ср','Бс','Жм','Сн'],
16 | weekHeader: 'Не',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['kk']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/button/button_events.js:
--------------------------------------------------------------------------------
1 | /*
2 | * button_events.js
3 | */
4 | (function($) {
5 |
6 | module("button: events");
7 |
8 | test("buttonset works with single-quote named elements (#7505)", function() {
9 | expect( 1 );
10 | $("#radio3").buttonset();
11 | $("#radio33").click( function(){
12 | ok( true, "button clicks work with single-quote named elements" );
13 | }).click();
14 | });
15 |
16 | asyncTest( "when button loses focus, ensure active state is removed (#8559)", function() {
17 | expect( 1 );
18 |
19 | var element = $( "#button" ).button();
20 |
21 | element.one( "keypress", function() {
22 | element.one( "blur", function() {
23 | ok( !element.is(".ui-state-active"), "button loses active state appropriately" );
24 | start();
25 | }).blur();
26 | });
27 |
28 | element.focus();
29 | setTimeout(function() {
30 | element
31 | .simulate( "keydown", { keyCode: $.ui.keyCode.ENTER } )
32 | .simulate( "keypress", { keyCode: $.ui.keyCode.ENTER } );
33 | });
34 | });
35 |
36 | })(jQuery);
37 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-cy-GB.js:
--------------------------------------------------------------------------------
1 | /* Welsh/UK initialisation for the jQuery UI date picker plugin. */
2 | /* Written by William Griffiths. */
3 | jQuery(function($){
4 | $.datepicker.regional['cy-GB'] = {
5 | closeText: 'Done',
6 | prevText: 'Prev',
7 | nextText: 'Next',
8 | currentText: 'Today',
9 | monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin',
10 | 'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'],
11 | monthNamesShort: ['Ion', 'Chw', 'Maw', 'Ebr', 'Mai', 'Meh',
12 | 'Gor', 'Aws', 'Med', 'Hyd', 'Tac', 'Rha'],
13 | dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'],
14 | dayNamesShort: ['Sul', 'Llu', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'],
15 | dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'],
16 | weekHeader: 'Wy',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['cy-GB']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-fr-CA.js:
--------------------------------------------------------------------------------
1 | /* Canadian-French initialisation for the jQuery UI date picker plugin. */
2 | jQuery(function ($) {
3 | $.datepicker.regional['fr-CA'] = {
4 | closeText: 'Fermer',
5 | prevText: 'Précédent',
6 | nextText: 'Suivant',
7 | currentText: 'Aujourd\'hui',
8 | monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',
9 | 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
10 | monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin',
11 | 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
12 | dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
13 | dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
14 | dayNamesMin: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],
15 | weekHeader: 'Sem.',
16 | dateFormat: 'yy-mm-dd',
17 | firstDay: 0,
18 | isRTL: false,
19 | showMonthAfterYear: false,
20 | yearSuffix: ''
21 | };
22 | $.datepicker.setDefaults($.datepicker.regional['fr-CA']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-ky.js:
--------------------------------------------------------------------------------
1 | /* Kyrgyz (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Sergey Kartashov (ebishkek@yandex.ru). */
3 | jQuery(function($){
4 | $.datepicker.regional['ky'] = {
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 | };
23 | $.datepicker.setDefaults($.datepicker.regional['ky']);
24 | });
25 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
25 |
26 |
27 |
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.
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-be.js:
--------------------------------------------------------------------------------
1 | /* Belarusian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Pavel Selitskas */
3 | jQuery(function($){
4 | $.datepicker.regional['be'] = {
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['be']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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: ['ig.','al.','ar.','az.','og.','ol.','lr.'],
15 | dayNamesMin: ['ig','al','ar','az','og','ol','lr'],
16 | weekHeader: 'As',
17 | dateFormat: 'yy-mm-dd',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['eu']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-ka.js:
--------------------------------------------------------------------------------
1 | /* Georgian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Lado Lomidze (lado.lomidze@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ka'] = {
5 | closeText: 'დახურვა',
6 | prevText: '< წინა',
7 | nextText: 'შემდეგი >',
8 | currentText: 'დღეს',
9 | monthNames: ['იანვარი','თებერვალი','მარტი','აპრილი','მაისი','ივნისი', 'ივლისი','აგვისტო','სექტემბერი','ოქტომბერი','ნოემბერი','დეკემბერი'],
10 | monthNamesShort: ['იან','თებ','მარ','აპრ','მაი','ივნ', 'ივლ','აგვ','სექ','ოქტ','ნოე','დეკ'],
11 | dayNames: ['კვირა','ორშაბათი','სამშაბათი','ოთხშაბათი','ხუთშაბათი','პარასკევი','შაბათი'],
12 | dayNamesShort: ['კვ','ორშ','სამ','ოთხ','ხუთ','პარ','შაბ'],
13 | dayNamesMin: ['კვ','ორშ','სამ','ოთხ','ხუთ','პარ','შაბ'],
14 | weekHeader: 'კვირა',
15 | dateFormat: 'dd-mm-yy',
16 | firstDay: 1,
17 | isRTL: false,
18 | showMonthAfterYear: false,
19 | yearSuffix: ''};
20 | $.datepicker.setDefaults($.datepicker.regional['ka']);
21 | });
22 |
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Accordion#theming
10 | */
11 | .ui-accordion .ui-accordion-header {
12 | display: block;
13 | cursor: pointer;
14 | position: relative;
15 | margin-top: 2px;
16 | padding: .5em .5em .5em .7em;
17 | min-height: 0; /* support: IE7 */
18 | }
19 | .ui-accordion .ui-accordion-icons {
20 | padding-left: 2.2em;
21 | }
22 | .ui-accordion .ui-accordion-noicons {
23 | padding-left: .7em;
24 | }
25 | .ui-accordion .ui-accordion-icons .ui-accordion-icons {
26 | padding-left: 2.2em;
27 | }
28 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
29 | position: absolute;
30 | left: .5em;
31 | top: 50%;
32 | margin-top: -8px;
33 | }
34 | .ui-accordion .ui-accordion-content {
35 | padding: 1em 2.2em;
36 | border-top: 0;
37 | overflow: auto;
38 | }
39 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-nl-BE.js:
--------------------------------------------------------------------------------
1 | /* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */
2 | /* David De Sloovere @DavidDeSloovere */
3 | jQuery(function($){
4 | $.datepicker.regional['nl-BE'] = {
5 | closeText: 'Sluiten',
6 | prevText: '←',
7 | nextText: '→',
8 | currentText: 'Vandaag',
9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
11 | monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun',
12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['nl-BE']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-hu.js:
--------------------------------------------------------------------------------
1 | /* Hungarian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */
3 | jQuery(function($){
4 | $.datepicker.regional['hu'] = {
5 | closeText: 'bezár',
6 | prevText: 'vissza',
7 | nextText: 'előre',
8 | currentText: 'ma',
9 | monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
10 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
11 | monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
12 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
13 | dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
14 | dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
15 | dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
16 | weekHeader: 'Hét',
17 | dateFormat: 'yy.mm.dd.',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: true,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['hu']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-lb.js:
--------------------------------------------------------------------------------
1 | /* Luxembourgish initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Michel Weimerskirch */
3 | jQuery(function($){
4 | $.datepicker.regional['lb'] = {
5 | closeText: 'Fäerdeg',
6 | prevText: 'Zréck',
7 | nextText: 'Weider',
8 | currentText: 'Haut',
9 | monthNames: ['Januar','Februar','Mäerz','Abrëll','Mee','Juni',
10 | 'Juli','August','September','Oktober','November','Dezember'],
11 | monthNamesShort: ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun',
12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
13 | dayNames: ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'],
14 | dayNamesShort: ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'],
15 | dayNamesMin: ['So','Mé','Dë','Më','Do','Fr','Sa'],
16 | weekHeader: 'W',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['lb']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
Display only an outline of the element while resizing by setting the helper option to a CSS class.
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/html/static/jquery/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: 'näd',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['et']);
23 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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','La'],
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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/button/default.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | jQuery UI Button - Default functionality
6 |
7 |
8 |
9 |
10 |
11 |
12 |
21 |
22 |
23 |
24 | A button element
25 |
26 |
27 |
28 | An anchor
29 |
30 |
31 |
Examples of the markup that can be used for buttons: A button element, an input of type submit and an anchor.
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/sortable/sortable_common.js:
--------------------------------------------------------------------------------
1 | TestHelpers.commonWidgetTests( "sortable", {
2 | defaults: {
3 | appendTo: "parent",
4 | axis: false,
5 | cancel: "input,textarea,button,select,option",
6 | connectWith: false,
7 | containment: false,
8 | cursor: "auto",
9 | cursorAt: false,
10 | delay: 0,
11 | disabled: false,
12 | distance: 1,
13 | dropOnEmpty: true,
14 | forcePlaceholderSize: false,
15 | forceHelperSize: false,
16 | grid: false,
17 | handle: false,
18 | helper: "original",
19 | items: "> *",
20 | opacity: false,
21 | placeholder: false,
22 | revert: false,
23 | scroll: true,
24 | scrollSensitivity: 20,
25 | scrollSpeed: 20,
26 | scope: "default",
27 | tolerance: "intersect",
28 | zIndex: 1000,
29 |
30 | // callbacks
31 | activate: null,
32 | beforeStop: null,
33 | change: null,
34 | create: null,
35 | deactivate: null,
36 | out: null,
37 | over: null,
38 | receive: null,
39 | remove: null,
40 | sort: null,
41 | start: null,
42 | stop: null,
43 | update: null
44 | }
45 | });
46 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
24 |
25 |
26 |
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.
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | });
24 |
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/minified/jquery.ui.slider.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/minified/jquery.ui.dialog.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}
--------------------------------------------------------------------------------
/html/static/jquery/ui/i18n/jquery.ui.datepicker-uk.js:
--------------------------------------------------------------------------------
1 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
3 | /* Corrected by Igor Milla (igor.fsp.milla@gmail.com). */
4 | jQuery(function($){
5 | $.datepicker.regional['uk'] = {
6 | closeText: 'Закрити',
7 | prevText: '<',
8 | nextText: '>',
9 | currentText: 'Сьогодні',
10 | monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень',
11 | 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'],
12 | monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер',
13 | 'Лип','Сер','Вер','Жов','Лис','Гру'],
14 | dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'],
15 | dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'],
16 | dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'],
17 | weekHeader: 'Тиж',
18 | dateFormat: 'dd/mm/yy',
19 | firstDay: 1,
20 | isRTL: false,
21 | showMonthAfterYear: false,
22 | yearSuffix: ''};
23 | $.datepicker.setDefaults($.datepicker.regional['uk']);
24 | });
25 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
21 |
22 |
23 |
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.
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/html/static/js/func/.svn/entries:
--------------------------------------------------------------------------------
1 | 9
2 |
3 | dir
4 | 71
5 | http://166.111.80.194/svn/ic/web/server/y/static/js/func
6 | http://166.111.80.194/svn/ic
7 |
8 |
9 |
10 | 2013-05-26T16:02:47.180590Z
11 | 60
12 | qiaogf11
13 |
14 |
15 | svn:special svn:externals svn:needs-lock
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | 0
35 |
36 | y.js
37 | file
38 | 87
39 |
40 |
41 |
42 | 2013-06-03T02:55:36.921939Z
43 | 1d9ab7ed51db8a708cb4468e7b960375
44 | 2013-06-03T02:57:45.303505Z
45 | 87
46 | qiaogf11
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 | 12064
69 |
70 | base.js
71 | file
72 |
73 |
74 |
75 |
76 | 2013-05-21T06:46:26.167235Z
77 | 3439d6aefec29447c356764f35819490
78 | 2013-05-26T16:02:47.180590Z
79 | 60
80 | qiaogf11
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 | 306
103 |
104 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
23 |
24 |
25 |
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.
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/button/radio.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | jQuery UI Button - Radios
6 |
7 |
8 |
9 |
10 |
11 |
12 |
17 |
18 |
19 |
20 |
27 |
28 |
29 |
A set of three radio buttons transformed into a button set.
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/html/static/jquery/themes/base/minified/jquery.ui.menu.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/visual/compound/datepicker_dialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Compound Visual Test : Datepicker in Dialog
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/datepicker/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | jQuery UI Datepicker Demos
6 |
7 |
8 |
9 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
27 |
28 |
29 |
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.
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/wui4hf/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | web control ui 4 hack_rf
6 |
7 |
8 |
9 |
10 |
11 |
12 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/datepicker/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 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/menu/menu_core.js:
--------------------------------------------------------------------------------
1 | (function( $ ) {
2 |
3 | module( "menu: core" );
4 |
5 | test( "markup structure", function() {
6 | expect( 6 );
7 | var element = $( "#menu1" ).menu();
8 | ok( element.hasClass( "ui-menu" ), "main element is .ui-menu" );
9 | element.children().each(function( index ) {
10 | ok( $( this ).hasClass( "ui-menu-item" ), "child " + index + " is .ui-menu-item" );
11 | });
12 | });
13 |
14 | test( "accessibility", function () {
15 | expect( 4 );
16 | var element = $( "#menu1" ).menu();
17 |
18 | equal( element.attr( "role" ), "menu", "main role" );
19 | ok( !element.attr( "aria-activedescendant" ), "aria-activedescendant not set" );
20 |
21 | element.menu( "focus", $.Event(), element.children().eq( -2 ) );
22 | equal( element.attr( "aria-activedescendant" ), "testID1", "aria-activedescendant from existing id" );
23 |
24 | element.menu( "focus", $.Event(), element.children().eq( 0 ) );
25 | ok( /^ui-id-\d+$/.test( element.attr( "aria-activedescendant" ) ), "aria-activedescendant from generated id" );
26 |
27 | // Item roles are tested in the role option tests
28 | });
29 |
30 | })( jQuery );
31 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
24 |
25 |
26 |
The datepicker can show the week of the year. The default calculation follows
27 | the ISO 8601 definition: the week starts on Monday, the first week of the year
28 | contains the first Thursday of the year. This means that some days from one
29 | year may be placed into weeks 'belonging' to another year.
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/datepicker/datepicker_test_helpers.js:
--------------------------------------------------------------------------------
1 | TestHelpers.datepicker = {
2 | addMonths: function(date, offset) {
3 | var maxDay = 32 - new Date(date.getFullYear(), date.getMonth() + offset, 32).getDate();
4 | date.setDate(Math.min(date.getDate(), maxDay));
5 | date.setMonth(date.getMonth() + offset);
6 | return date;
7 | },
8 | equalsDate: function(d1, d2, message) {
9 | if (!d1 || !d2) {
10 | ok(false, message + " - missing date");
11 | return;
12 | }
13 | d1 = new Date(d1.getFullYear(), d1.getMonth(), d1.getDate());
14 | d2 = new Date(d2.getFullYear(), d2.getMonth(), d2.getDate());
15 | equal(d1.toString(), d2.toString(), message);
16 | },
17 | init: function(id, options) {
18 | $.datepicker.setDefaults($.datepicker.regional[""]);
19 | return $(id).datepicker($.extend({showAnim: ""}, options || {}));
20 | },
21 | onFocus: function( element, onFocus ) {
22 | var fn = function( event ){
23 | if( !event.originalEvent ) {
24 | return;
25 | }
26 | element.unbind( "focus", fn );
27 | onFocus();
28 | };
29 |
30 | element.bind( "focus", fn )[ 0 ].focus();
31 | },
32 | PROP_NAME: "datepicker"
33 | };
--------------------------------------------------------------------------------
/html/static/jquery/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 | Date:
21 |
22 |
23 |
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.
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/html/static/jquery/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 |
29 |
30 |
Enable any DOM element to be resizable. With the cursor grab the right or bottom border and drag to the desired width or height.
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/unit/widget/widget.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | jQuery UI Widget Test Suite
6 |
7 |
8 |
9 |
10 |
11 |
12 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/html/static/jquery/demos/resizable/snap-to-grid.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | jQuery UI Resizable - Snap to grid
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
17 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
Snap the resizable element to a grid. Set the dimensions of grid cells (height and width in pixels) with the grid option.
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/static/jquery/tests/visual/compound/tabs_tooltips.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Compound Visual Test : Tabs in Tabs
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 |
21 |
22 |
23 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------