├── 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 |

This content was loaded via ajax.

-------------------------------------------------------------------------------- /html/static/css/._layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/css/._layout.css -------------------------------------------------------------------------------- /html/static/default-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/default-logo.png -------------------------------------------------------------------------------- /html/static/default-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/default-logo2.png -------------------------------------------------------------------------------- /html/static/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/ionicons.eot -------------------------------------------------------------------------------- /html/static/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/ionicons.ttf -------------------------------------------------------------------------------- /html/static/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/ionicons.woff -------------------------------------------------------------------------------- /html/static/jquery/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- 1 |

This other content was loaded via ajax.

-------------------------------------------------------------------------------- /html/static/jquery/tests/unit/autocomplete/remote_object_array_labels.txt: -------------------------------------------------------------------------------- 1 | [{"label":"java"},{"label":"javascript"}] -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/autocomplete/remote_object_array_values.txt: -------------------------------------------------------------------------------- 1 | [{"value":"java"},{"value":"javascript"}] -------------------------------------------------------------------------------- /html/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /html/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /html/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /html/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /html/static/jquery/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/calendar.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /html/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /html/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /html/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /html/static/jquery/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/tests/unit/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/resizable/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/tests/unit/resizable/images/test.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/animated-overlay.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/tests/unit/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /html/static/jquery/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /html/static/jquery/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/datepicker/datepicker_common.js: -------------------------------------------------------------------------------- 1 | /* 2 | TestHelpers.commonWidgetTests( "datepicker", { 3 | defaults: { 4 | disabled: false 5 | } 6 | }); 7 | */ 8 | -------------------------------------------------------------------------------- /html/static/jquery/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/animated-overlay.gif -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /html/static/jquery/tests/visual/visual.css: -------------------------------------------------------------------------------- 1 | body { font-size: 62.5%; } 2 | #draggable, #resizable { width: 100px; height: 100px; background: #abc; } 3 | #droppable { width: 100px; height: 100px; background: #cde; } 4 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/HackRFWebtools/HEAD/html/static/jquery/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /html/static/jquery/tests/index.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | $( "#main" ) 4 | .addClass( "ui-widget" ) 5 | .find( "h1, h2" ) 6 | .addClass( "ui-widget-header ui-corner-top" ) 7 | .next() 8 | .addClass( "ui-widget-content ui-corner-bottom" ); 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/qunit-composite.css: -------------------------------------------------------------------------------- 1 | iframe.qunit-subsuite { 2 | position: fixed; 3 | bottom: 0; 4 | left: 0; 5 | 6 | margin: 0; 7 | padding: 0; 8 | border-width: 1px 0 0; 9 | height: 45%; 10 | width: 100%; 11 | 12 | background: #fff; 13 | } 14 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.autocomplete.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-autocomplete{position:absolute;top:0;left:0;cursor:default} -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.selectable.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-selectable-helper{position:absolute;z-index:100;border:1px dotted #000} -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/progressbar/progressbar_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "progressbar", { 2 | defaults: { 3 | disabled: false, 4 | max: 100, 5 | value: 0, 6 | 7 | //callbacks 8 | change: null, 9 | complete: null, 10 | create: null 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/sortable/sortable_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.sortable = { 2 | sort: function( handle, dx, dy, index, msg ) { 3 | $( handle ).simulate( "drag", { 4 | dx: dx, 5 | dy: dy 6 | }); 7 | equal( $( handle ).parent().children().index( handle ), index, msg ); 8 | } 9 | }; -------------------------------------------------------------------------------- /html/static/jquery/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/widget/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Widget Demo 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/button/button_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "button", { 2 | defaults: { 3 | disabled: null, 4 | icons: { 5 | primary: null, 6 | secondary: null 7 | }, 8 | label: null, 9 | text: true, 10 | 11 | // callbacks 12 | create: null 13 | } 14 | }); 15 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "HackRFWebtools.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /html/static/jquery/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/resizable/resizable_methods.js: -------------------------------------------------------------------------------- 1 | /* 2 | * resizable_methods.js 3 | */ 4 | (function($) { 5 | 6 | module("resizable: methods"); 7 | 8 | // this is here to make JSHint pass "unused", and we don't want to 9 | // remove the parameter for when we finally implement 10 | $.noop(); 11 | 12 | })(jQuery); 13 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/spinner/spinner_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.spinner = { 2 | simulateKeyDownUp: function( element, keyCode, shift ) { 3 | element 4 | .simulate( "keydown", { keyCode: keyCode, shiftKey: shift || false } ) 5 | .simulate( "keyup", { keyCode: keyCode, shiftKey: shift || false } ); 6 | } 7 | }; 8 | 9 | -------------------------------------------------------------------------------- /html/static/jquery/demos/menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Menu Demos 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /html/static/jquery/tests/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 62.5%; 3 | } 4 | .ui-widget-header { 5 | padding: 0.2em 0.5em; 6 | margin: 0; 7 | } 8 | .ui-widget-content { 9 | padding: 1em; 10 | margin-bottom: 1em; 11 | } 12 | p { 13 | margin: 0; 14 | } 15 | ul { 16 | margin: 0; 17 | list-style: none; 18 | } 19 | li { 20 | line-height: 2em; 21 | } 22 | -------------------------------------------------------------------------------- /html/static/jquery/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /html/static/jquery/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.tooltip.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-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/droppable/droppable_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.droppable = { 2 | shouldDrop: function() { 3 | // todo: actually implement this 4 | ok(true, "missing test - untested code is broken code"); 5 | }, 6 | shouldNotDrop: function() { 7 | // todo: actually implement this 8 | ok(true, "missing test - untested code is broken code"); 9 | } 10 | }; -------------------------------------------------------------------------------- /html/static/js/func/base.js: -------------------------------------------------------------------------------- 1 | var ic_base = { 2 | init:function(){ 3 | }, 4 | getUrlString:function(name){ 5 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 6 | var r = window.location.search.substr(1).match(reg); 7 | if (r != null) { 8 | return r[2]; 9 | } 10 | return null; 11 | }, 12 | }; 13 | ic_base.init(); 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 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/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /html/static/js/func/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 47 4 | /svn/ic/!svn/ver/60/web/server/y/static/js/func 5 | END 6 | y.js 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 52 10 | /svn/ic/!svn/ver/87/web/server/y/static/js/func/y.js 11 | END 12 | base.js 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 55 16 | /svn/ic/!svn/ver/60/web/server/y/static/js/func/base.js 17 | END 18 | -------------------------------------------------------------------------------- /html/static/jquery/demos/demos.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 62.5%; 3 | font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif"; 4 | } 5 | 6 | table { 7 | font-size: 1em; 8 | } 9 | 10 | .demo-description { 11 | clear: both; 12 | padding: 12px; 13 | font-size: 1.3em; 14 | line-height: 1.4em; 15 | } 16 | 17 | .ui-draggable, .ui-droppable { 18 | background-position: top; 19 | } 20 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/resizable/resizable_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.resizable = { 2 | drag: function( el, dx, dy ) { 3 | // this mouseover is to work around a limitation in resizable 4 | // TODO: fix resizable so handle doesn't require mouseover in order to be used 5 | $( el ).simulate("mouseover").simulate( "drag", { 6 | moves: 2, 7 | dx: dx, 8 | dy: dy 9 | }); 10 | } 11 | }; -------------------------------------------------------------------------------- /html/static/js/func/.svn/text-base/base.js.svn-base: -------------------------------------------------------------------------------- 1 | var ic_base = { 2 | init:function(){ 3 | }, 4 | getUrlString:function(name){ 5 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 6 | var r = window.location.search.substr(1).match(reg); 7 | if (r != null) { 8 | return r[2]; 9 | } 10 | return null; 11 | }, 12 | }; 13 | ic_base.init(); 14 | 15 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/swarminject.js: -------------------------------------------------------------------------------- 1 | // load testswarm agent 2 | (function() { 3 | var url = window.location.search; 4 | url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) ); 5 | if ( !url || url.indexOf("http") !== 0 ) { 6 | return; 7 | } 8 | document.write( "" ); 10 | })(); 11 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/tabs/tabs_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "tabs", { 2 | defaults: { 3 | active: null, 4 | collapsible: false, 5 | disabled: false, 6 | event: "click", 7 | heightStyle: "content", 8 | hide: null, 9 | show: null, 10 | 11 | // callbacks 12 | activate: null, 13 | beforeActivate: null, 14 | beforeLoad: null, 15 | create: null, 16 | load: null 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/menu/menu_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "menu", { 2 | defaults: { 3 | disabled: false, 4 | icons: { 5 | submenu: "ui-icon-carat-1-e" 6 | }, 7 | menus: "ul", 8 | position: { 9 | my: "left top", 10 | at: "right top" 11 | }, 12 | role: "menu", 13 | 14 | // callbacks 15 | blur: null, 16 | create: null, 17 | focus: null, 18 | select: null 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /html/static/jquery/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /html/static/jquery/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /html/static/jquery/ui/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "boss": true, 3 | "curly": true, 4 | "eqeqeq": true, 5 | "eqnull": true, 6 | "expr": true, 7 | "immed": true, 8 | "noarg": true, 9 | "onevar": true, 10 | "quotmark": "double", 11 | "smarttabs": true, 12 | "trailing": true, 13 | "undef": true, 14 | "unused": true, 15 | 16 | "browser": true, 17 | "jquery": true, 18 | 19 | "globals": { 20 | "Globalize": false 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /HackRFWebtools/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, include, url 2 | from views import * 3 | 4 | urlpatterns = patterns('', 5 | # Examples: 6 | # url(r'^$', 'HackRFWebtools.views.home', name='home'), 7 | # url(r'^blog/', include('blog.urls')), 8 | url(r'^$',requires_hackrf(index) ), 9 | url(r'^about$',about ), 10 | url(r'^do$',requires_hackrf(do) ), 11 | # url(r'^admin/', include(admin.site.urls)), 12 | ) 13 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 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/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 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/Selectable#theming 10 | */ 11 | .ui-selectable-helper { 12 | position: absolute; 13 | z-index: 100; 14 | border: 1px dotted black; 15 | } 16 | -------------------------------------------------------------------------------- /html/wui4hf/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | wui4hf 4 | 5 | 6 | 7 | 8 | 9 | com.aptana.ide.core.unifiedBuilder 10 | 11 | 12 | 13 | 14 | 15 | com.aptana.projects.webnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /HackRFWebtools/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for HackRFWebtools project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "HackRFWebtools.settings") 12 | 13 | from django.core.wsgi import get_wsgi_application 14 | application = get_wsgi_application() 15 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/droppable/droppable_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "droppable", { 2 | defaults: { 3 | accept: "*", 4 | activeClass: false, 5 | addClasses: true, 6 | disabled: false, 7 | greedy: false, 8 | hoverClass: false, 9 | scope: "default", 10 | tolerance: "intersect", 11 | 12 | // callbacks 13 | activate: null, 14 | create: null, 15 | deactivate: null, 16 | drop: null, 17 | out: null, 18 | over: null 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 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 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | body .ui-tooltip { 18 | border-width: 2px; 19 | } 20 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/tooltip/tooltip_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "tooltip", { 2 | defaults: { 3 | content: function() {}, 4 | disabled: false, 5 | hide: true, 6 | items: "[title]:not([disabled])", 7 | position: { 8 | my: "left top+15", 9 | at: "left bottom", 10 | collision: "flipfit flip" 11 | }, 12 | show: true, 13 | tooltipClass: null, 14 | track: false, 15 | 16 | // callbacks 17 | close: null, 18 | create: null, 19 | open: null 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/spinner/spinner_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "spinner", { 2 | defaults: { 3 | culture: null, 4 | disabled: false, 5 | icons: { 6 | down: "ui-icon-triangle-1-s", 7 | up: "ui-icon-triangle-1-n" 8 | }, 9 | incremental: true, 10 | max: null, 11 | min: null, 12 | numberFormat: null, 13 | page: 10, 14 | step: 1, 15 | 16 | // callbacks 17 | change: null, 18 | create: null, 19 | spin: null, 20 | start: null, 21 | stop: null 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/slider/slider_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "slider", { 2 | defaults: { 3 | animate: false, 4 | cancel: "input,textarea,button,select,option", 5 | delay: 0, 6 | disabled: false, 7 | distance: 0, 8 | max: 100, 9 | min: 0, 10 | orientation: "horizontal", 11 | range: false, 12 | step: 1, 13 | value: 0, 14 | values: null, 15 | 16 | // callbacks 17 | create: null, 18 | change: null, 19 | slide: null, 20 | start: null, 21 | stop: null 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/selectable/selectable_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests("selectable", { 2 | defaults: { 3 | appendTo: "body", 4 | autoRefresh: true, 5 | cancel: "input,textarea,button,select,option", 6 | delay: 0, 7 | disabled: false, 8 | distance: 0, 9 | filter: "*", 10 | tolerance: "touch", 11 | 12 | // callbacks 13 | create: null, 14 | selected: null, 15 | selecting: null, 16 | start: null, 17 | stop: null, 18 | unselected: null, 19 | unselecting: null 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.progressbar.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-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none} -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/accordion/accordion_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "accordion", { 2 | defaults: { 3 | active: 0, 4 | animate: {}, 5 | collapsible: false, 6 | disabled: false, 7 | event: "click", 8 | header: "> li > :first-child,> :not(li):even", 9 | heightStyle: "auto", 10 | icons: { 11 | "activeHeader": "ui-icon-triangle-1-s", 12 | "header": "ui-icon-triangle-1-e" 13 | }, 14 | 15 | // callbacks 16 | activate: null, 17 | beforeActivate: null, 18 | create: null 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /html/static/jquery/demos/spinner/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Spinner Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /html/static/jquery/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /html/static/jquery/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /html/static/jquery/tests/jquery.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | var parts = document.location.search.slice( 1 ).split( "&" ), 4 | length = parts.length, 5 | i = 0, 6 | current, 7 | version, 8 | url; 9 | 10 | for ( ; i < length; i++ ) { 11 | current = parts[ i ].split( "=" ); 12 | if ( current[ 0 ] === "jquery" ) { 13 | version = current[ 1 ]; 14 | break; 15 | } 16 | } 17 | 18 | if ( version === "git" ) { 19 | url = "http://code.jquery.com/jquery-git.js"; 20 | } else { 21 | url = "../../jquery-" + ( version || "1.9.1" ) + ".js"; 22 | } 23 | 24 | document.write( "" ); 25 | 26 | }() ); 27 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/subsuite.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | var versions = [ 4 | "1.6", "1.6.1", "1.6.2", "1.6.3", "1.6.4", 5 | "1.7", "1.7.1", "1.7.2", 6 | "1.8.0", "1.8.1", "1.8.2", "1.8.3", 7 | "1.9.0", "1.9.1", 8 | "git" 9 | ], 10 | additionalTests = { 11 | // component: [ "other_test.html" ] 12 | }; 13 | 14 | window.testAllVersions = function( widget ) { 15 | QUnit.testSuites( $.map( 16 | [ widget + ".html" ].concat( additionalTests[ widget ] || [] ), 17 | function( test ) { 18 | return $.map( versions, function( version ) { 19 | return test + "?jquery=" + version; 20 | }); 21 | })); 22 | }; 23 | 24 | }()); 25 | -------------------------------------------------------------------------------- /html/static/jquery/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /html/static/jquery/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/menu/menu_test_helpers.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | var lastItem, 4 | log = []; 5 | 6 | TestHelpers.menu = { 7 | log: function( message, clear ) { 8 | if ( clear ) { 9 | log.length = 0; 10 | } 11 | if ( message === undefined ) { 12 | message = lastItem; 13 | } 14 | log.push( $.trim( message ) ); 15 | }, 16 | 17 | logOutput: function() { 18 | return log.join( "," ); 19 | }, 20 | 21 | clearLog: function() { 22 | log.length = 0; 23 | }, 24 | 25 | click: function( menu, item ) { 26 | lastItem = item; 27 | menu.children( ":eq(" + item + ")" ).find( "a:first" ).trigger( "click" ); 28 | } 29 | }; 30 | 31 | })(); 32 | -------------------------------------------------------------------------------- /html/static/jquery/demos/tooltip/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tooltip Demos 6 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /dsp/lowpass.py: -------------------------------------------------------------------------------- 1 | class LowPass(): 2 | FIR_LENGTH = 64 3 | 4 | def __init__(self): 5 | self._passband = 0 6 | self._reqDecimation = 0 7 | self._reqOutputRate = 48 * 1000 8 | pass 9 | 10 | def setPassband(self, hz): 11 | self._passband = hz 12 | pass 13 | 14 | def setDecimation(self, n): 15 | self._reqDecimation = n 16 | self._reqOutputRate = 0 17 | pass 18 | 19 | def setOutputSampleRate(self, hz): 20 | self._reqDecimation = 0 21 | self._reqOutputRate = hz 22 | pass 23 | 24 | def working(self): 25 | pass 26 | 27 | def recalculate(self): 28 | pass -------------------------------------------------------------------------------- /html/static/jquery/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/autocomplete/autocomplete_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "autocomplete", { 2 | defaults: { 3 | appendTo: null, 4 | autoFocus: false, 5 | delay: 300, 6 | disabled: false, 7 | messages: { 8 | noResults: "No search results.", 9 | results: $.ui.autocomplete.prototype.options.messages.results 10 | }, 11 | minLength: 1, 12 | position: { 13 | my: "left top", 14 | at: "left bottom", 15 | collision: "none" 16 | }, 17 | source: null, 18 | 19 | // callbacks 20 | change: null, 21 | close: null, 22 | create: null, 23 | focus: null, 24 | open: null, 25 | response: null, 26 | search: null, 27 | select: null 28 | } 29 | }); 30 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.accordion.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-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto} -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/resizable/resizable_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "resizable", { 2 | defaults: { 3 | alsoResize: false, 4 | animate: false, 5 | animateDuration: "slow", 6 | animateEasing: "swing", 7 | aspectRatio: false, 8 | autoHide: false, 9 | cancel: "input,textarea,button,select,option", 10 | containment: false, 11 | delay: 0, 12 | disabled: false, 13 | distance: 1, 14 | ghost: false, 15 | grid: false, 16 | handles: "e,s,se", 17 | helper: false, 18 | maxHeight: null, 19 | maxWidth: null, 20 | minHeight: 10, 21 | minWidth: 10, 22 | zIndex: 90, 23 | 24 | // callbacks 25 | create: null, 26 | resize: null, 27 | start: null, 28 | stop: null 29 | } 30 | }); 31 | -------------------------------------------------------------------------------- /html/static/jquery/ui/jquery.ui.effect-fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade 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://api.jqueryui.com/fade-effect/ 10 | * 11 | * Depends: 12 | * jquery.ui.effect.js 13 | */ 14 | (function( $, undefined ) { 15 | 16 | $.effects.effect.fade = function( o, done ) { 17 | var el = $( this ), 18 | mode = $.effects.setMode( el, o.mode || "toggle" ); 19 | 20 | el.animate({ 21 | opacity: mode 22 | }, { 23 | queue: false, 24 | duration: o.duration, 25 | easing: o.easing, 26 | complete: done 27 | }); 28 | }; 29 | 30 | })( jQuery ); 31 | -------------------------------------------------------------------------------- /GlobalData.py: -------------------------------------------------------------------------------- 1 | from pyhackrf import pylibhackrf 2 | 3 | #hackrf device 4 | hackrf = pylibhackrf.HackRf() 5 | 6 | #default setting 7 | class HackrfSettings(): 8 | def __init__(self): 9 | self.modulation = 'NO' 10 | self.centre_frequency = 100 * 1000 * 1000 11 | self.sample_rate = 8 * 1000 * 1000 12 | self.rf_gain = 0 13 | self.if_gain = 16 14 | self.bb_gain = 20 15 | self.bb_bandwidth = 0 #automatically set baseband bandwidth 16 | self.current_status = 0 #0 stop 1 rx 2 tx 17 | self.fft_size = 8192 18 | self.fft_rate = 20 19 | self.name = None 20 | self.version = None 21 | self.serial_num = None 22 | self.rx_thread = None 23 | hackrf_settings = HackrfSettings() 24 | 25 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 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/Progressbar#theming 10 | */ 11 | .ui-progressbar { 12 | height: 2em; 13 | text-align: left; 14 | overflow: hidden; 15 | } 16 | .ui-progressbar .ui-progressbar-value { 17 | margin: -1px; 18 | height: 100%; 19 | } 20 | .ui-progressbar .ui-progressbar-overlay { 21 | background: url("images/animated-overlay.gif"); 22 | height: 100%; 23 | filter: alpha(opacity=25); 24 | opacity: 0.25; 25 | } 26 | .ui-progressbar-indeterminate .ui-progressbar-value { 27 | background-image: none; 28 | } 29 | -------------------------------------------------------------------------------- /html/static/js/ajax.js: -------------------------------------------------------------------------------- 1 | function _$call(method,params,callback){ 2 | for(key in params){ 3 | params[key] = JSON.stringify(params[key]) 4 | } 5 | params.method = method; 6 | $.ajax({ 7 | type : "GET", 8 | url : "/do", 9 | async : true, 10 | data : params, 11 | dataType :"json", 12 | crossDomain: true, 13 | success : function(data){ 14 | if(callback!=undefined&&callback!=null){ 15 | callback(data); 16 | } 17 | console.debug('ret',data); 18 | }, 19 | error : function(xmlHttp,textStatus){ 20 | alert('error'); 21 | } 22 | }); 23 | } 24 | -------------------------------------------------------------------------------- /html/static/jquery/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.spinner.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-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /html/static/jquery/demos/progressbar/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |
25 |

Default determinate progress bar.

26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/droppable/droppable_core.js: -------------------------------------------------------------------------------- 1 | /* 2 | * droppable_core.js 3 | */ 4 | 5 | (function($) { 6 | 7 | module("droppable: core"); 8 | 9 | test("element types", function() { 10 | var typeNames = ("p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" + 11 | ",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" + 12 | ",acronym,code,samp,kbd,var,img,hr" + 13 | ",input,button,label,select,iframe").split(","); 14 | 15 | expect( typeNames.length ); 16 | 17 | $.each(typeNames, function(i) { 18 | var typeName = typeNames[i], 19 | el = $(document.createElement(typeName)).appendTo("body"); 20 | 21 | (typeName === "table" && el.append("content")); 22 | el.droppable(); 23 | TestHelpers.droppable.shouldDrop(); 24 | el.droppable("destroy"); 25 | el.remove(); 26 | }); 27 | }); 28 | 29 | })(jQuery); 30 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/core/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Core Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

jQuery UI Core Test Suite

22 |

23 |
24 |

25 |
    26 |
    27 | 28 |
    29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/menu/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Menu Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

    jQuery UI Menu Test Suite

    22 |

    23 |
    24 |

    25 |
      26 |
      27 | 28 |
      29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/tabs/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

      jQuery UI Tabs Test Suite

      22 |

      23 |
      24 |

      25 |
        26 |
        27 | 28 |
        29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/button/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

        jQuery UI Button Test Suite

        22 |

        23 |
        24 |

        25 |
          26 |
          27 | 28 |
          29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/dialog/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

          jQuery UI Dialog Test Suite

          22 |

          23 |
          24 |

          25 |
            26 |
            27 | 28 |
            29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/slider/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

            jQuery UI Slider Test Suite

            22 |

            23 |
            24 |

            25 |
              26 |
              27 | 28 |
              29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/widget/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Widget Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

              jQuery UI Widget Test Suite

              22 |

              23 |
              24 |

              25 |
                26 |
                27 | 28 |
                29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/effects/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                jQuery UI Effects Test Suite

                22 |

                23 |
                24 |

                25 |
                  26 |
                  27 | 28 |
                  29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/position/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                  jQuery UI Position Test Suite

                  22 |

                  23 |
                  24 |

                  25 |
                    26 |
                    27 | 28 |
                    29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/sortable/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                    jQuery UI Sortable Test Suite

                    22 |

                    23 |
                    24 |

                    25 |
                      26 |
                      27 | 28 |
                      29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/spinner/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Spinner Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                      jQuery UI Spinner Test Suite

                      22 |

                      23 |
                      24 |

                      25 |
                        26 |
                        27 | 28 |
                        29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/tooltip/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tooltip Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                        jQuery UI Tooltip Test Suite

                        22 |

                        23 |
                        24 |

                        25 |
                          26 |
                          27 | 28 |
                          29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Demos 6 | 7 | 8 | 9 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/accordion/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                          jQuery UI Accordion Test Suite

                          22 |

                          23 |
                          24 |

                          25 |
                            26 |
                            27 | 28 |
                            29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/draggable/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                            jQuery UI Draggable Test Suite

                            22 |

                            23 |
                            24 |

                            25 |
                              26 |
                              27 | 28 |
                              29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/droppable/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                              jQuery UI Droppable Test Suite

                              22 |

                              23 |
                              24 |

                              25 |
                                26 |
                                27 | 28 |
                                29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/resizable/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                                jQuery UI Resizable Test Suite

                                22 |

                                23 |
                                24 |

                                25 |
                                  26 |
                                  27 | 28 |
                                  29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/visual/button/performance.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Button Visual Test: Initialization Performance 6 | 7 | 8 | 9 | 10 | 11 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /html/static/jquery/tests/visual/effects/effects.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 1em; 3 | padding: 0; 4 | background: #fff; 5 | color: #000; 6 | } 7 | 8 | ul.effects { 9 | list-style-type: none; 10 | margin: 0; 11 | padding: 0; 12 | } 13 | 14 | ul.effects li { 15 | padding: 0; 16 | width: 120px; 17 | height: 100px; 18 | float: left; 19 | margin-top: 20px; 20 | margin-left: 20px; 21 | } 22 | 23 | div.effect { 24 | width: 120px; 25 | height: 100px; 26 | background: #ccc; 27 | border: 5px outset #aaa; 28 | float: left; 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | 33 | div.current { 34 | border: 5px outset #FF9C08; 35 | background: #FF9C08; 36 | } 37 | 38 | div.effect p { 39 | color: #191919; 40 | font-weight: bold; 41 | margin: 0; 42 | padding: 10px; 43 | } 44 | 45 | .ui-effects-transfer { 46 | border: 1px dotted #fff; 47 | background: #666; 48 | opacity: 0.5; 49 | } 50 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/datepicker/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                                  jQuery UI Datepicker Test Suite

                                  22 |

                                  23 |
                                  24 |

                                  25 |
                                    26 |
                                    27 | 28 |
                                    29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/selectable/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                                    jQuery UI Selectable Test Suite

                                    22 |

                                    23 |
                                    24 |

                                    25 |
                                      26 |
                                      27 | 28 |
                                      29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/minified/jquery.ui.tabs.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-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0} -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/progressbar/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                                      jQuery UI Progressbar Test Suite

                                      22 |

                                      23 |
                                      24 |

                                      25 |
                                        26 |
                                        27 | 28 |
                                        29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/demos/datepicker/inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display inline 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 | Date:
                                        21 | 22 |
                                        23 |

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

                                        24 |
                                        25 | 26 | 27 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/autocomplete/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |

                                        jQuery UI Autocomplete Test Suite

                                        22 |

                                        23 |
                                        24 |

                                        25 |
                                          26 |
                                          27 | 28 |
                                          29 | 30 | 31 | -------------------------------------------------------------------------------- /html/static/jquery/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Demos 6 | 7 | 8 | 9 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /html/static/jquery/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월','2월','3월','4월','5월','6월', 10 | '7월','8월','9월','10월','11월','12월'], 11 | monthNamesShort: ['1월','2월','3월','4월','5월','6월', 12 | '7월','8월','9월','10월','11월','12월'], 13 | dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 12 | '七月','八月','九月','十月','十一月','十二月'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 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/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /html/static/jquery/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 12 | '七月','八月','九月','十月','十一月','十二月'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 12 | '七月','八月','九月','十月','十一月','十二月'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /html/static/jquery/demos/datepicker/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 12 | '七月','八月','九月','十月','十一月','十二月'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # PyInstaller 26 | # Usually these files are written by a python script from a template 27 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 28 | *.manifest 29 | *.spec 30 | 31 | # Installer logs 32 | pip-log.txt 33 | pip-delete-this-directory.txt 34 | 35 | # Unit test / coverage reports 36 | htmlcov/ 37 | .tox/ 38 | .coverage 39 | .cache 40 | nosetests.xml 41 | coverage.xml 42 | 43 | # Translations 44 | *.mo 45 | *.pot 46 | 47 | # Django stuff: 48 | *.log 49 | 50 | # Sphinx documentation 51 | docs/_build/ 52 | 53 | # PyBuilder 54 | target/ 55 | -------------------------------------------------------------------------------- /html/static/jquery/demos/slider/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 20 | 21 |
                                          22 | 23 |
                                          24 |

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

                                          25 |
                                          26 | 27 | 28 | -------------------------------------------------------------------------------- /html/static/jquery/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Demos 6 | 7 | 8 | 9 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/accordion/accordion_test_helpers.js: -------------------------------------------------------------------------------- 1 | TestHelpers.accordion = { 2 | equalHeight: function( accordion, height ) { 3 | accordion.find( ".ui-accordion-content" ).each(function() { 4 | equal( $( this ).outerHeight(), height ); 5 | }); 6 | }, 7 | 8 | setupTeardown: function() { 9 | var animate = $.ui.accordion.prototype.options.animate; 10 | return { 11 | setup: function() { 12 | $.ui.accordion.prototype.options.animate = false; 13 | }, 14 | teardown: function() { 15 | $.ui.accordion.prototype.options.animate = animate; 16 | } 17 | }; 18 | }, 19 | 20 | state: function( accordion ) { 21 | var expected = $.makeArray( arguments ).slice( 1 ), 22 | actual = accordion.find( ".ui-accordion-content" ).map(function() { 23 | return $( this ).css( "display" ) === "none" ? 0 : 1; 24 | }).get(); 25 | QUnit.push( QUnit.equiv(actual, expected), actual, expected ); 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /pyhackrf/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # PyInstaller 26 | # Usually these files are written by a python script from a template 27 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 28 | *.manifest 29 | *.spec 30 | 31 | # Installer logs 32 | pip-log.txt 33 | pip-delete-this-directory.txt 34 | 35 | # Unit test / coverage reports 36 | htmlcov/ 37 | .tox/ 38 | .coverage 39 | .cache 40 | nosetests.xml 41 | coverage.xml 42 | 43 | # Translations 44 | *.mo 45 | *.pot 46 | 47 | # Django stuff: 48 | *.log 49 | 50 | # Sphinx documentation 51 | docs/_build/ 52 | 53 | # PyBuilder 54 | target/ 55 | -------------------------------------------------------------------------------- /html/static/jquery/tests/unit/progressbar/progressbar_methods.js: -------------------------------------------------------------------------------- 1 | module( "progressbar: methods" ); 2 | 3 | test( "destroy", function() { 4 | expect( 1 ); 5 | domEqual( "#progressbar", function() { 6 | $( "#progressbar" ).progressbar().progressbar( "destroy" ); 7 | }); 8 | }); 9 | 10 | test( "value", function() { 11 | expect( 3 ); 12 | 13 | var element = $( "
                                          " ).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 | 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 |
                                          21 |
                                          22 | 23 | 24 | 25 |
                                          26 |
                                          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 |
                                          25 |

                                          Drag me around

                                          26 |
                                          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 |
                                          13 | 17 | 26 |
                                          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 |

                                          Resizable

                                          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 |

                                          jQuery UI Widget Test Suite

                                          30 |

                                          31 |
                                          32 |

                                          33 |
                                            34 |
                                            35 | 36 |
                                            37 |
                                            38 |
                                            ...
                                            39 |
                                            40 |
                                            41 | 42 |
                                            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 |

                                            Grid

                                            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 |
                                            24 | 28 |
                                            29 | label 30 |
                                            31 |
                                            32 | other label 33 |
                                            34 |
                                            35 | 36 | 37 | 38 | --------------------------------------------------------------------------------