├── js └── addclear │ ├── .gitignore │ ├── bower.json │ ├── package.json │ ├── add-clear.jquery.json │ └── LICENSE ├── jquery-ui ├── .gitignore ├── tests │ ├── unit │ │ ├── tabs │ │ │ ├── data │ │ │ │ └── test.html │ │ │ ├── tabs_common.js │ │ │ └── all.html │ │ ├── selectable │ │ │ ├── selectable_core.js │ │ │ ├── selectable_common.js │ │ │ └── all.html │ │ ├── autocomplete │ │ │ ├── remote_string_array.txt │ │ │ ├── remote_object_array_labels.txt │ │ │ ├── remote_object_array_values.txt │ │ │ ├── autocomplete_common.js │ │ │ └── all.html │ │ ├── resizable │ │ │ ├── images │ │ │ │ └── test.jpg │ │ │ ├── resizable_test_helpers.js │ │ │ ├── resizable_common.js │ │ │ ├── all.html │ │ │ └── resizable_methods.js │ │ ├── datepicker │ │ │ ├── images │ │ │ │ └── calendar.gif │ │ │ ├── datepicker_common.js │ │ │ ├── all.html │ │ │ └── datepicker_test_helpers.js │ │ ├── qunit-composite.css │ │ ├── progressbar │ │ │ ├── progressbar_common.js │ │ │ ├── all.html │ │ │ └── progressbar.html │ │ ├── sortable │ │ │ ├── sortable_test_helpers.js │ │ │ ├── all.html │ │ │ └── sortable_common.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 │ │ │ ├── all.html │ │ │ └── droppable_core.js │ │ ├── swarminject.js │ │ ├── menu │ │ │ ├── menu_common.js │ │ │ ├── menu_test_helpers.js │ │ │ └── all.html │ │ ├── tooltip │ │ │ ├── tooltip_common.js │ │ │ └── all.html │ │ ├── selectmenu │ │ │ ├── selectmenu_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 │ │ ├── draggable │ │ │ ├── all.html │ │ │ └── draggable_common.js │ │ └── position │ │ │ └── all.html │ ├── images │ │ ├── jquery_521x191.png │ │ └── jqueryui_32x32.png │ ├── visual │ │ ├── visual.css │ │ ├── button │ │ │ └── performance.html │ │ ├── effects │ │ │ └── effects.css │ │ ├── draggable │ │ │ └── replaced.html │ │ └── compound │ │ │ ├── datepicker_dialog.html │ │ │ └── tabs_tooltips.html │ ├── index.js │ ├── index.css │ ├── jquery.js │ ├── .jshintrc │ └── index.html ├── 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-open.gif │ │ └── demo-spindown-closed.gif │ ├── position │ │ ├── images │ │ │ ├── earth.jpg │ │ │ ├── flight.jpg │ │ │ └── rocket.jpg │ │ └── index.html │ ├── datepicker │ │ ├── images │ │ │ └── calendar.gif │ │ ├── inline.html │ │ ├── multiple-calendars.html │ │ ├── other-months.html │ │ ├── dropdown-month-year.html │ │ ├── icon-trigger.html │ │ ├── default.html │ │ ├── buttonbar.html │ │ ├── show-week.html │ │ ├── min-max.html │ │ ├── alt-field.html │ │ ├── index.html │ │ └── datepicker-zh-TW.js │ ├── droppable │ │ ├── images │ │ │ ├── high_tatras.jpg │ │ │ ├── high_tatras2.jpg │ │ │ ├── high_tatras3.jpg │ │ │ ├── high_tatras4.jpg │ │ │ ├── high_tatras2_min.jpg │ │ │ ├── high_tatras3_min.jpg │ │ │ ├── high_tatras4_min.jpg │ │ │ └── high_tatras_min.jpg │ │ └── index.html │ ├── progressbar │ │ ├── images │ │ │ └── pbar-ani.gif │ │ ├── index.html │ │ └── default.html │ ├── selectmenu │ │ ├── images │ │ │ ├── 24-rss-square.png │ │ │ ├── 24-video-square.png │ │ │ └── 24-podcast-square.png │ │ └── index.html │ ├── autocomplete │ │ ├── images │ │ │ ├── jquery_32x32.png │ │ │ ├── jqueryui_32x32.png │ │ │ ├── sizzlejs_32x32.png │ │ │ ├── transparent_1x1.png │ │ │ └── ui-anim_basic_16x16.gif │ │ └── index.html │ ├── widget │ │ └── index.html │ ├── demos.css │ ├── menu │ │ └── index.html │ ├── selectable │ │ └── index.html │ ├── spinner │ │ └── index.html │ ├── dialog │ │ └── index.html │ ├── button │ │ ├── index.html │ │ ├── default.html │ │ └── radio.html │ ├── accordion │ │ └── index.html │ ├── sortable │ │ └── index.html │ ├── effect │ │ └── index.html │ ├── slider │ │ ├── default.html │ │ └── index.html │ ├── draggable │ │ ├── index.html │ │ └── default.html │ ├── resizable │ │ ├── index.html │ │ ├── textarea.html │ │ ├── default.html │ │ ├── snap-to-grid.html │ │ ├── helper.html │ │ ├── visual-feedback.html │ │ ├── aspect-ratio.html │ │ └── animate.html │ └── index.html ├── .travis.yml ├── themes │ └── base │ │ ├── images │ │ ├── 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 │ │ ├── sortable.css │ │ ├── draggable.css │ │ ├── all.css │ │ ├── autocomplete.css │ │ ├── selectable.css │ │ ├── tooltip.css │ │ ├── base.css │ │ └── accordion.css ├── .gitattributes ├── .jscsrc ├── .csslintrc ├── .jshintrc ├── .editorconfig ├── ui │ ├── .jshintrc │ ├── effect-fade.js │ └── i18n │ │ ├── datepicker-ja.js │ │ ├── datepicker-ko.js │ │ ├── datepicker-zh-TW.js │ │ ├── datepicker-zh-HK.js │ │ ├── datepicker-zh-CN.js │ │ ├── datepicker-eu.js │ │ ├── datepicker-sr.js │ │ ├── datepicker-bs.js │ │ ├── datepicker-sr-SR.js │ │ ├── datepicker-he.js │ │ └── datepicker-mk.js ├── build │ └── interaction.json ├── external │ ├── jshint │ │ └── LICENSE │ │ │ └── LICENSE │ ├── jquery-1.6.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.6.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.6.2 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.6.3 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.6.4 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.7.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.7.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.7.2 │ │ └── MIT-LICENSE.txt │ ├── jquery-mousewheel │ │ └── LICENSE.txt │ ├── globalize │ │ └── LICENSE │ ├── jquery │ │ └── MIT-LICENSE.txt │ ├── qunit │ │ └── MIT-LICENSE.txt │ ├── jquery-1.10.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.10.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.10.2 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.8.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.8.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.8.2 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.8.3 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.9.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-1.9.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-2.0.0 │ │ └── MIT-LICENSE.txt │ ├── jquery-2.0.1 │ │ └── MIT-LICENSE.txt │ ├── jquery-2.0.2 │ │ └── MIT-LICENSE.txt │ └── jquery-2.0.3 │ │ └── MIT-LICENSE.txt └── bower.json ├── img ├── list.png ├── lock.png ├── delete.png ├── export.png ├── nsedit.png ├── lock_open.png └── delete_inverted.png ├── jtable ├── dev │ ├── build │ │ ├── jTableBuilder-build.bat │ │ ├── jTableBuilder.exe │ │ ├── JTableBuilder-source.zip │ │ └── README.md │ └── jquery.jtable.build.txt ├── screenshot.png ├── lib │ ├── themes │ │ ├── metro │ │ │ ├── add.png │ │ │ ├── close.png │ │ │ ├── edit.png │ │ │ ├── delete.png │ │ │ ├── column-asc.png │ │ │ ├── blue │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── brown │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── column-desc.png │ │ │ ├── green │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── pink │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── red │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── column-sortable.png │ │ │ ├── crimson │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── purple │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── darkgray │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ ├── darkorange │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ │ └── lightgray │ │ │ │ ├── loading.gif │ │ │ │ └── jtable.less │ │ ├── basic │ │ │ ├── close.png │ │ │ ├── edit.png │ │ │ ├── delete.png │ │ │ ├── column-asc.png │ │ │ ├── column-desc.png │ │ │ └── column-sortable.png │ │ ├── jqueryui │ │ │ ├── add.png │ │ │ ├── close.png │ │ │ ├── edit.png │ │ │ ├── delete.png │ │ │ ├── loading.gif │ │ │ ├── bg-thead.png │ │ │ ├── column-asc.png │ │ │ ├── column-desc.png │ │ │ └── column-sortable.png │ │ └── lightcolor │ │ │ ├── add.png │ │ │ ├── close.png │ │ │ ├── edit.png │ │ │ ├── bg-thead.png │ │ │ ├── delete.png │ │ │ ├── column-asc.png │ │ │ ├── blue │ │ │ └── loading.gif │ │ │ ├── column-desc.png │ │ │ ├── gray │ │ │ └── loading.gif │ │ │ ├── green │ │ │ └── loading.gif │ │ │ ├── red │ │ │ └── loading.gif │ │ │ ├── column-sortable.png │ │ │ └── orange │ │ │ └── loading.gif │ ├── extensions │ │ └── jquery.jtable.aspnetpagemethods.min.js │ └── localization │ │ ├── jquery.jtable.zh-CN.js │ │ ├── jquery.jtable.kr.js │ │ ├── jquery.jtable.cz.js │ │ ├── jquery.jtable.ar.js │ │ ├── jquery.jtable.pt-PT.js │ │ ├── jquery.jtable.bd.js │ │ ├── jquery.jtable.el.js │ │ ├── jquery.jtable.lt.js │ │ ├── jquery.jtable.no.js │ │ ├── jquery.jtable.fa.js │ │ ├── jquery.jtable.se.js │ │ ├── jquery.jtable.hr.js │ │ ├── jquery.jtable.tr.js │ │ ├── jquery.jtable.hu.js │ │ ├── jquery.jtable.ua.js │ │ └── jquery.jtable.pl.js └── bower.json ├── .gitignore ├── screenshots ├── login.png ├── slavezones.png └── master-import-zones.png ├── .gitmodules ├── includes └── scheme.sql ├── rotate-logs.php ├── doc └── apiconf.txt ├── docker-entrypoint.sh ├── templates.d └── template.json.example ├── css └── horizontal-menu.css └── Dockerfile /js/addclear/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /jquery-ui/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .sizecache.json -------------------------------------------------------------------------------- /img/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/list.png -------------------------------------------------------------------------------- /img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/lock.png -------------------------------------------------------------------------------- /jquery-ui/tests/unit/tabs/data/test.html: -------------------------------------------------------------------------------- 1 |

…content loaded via Ajax.

-------------------------------------------------------------------------------- /img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/delete.png -------------------------------------------------------------------------------- /img/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/export.png -------------------------------------------------------------------------------- /img/nsedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/nsedit.png -------------------------------------------------------------------------------- /img/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/lock_open.png -------------------------------------------------------------------------------- /jquery-ui/tests/unit/selectable/selectable_core.js: -------------------------------------------------------------------------------- 1 | /* 2 | * selectable_core.js 3 | */ -------------------------------------------------------------------------------- /jtable/dev/build/jTableBuilder-build.bat: -------------------------------------------------------------------------------- 1 | jTableBuilder.exe ..\jquery.jtable.build.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | includes/config.inc.php 2 | nsedit.sublime* 3 | etc 4 | templates.d/*.json 5 | -------------------------------------------------------------------------------- /jtable/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/screenshot.png -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /img/delete_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/img/delete_inverted.png -------------------------------------------------------------------------------- /jquery-ui/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/autocomplete/remote_string_array.txt: -------------------------------------------------------------------------------- 1 | [ "java", "javascript", "clojure" ] 2 | -------------------------------------------------------------------------------- /jquery-ui/demos/tooltip/ajax/content1.html: -------------------------------------------------------------------------------- 1 |

This content was loaded via ajax.

-------------------------------------------------------------------------------- /screenshots/slavezones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/screenshots/slavezones.png -------------------------------------------------------------------------------- /jquery-ui/demos/tooltip/ajax/content2.html: -------------------------------------------------------------------------------- 1 |

This other content was loaded via ajax.

-------------------------------------------------------------------------------- /jtable/lib/themes/metro/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/add.png -------------------------------------------------------------------------------- /jtable/lib/themes/basic/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/close.png -------------------------------------------------------------------------------- /jtable/lib/themes/basic/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/edit.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/close.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/edit.png -------------------------------------------------------------------------------- /jquery-ui/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | before_script: 5 | - npm install -g grunt-cli 6 | -------------------------------------------------------------------------------- /jquery-ui/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/calendar.gif -------------------------------------------------------------------------------- /jquery-ui/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /jtable/dev/build/jTableBuilder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/dev/build/jTableBuilder.exe -------------------------------------------------------------------------------- /jtable/lib/themes/basic/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/delete.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/add.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/close.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/edit.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/add.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/delete.png -------------------------------------------------------------------------------- /screenshots/master-import-zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/screenshots/master-import-zones.png -------------------------------------------------------------------------------- /jtable/lib/themes/basic/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/column-asc.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/delete.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/close.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/edit.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/column-asc.png -------------------------------------------------------------------------------- /jquery-ui/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /jquery-ui/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /jquery-ui/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /jquery-ui/tests/images/jquery_521x191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/tests/images/jquery_521x191.png -------------------------------------------------------------------------------- /jquery-ui/tests/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/tests/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /jtable/dev/build/JTableBuilder-source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/dev/build/JTableBuilder-source.zip -------------------------------------------------------------------------------- /jtable/lib/themes/basic/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/column-desc.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/bg-thead.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/column-asc.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/bg-thead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/bg-thead.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/delete.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/blue/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/brown/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/brown/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/column-desc.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/green/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/pink/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/pink/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/red/loading.gif -------------------------------------------------------------------------------- /jquery-ui/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /jtable/lib/themes/basic/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/basic/column-sortable.png -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/column-desc.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/column-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/column-asc.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/column-sortable.png -------------------------------------------------------------------------------- /jtable/lib/themes/metro/crimson/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/crimson/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/purple/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/purple/loading.gif -------------------------------------------------------------------------------- /jquery-ui/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /jquery-ui/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /jquery-ui/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /jquery-ui/demos/tooltip/images/st-stephens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/tooltip/images/st-stephens.jpg -------------------------------------------------------------------------------- /jquery-ui/tests/unit/resizable/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/tests/unit/resizable/images/test.jpg -------------------------------------------------------------------------------- /jtable/lib/themes/jqueryui/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/jqueryui/column-sortable.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/blue/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/blue/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/column-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/column-desc.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/gray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/gray/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/green/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/green/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/red/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/red/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/darkgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/darkgray/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/darkorange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/darkorange/loading.gif -------------------------------------------------------------------------------- /jtable/lib/themes/metro/lightgray/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/metro/lightgray/loading.gif -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /jquery-ui/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /jquery-ui/demos/tooltip/images/tower-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/tooltip/images/tower-bridge.jpg -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/column-sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/column-sortable.png -------------------------------------------------------------------------------- /jtable/lib/themes/lightcolor/orange/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/themes/lightcolor/orange/loading.gif -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/selectmenu/images/24-rss-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/selectmenu/images/24-rss-square.png -------------------------------------------------------------------------------- /jquery-ui/tests/unit/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/tests/unit/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /jquery-ui/demos/selectmenu/images/24-video-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/selectmenu/images/24-video-square.png -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /jquery-ui/demos/selectmenu/images/24-podcast-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/selectmenu/images/24-podcast-square.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /jquery-ui/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # JS files must always use LF for tools to work 5 | *.js eol=lf 6 | -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /jquery-ui/tests/unit/datepicker/datepicker_common.js: -------------------------------------------------------------------------------- 1 | /* 2 | TestHelpers.commonWidgetTests( "datepicker", { 3 | defaults: { 4 | disabled: false 5 | } 6 | }); 7 | */ 8 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /jtable/lib/extensions/jquery.jtable.aspnetpagemethods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jtable/lib/extensions/jquery.jtable.aspnetpagemethods.min.js -------------------------------------------------------------------------------- /jquery-ui/tests/unit/autocomplete/remote_object_array_labels.txt: -------------------------------------------------------------------------------- 1 | [ 2 | { "label": "java", "value": null }, 3 | { "label": "javascript", "value": "" }, 4 | { "label": "clojure" } 5 | ] 6 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/autocomplete/remote_object_array_values.txt: -------------------------------------------------------------------------------- 1 | [ 2 | { "value": "java", "label": null }, 3 | { "value": "javascript", "label": "" }, 4 | { "value": "clojure" } 5 | ] 6 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuxis-ie/nsedit/HEAD/jquery-ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | }; -------------------------------------------------------------------------------- /jquery-ui/.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "jquery", 3 | 4 | // disabled until `widget_slice` et al are addressed 5 | "requireCamelCaseOrUpperCaseIdentifiers": null, 6 | 7 | // Ref https://github.com/jquery/contribute.jquery.org/issues/80#issuecomment-45253460 8 | "maximumLineLength": null 9 | } 10 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "jquery-ui"] 2 | path = jquery-ui 3 | url = https://github.com/jquery/jquery-ui.git 4 | [submodule "jtable"] 5 | path = jtable 6 | url = https://github.com/hikalkan/jtable.git 7 | [submodule "addclear"] 8 | path = js/addclear 9 | url = https://github.com/skorecky/Add-Clear.git 10 | -------------------------------------------------------------------------------- /jquery-ui/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false, 3 | "box-model": false, 4 | "compatible-vendor-prefixes": false, 5 | "duplicate-background-images": false, 6 | "import": false, 7 | "important": false, 8 | "outline-none": false, 9 | "overqualified-elements": false, 10 | "text-indent": false 11 | } 12 | -------------------------------------------------------------------------------- /jtable/dev/build/README.md: -------------------------------------------------------------------------------- 1 | jtable builder 2 | ====== 3 | 4 | Although you can manually merge all javascript files in order in jquery.jtable.build.txt file, you can use this tool to merge all javascript files and build jquery.jtable.js. Just run jTableBuilder-build.bat. 5 | 6 | NOTE: It's a C# (.NET 4.0) application. 7 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jtable/lib/themes/metro/pink/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Pink 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'pink'; 9 | @main-theme-color: #9f00a7; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/red/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Red 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'red'; 9 | @main-theme-color: #e51400; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/blue/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Blue 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder: 'blue'; 9 | @main-theme-color: #2D89EF; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/brown/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Brown 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'brown'; 9 | @main-theme-color: #835a2c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/green/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Green 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'green'; 9 | @main-theme-color: #00a300; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/crimson/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Crimson 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'crimson'; 9 | @main-theme-color: #c30000; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/purple/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Purple 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'purple'; 9 | @main-theme-color: #603cba; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /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 | "node": true 17 | } 18 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/sortable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Sortable @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-sortable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /jtable/lib/themes/metro/darkgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkgray'; 9 | @main-theme-color: #454545; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jquery-ui/themes/base/draggable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Draggable @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-draggable-handle { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | -------------------------------------------------------------------------------- /jtable/lib/themes/metro/darkorange/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Dark orange 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'darkorange'; 9 | @main-theme-color: #da532c; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jtable/lib/themes/metro/lightgray/jtable.less: -------------------------------------------------------------------------------- 1 | /* jTable metro style theme - Light gray 2 | * Created by Halil İbrahim Kalkan 3 | * http://www.jtable.org 4 | */ 5 | 6 | @import "../jtable_metro_base.less"; 7 | 8 | @theme-folder:'lightgray'; 9 | @main-theme-color: #707070; 10 | 11 | .jtable_metro_base(@theme-folder, @main-theme-color); -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import "base.css"; 12 | @import "theme.css"; 13 | -------------------------------------------------------------------------------- /jquery-ui/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 | }; -------------------------------------------------------------------------------- /jquery-ui/demos/widget/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Widget Demo 7 | 8 | 9 | 10 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | }; -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | indent_style = tab 8 | end_of_line = lf 9 | charset = utf-8 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | 13 | [external/**] 14 | trim_trailing_whitespace = false 15 | insert_final_newline = varies 16 | end_of_line = varies 17 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/autocomplete/#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /jquery-ui/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Position Demo 7 | 8 | 9 | 10 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /jquery-ui/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 | items: "> *", 8 | menus: "ul", 9 | position: { 10 | my: "left-1 top", 11 | at: "right top" 12 | }, 13 | role: "menu", 14 | 15 | // callbacks 16 | blur: null, 17 | create: null, 18 | focus: null, 19 | select: null 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-selectable { 10 | -ms-touch-action: none; 11 | touch-action: none; 12 | } 13 | .ui-selectable-helper { 14 | position: absolute; 15 | z-index: 100; 16 | border: 1px dotted black; 17 | } 18 | -------------------------------------------------------------------------------- /jquery-ui/demos/menu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Menu Demos 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /jquery-ui/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 | "es3": true, 18 | "jquery": true, 19 | 20 | "globals": { 21 | "define": false, 22 | "Globalize": false 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jtable/dev/jquery.jtable.build.txt: -------------------------------------------------------------------------------- 1 | create ..\jquery.jtable.js 2 | add jquery.jtable.header.txt 3 | add jquery.jtable.core.js 4 | add jquery.jtable.utils.js 5 | add jquery.jtable.forms.js 6 | add jquery.jtable.creation.js 7 | add jquery.jtable.editing.js 8 | add jquery.jtable.deletion.js 9 | add jquery.jtable.selecting.js 10 | add jquery.jtable.paging.js 11 | add jquery.jtable.sorting.js 12 | add jquery.jtable.dynamiccolumns.js 13 | add jquery.jtable.masterchild.js 14 | -------------------------------------------------------------------------------- /includes/scheme.sql: -------------------------------------------------------------------------------- 1 | PRAGMA foreign_keys = 1; 2 | 3 | CREATE TABLE users ( 4 | id INTEGER PRIMARY KEY AUTOINCREMENT, 5 | emailaddress VARCHAR UNIQUE NOT NULL, 6 | password VARCHAR NOT NULL, 7 | isadmin BOOLEAN DEFAULT FALSE); 8 | 9 | CREATE TABLE zones ( 10 | id INTEGER PRIMARY KEY AUTOINCREMENT, 11 | zone VARCHAR NOT NULL, 12 | owner INTEGER NOT NULL, 13 | UNIQUE(zone), 14 | FOREIGN KEY(owner) REFERENCES users(id) ON DELETE CASCADE ON UPDATE CASCADE ); 15 | -------------------------------------------------------------------------------- /rotate-logs.php: -------------------------------------------------------------------------------- 1 | '; 12 | rotatelogs(); 13 | } else { 14 | echo "Rotating logs has been disabled." 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /jquery-ui/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Selectable Demos 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/selectmenu/selectmenu_common.js: -------------------------------------------------------------------------------- 1 | TestHelpers.commonWidgetTests( "selectmenu", { 2 | defaults: { 3 | appendTo: null, 4 | disabled: null, 5 | icons: { 6 | button: "ui-icon-triangle-1-s" 7 | }, 8 | position: { 9 | my: "left top", 10 | at: "left bottom", 11 | collision: "none" 12 | }, 13 | width: null, 14 | 15 | // callbacks 16 | change: null, 17 | close: null, 18 | create: null, 19 | focus: null, 20 | open: null, 21 | select: null 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/demos/selectmenu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Selectmenu Demos 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /doc/apiconf.txt: -------------------------------------------------------------------------------- 1 | There are several values in config.inc.php that you MUST set for the API to work. 2 | 3 | $apipass : The API password or API Authentication Key 4 | $apiip : The IP on which the API is reachable 5 | $apiport : The port on which the API is reachable. Default port is 8081 6 | $apivers : The version of the API to use. In pre-PDNS 4.0, the API was 7 | reachable via /. In 4.0, the path was changed to /api/v1. You do NOT set the path of the API, you set the version of the API. 0 is for pre 4.0, 1 is currently only used in 4.0. 8 | 9 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/tooltip/#theming 10 | */ 11 | .ui-tooltip { 12 | padding: 8px; 13 | position: absolute; 14 | z-index: 9999; 15 | max-width: 300px; 16 | -webkit-box-shadow: 0 0 5px #aaa; 17 | box-shadow: 0 0 5px #aaa; 18 | } 19 | body .ui-tooltip { 20 | border-width: 2px; 21 | } 22 | -------------------------------------------------------------------------------- /jquery-ui/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Progressbar Demos 7 | 8 | 9 | 10 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /js/addclear/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Add-Clear", 3 | "authors": [ 4 | "Stephen Korecky " 5 | ], 6 | "description": "jQuery Plugin to add a (x) clear button to your input fields", 7 | "main": "addclear.js", 8 | "keywords": [ 9 | "forms", 10 | "clear", 11 | "input", 12 | "text", 13 | "search" 14 | ], 15 | "license": "MIT", 16 | "homepage": "http://skorecky.github.io/Add-Clear/", 17 | "ignore": [ 18 | "**/.*", 19 | "node_modules", 20 | "bower_components", 21 | "test", 22 | "tests" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /jquery-ui/demos/spinner/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Spinner Demos 7 | 8 | 9 | 10 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /jquery-ui/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Dialog Demos 7 | 8 | 9 | 10 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /jquery-ui/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Button Demos 7 | 8 | 9 | 10 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /jquery-ui/tests/jquery.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | var current, version, url, 4 | parts = document.location.search.slice( 1 ).split( "&" ), 5 | length = parts.length, 6 | i = 0; 7 | 8 | for ( ; i < length; i++ ) { 9 | current = parts[ i ].split( "=" ); 10 | if ( current[ 0 ] === "jquery" ) { 11 | version = current[ 1 ]; 12 | break; 13 | } 14 | } 15 | 16 | if ( version === "git" ) { 17 | url = "http://code.jquery.com/jquery-git.js"; 18 | } else { 19 | url = "../../../external/jquery-" + ( version || "1.10.2" ) + "/jquery.js"; 20 | } 21 | 22 | document.write( "" ); 23 | 24 | }() ); 25 | -------------------------------------------------------------------------------- /jquery-ui/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 + ")" ).trigger( "click" ); 28 | } 29 | }; 30 | 31 | })(); 32 | -------------------------------------------------------------------------------- /jquery-ui/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Tabs Demos 7 | 8 | 9 | 10 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/subsuite.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | var versions = [ 4 | "1.6.0", "1.6.1", "1.6.2", "1.6.3", "1.6.4", 5 | "1.7.0", "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 | "1.10.0", "1.10.1", "1.10.2", 9 | "git" 10 | ], 11 | additionalTests = { 12 | // component: [ "other_test.html" ] 13 | }; 14 | 15 | window.testAllVersions = function( widget ) { 16 | QUnit.testSuites( $.map( 17 | [ widget + ".html" ].concat( additionalTests[ widget ] || [] ), 18 | function( test ) { 19 | return $.map( versions, function( version ) { 20 | return test + "?jquery=" + version; 21 | }); 22 | })); 23 | }; 24 | 25 | }()); 26 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Accordion Demos 7 | 8 | 9 | 10 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /jquery-ui/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Sortable Demos 7 | 8 | 9 | 10 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/selectmenu/all.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectmenu Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/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 |
22 |
23 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /jquery-ui/demos/tooltip/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Tooltip Demos 7 | 8 | 9 | 10 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | [ -z "$PDNSAPIIP" ] && echo "Set PDNSAPIIP to your PowerDNS API IP/Hostname" && exit 1; 3 | [ -z "$PDNSAPIPWD" ] && echo "Set PDNSAPIPWD to your PowerDNS API Password" && exit 1; 4 | 5 | sed "s/\$apipass = ''/\$apipass = '$PDNSAPIPWD'/" -i /app/nsedit/includes/config.inc.php 6 | sed "s/\$apiip = ''/\$apiip = '$PDNSAPIIP'/" -i /app/nsedit/includes/config.inc.php 7 | if [[ $PDNSAPIPORT && ${PDNSAPIPORT-x} ]] 8 | then 9 | sed "s/\$apiport = '8081'/\$apiport = '$PDNSAPIPORT'/" -i /app/nsedit/includes/config.inc.php 10 | fi 11 | sed "s/\$authdb = \"\.\.\/etc\/pdns\.users\.sqlite3\"/\$authdb = \"\/app\/pdns\.users\.sqlite3\"/" -i /app/nsedit/includes/config.inc.php 12 | 13 | exec /usr/bin/php -S 0.0.0.0:8080 -------------------------------------------------------------------------------- /jquery-ui/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Droppable Demos 7 | 8 | 9 | 10 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /templates.d/template.json.example: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Example Template", 3 | "owner": "public", 4 | "records": [ 5 | { 6 | "name": "", 7 | "type": "NS", 8 | "content": "ns1.example.com.", 9 | "label": "ns1" 10 | }, 11 | { 12 | "name": "", 13 | "type": "NS", 14 | "content": "ns2.example.com.", 15 | "label": "ns2" 16 | }, 17 | { 18 | "name": "example-txt", 19 | "type": "TXT", 20 | "content": "This is an example txt record" 21 | }, 22 | { 23 | "name": "localhost", 24 | "type": "A", 25 | "content": "127.0.0.1" 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /js/addclear/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "add-clear", 3 | "version": "2.0.6", 4 | "description": "jQuery plugin to add a clear button to text input fields", 5 | "main": "addclear.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/skorecky/Add-Clear.git" 12 | }, 13 | "keywords": [ 14 | "jquery-plugin", 15 | "ecosystem:jquery", 16 | "add", 17 | "clear", 18 | "text", 19 | "input", 20 | "field" 21 | ], 22 | "author": "Stephen Korecky", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/skorecky/Add-Clear/issues" 26 | }, 27 | "homepage": "https://github.com/skorecky/Add-Clear#readme" 28 | } 29 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Effects Demos 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/resizable/resizable_methods.js: -------------------------------------------------------------------------------- 1 | /* 2 | * resizable_methods.js 3 | */ 4 | (function($) { 5 | 6 | module( "resizable: methods" ); 7 | 8 | test( "disable", function() { 9 | expect( 5 ); 10 | 11 | var element = $( "#resizable1" ).resizable({ disabled: false }), 12 | chainable = element.resizable( "disable" ); 13 | 14 | ok( !element.resizable( "widget" ).hasClass( "ui-state-disabled" ), "element does not get ui-state-disabled" ); 15 | ok( !element.resizable( "widget" ).attr( "aria-disabled" ), "element does not get aria-disabled" ); 16 | ok( element.resizable( "widget" ).hasClass( "ui-resizable-disabled" ), "element gets ui-resizable-disabled" ); 17 | equal( element.resizable( "option", "disabled" ), true, "disabled option setter" ); 18 | equal( chainable, element, "disable is chainable" ); 19 | }); 20 | 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /jquery-ui/build/interaction.json: -------------------------------------------------------------------------------- 1 | { 2 | "draggable": { 3 | "description": "Enables dragging functionality for any element.", 4 | "keywords": [ 5 | "drag", 6 | "drop" 7 | ] 8 | }, 9 | "droppable": { 10 | "dependencies": [ "draggable" ], 11 | "description": "Enables drop targets for draggable elements.", 12 | "keywords": [ 13 | "drag", 14 | "drop" 15 | ] 16 | }, 17 | "resizable": { 18 | "description": "Enables resize functionality for any element.", 19 | "keywords": [ 20 | "resize" 21 | ] 22 | }, 23 | "selectable": { 24 | "description": "Allows groups of elements to be selected with the mouse.", 25 | "keywords": [ 26 | "selection" 27 | ] 28 | }, 29 | "sortable": { 30 | "description": "Enables items in a list to be sorted using the mouse.", 31 | "keywords": [ 32 | "sort", 33 | "list" 34 | ] 35 | } 36 | } -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/category/theming/ 10 | */ 11 | @import url("core.css"); 12 | 13 | @import url("accordion.css"); 14 | @import url("autocomplete.css"); 15 | @import url("button.css"); 16 | @import url("datepicker.css"); 17 | @import url("dialog.css"); 18 | @import url("draggable.css"); 19 | @import url("menu.css"); 20 | @import url("progressbar.css"); 21 | @import url("resizable.css"); 22 | @import url("selectable.css"); 23 | @import url("selectmenu.css"); 24 | @import url("sortable.css"); 25 | @import url("slider.css"); 26 | @import url("spinner.css"); 27 | @import url("tabs.css"); 28 | @import url("tooltip.css"); 29 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Draggable Demos 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /jquery-ui/tests/.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 | "es3": true, 18 | "evil": true, 19 | "jquery": true, 20 | 21 | "globals": { 22 | "asyncTest": false, 23 | "closeEnough": false, 24 | "deepEqual": false, 25 | "domEqual": false, 26 | "equal": false, 27 | "expect": false, 28 | "Globalize": false, 29 | "module": false, 30 | "notEqual": false, 31 | "notDeepEqual": false, 32 | "notStrictEqual": false, 33 | "ok": false, 34 | "QUnit": true, 35 | "start": false, 36 | "strictEqual": false, 37 | "stop": false, 38 | "test": false, 39 | "TestHelpers": true, 40 | "JSHINT": false 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /jquery-ui/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Resizable Demos 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /css/horizontal-menu.css: -------------------------------------------------------------------------------- 1 | .menu-title { 2 | display: block; 3 | float: left; 4 | padding: 0; 5 | margin: 0; 6 | } 7 | 8 | #menu { 9 | border: none; 10 | } 11 | 12 | #menu.horizontal { 13 | width: 100%; 14 | display: inline-block; 15 | margin-bottom: 5px; 16 | border-bottom: 1px solid #DDD; 17 | } 18 | 19 | #menu.horizontal ul { 20 | padding: 0; 21 | margin: 0; 22 | float: right; 23 | } 24 | 25 | #menu.horizontal ul li { 26 | float: left; 27 | margin: 0; 28 | } 29 | 30 | #menu.horizontal ul li a{ 31 | margin-left: 5px; 32 | padding: 6px; 33 | color: #FFF; 34 | background: #000; 35 | border-radius: 8px 8px 0px 0px; 36 | display: inline-block; 37 | } 38 | 39 | #menu.horizontal ul li a:hover { 40 | background: #1C78DE; 41 | } 42 | 43 | #menu div.jtable-title-text { 44 | line-height: inherit !important; 45 | color: #1C78DE; 46 | } 47 | 48 | .tables { 49 | width: 100% !important; 50 | } 51 | -------------------------------------------------------------------------------- /jquery-ui/ui/effect-fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright 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 | (function( factory ) { 12 | if ( typeof define === "function" && define.amd ) { 13 | 14 | // AMD. Register as an anonymous module. 15 | define([ 16 | "jquery", 17 | "./effect" 18 | ], factory ); 19 | } else { 20 | 21 | // Browser globals 22 | factory( jQuery ); 23 | } 24 | }(function( $ ) { 25 | 26 | return $.effects.effect.fade = function( o, done ) { 27 | var el = $( this ), 28 | mode = $.effects.setMode( el, o.mode || "toggle" ); 29 | 30 | el.animate({ 31 | opacity: mode 32 | }, { 33 | queue: false, 34 | duration: o.duration, 35 | easing: o.easing, 36 | complete: done 37 | }); 38 | }; 39 | 40 | })); 41 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/themes/base/accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/accordion/#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { 12 | display: block; 13 | cursor: pointer; 14 | position: relative; 15 | margin: 2px 0 0 0; 16 | padding: .5em .5em .5em .7em; 17 | min-height: 0; /* support: IE7 */ 18 | font-size: 100%; 19 | } 20 | .ui-accordion .ui-accordion-icons { 21 | padding-left: 2.2em; 22 | } 23 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { 24 | padding-left: 2.2em; 25 | } 26 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { 27 | position: absolute; 28 | left: .5em; 29 | top: 50%; 30 | margin-top: -8px; 31 | } 32 | .ui-accordion .ui-accordion-content { 33 | padding: 1em 2.2em; 34 | border-top: 0; 35 | overflow: auto; 36 | } 37 | -------------------------------------------------------------------------------- /jquery-ui/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Slider Demos 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 |

Resizable can be applied to a textarea. This allows the user to make the textarea bigger to type longer prose.

32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.zh-CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Chinese' language. 3 | Author: monkeycraps 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: '服务器请求错误。', 9 | loadingMessage: '加载中...', 10 | noDataAvailable: '没有数据!', 11 | addNewRecord: '+ 新建', 12 | editRecord: '编辑', 13 | areYouSure: '确定?', 14 | deleteConfirmation: '确定删除这行数据?', 15 | save: '保存', 16 | saving: '保存中', 17 | cancel: '取消', 18 | deleteText: '删除', 19 | deleting: '删除中', 20 | error: '错误', 21 | close: '关闭', 22 | cannotLoadOptionsFor: '无法加载对象属性 {0}', 23 | pagingInfo: '显示 {0} 至 {1} 共 {2}', 24 | canNotDeletedRecords: '删除失败 {0} 至 {1}!', 25 | deleteProggress: '正在删除 {0} 至 {1} 记录, 进心中...', 26 | pageSizeChangeLabel: '每页显示', 27 | gotoPageLabel: '跳转到' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Icon trigger 6 | 7 | 8 | 9 | 10 | 11 | 12 | 22 | 23 | 24 | 25 |

Date:

26 | 27 |
28 |

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.

29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/widget/widget.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Widget Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 |
31 | 32 |
33 |
34 |
...
35 |
36 |
37 | 38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /jquery-ui/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Autocomplete Demos 7 | 8 | 9 | 10 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /js/addclear/add-clear.jquery.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "add-clear", 3 | "title": "jQuery Add Clear", 4 | "description": "jQuery plugin for adding a clear action to the end of a text input", 5 | "keywords": [ 6 | "input", 7 | "close", 8 | "text", 9 | "clear" 10 | ], 11 | "version": "2.0.6", 12 | "author": { 13 | "name": "Stephen Korecky", 14 | "url": "http://stephenkorecky.com" 15 | }, 16 | "maintainers": [ 17 | { 18 | "name": "Stephen Korecky", 19 | "email": "skorecky@gmail.com", 20 | "url": "http://stephenkorecky.com" 21 | } 22 | ], 23 | "licenses": [ 24 | { 25 | "type": "MIT", 26 | "url": "https://github.com/jquery/jquery-color/blob/2.1.2/MIT-LICENSE.txt" 27 | } 28 | ], 29 | "bugs": "https://github.com/skorecky/Add-Clear/issues", 30 | "homepage": "http://github.com/skorecky/Add-Clear ", 31 | "docs": "https://github.com/skorecky/Add-Clear", 32 | "download": "http://code.jquery.com/#add-clear", 33 | "dependencies": { 34 | "jquery": ">=1.8" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM debian:bookworm 2 | MAINTAINER Yury Evtikhov 3 | # 4 | # This Dockerfile is intended only for test/development use. 5 | # It will be a really BAD idea to use it for production or public services. 6 | # 7 | 8 | ENV DEBIAN_FRONTEND noninteractive 9 | 10 | # Update and Upgrade system 11 | RUN apt-get -y update && \ 12 | apt-get -y install curl git-core php8.2-cli php8.2-curl php8.2-sqlite3 && \ 13 | rm -rf /var/lib/apt/lists/* 14 | RUN mkdir /app 15 | RUN git clone --recursive https://github.com/tuxis-ie/nsedit.git /app/nsedit 16 | RUN cp /app/nsedit/includes/config.inc.php-dist /app/nsedit/includes/config.inc.php 17 | COPY docker-entrypoint.sh /app/nsedit/docker-entrypoint.sh 18 | RUN chmod +x /app/nsedit/docker-entrypoint.sh 19 | 20 | # Define working directory. 21 | VOLUME /app/nsedit 22 | WORKDIR /app/nsedit 23 | EXPOSE 8080 24 | 25 | CMD ["sh", "-c", "/app/nsedit/docker-entrypoint.sh"] 26 | 27 | # 28 | # Usage: 29 | # docker build -t nseditphp . 30 | # docker run -d --name pdns-nsedit -p 80:8080 nseditphp 31 | # 32 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jtable/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jtable", 3 | "main": [ 4 | "lib/jquery.jtable.min.js" 5 | ], 6 | "version": "2.4.0", 7 | "authors": [ 8 | "Halil ibrahim Kalkan " 9 | ], 10 | "description": "A JQuery plugin to create AJAX based CRUD tables (grids). It supports paging, sorting, selecting, master/child tables, show/hide/resize columns, localization, themes and more.A JQuery plugin to create AJAX based CRUD tables (grids). It supports paging, sorting, selecting, master/child tables, show/hide/resize columns, localization, themes and more.", 11 | "keywords": [ 12 | "ajax", 13 | "table", 14 | "grid", 15 | "crud", 16 | "jtable", 17 | "paging", 18 | "sorting" 19 | ], 20 | "license": "MIT", 21 | "homepage": "http://www.jtable.org", 22 | "ignore": [ 23 | "**/.*", 24 | "node_modules", 25 | "bower_components", 26 | "./components", 27 | "dev", 28 | "test", 29 | "tests" 30 | ], 31 | "dependencies": { 32 | "jquery": ">=1.9.1", 33 | "jqueryui": ">=1.9.2" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/tests/visual/draggable/replaced.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Draggable Visual Test 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 29 | 30 | 31 | 32 |

WHAT: A draggable, whose content is replaced onmousedown.

33 |

EXPECTED: In IE8, the draggable can actually be dragged.

34 | 35 |
content
36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | 18 | 24 | 25 | 26 | 27 |
28 | 29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.kr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Korean' language. 3 | Author: Donggill Shin 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: '서버와 통신 중에 오류가 발생했습니다.', 9 | loadingMessage: '데이터를 불러오는 중입니다...', 10 | noDataAvailable: '조회된 데이터가 없습니다.', 11 | addNewRecord: '신규', 12 | editRecord: '수정', 13 | areYouSure: '계속하시겠습니까?', 14 | deleteConfirmation: '자료가 삭제됩니다. 계속하시겠습니까?', 15 | save: '저장', 16 | saving: '저장 중입니다.', 17 | cancel: '취소', 18 | deleteText: '삭제', 19 | deleting: '삭제 중입니다.', 20 | error: '오류', 21 | close: '닫기', 22 | cannotLoadOptionsFor: '{0} 필드의 설정을 불러올 수 없습니다.', 23 | pagingInfo: '전체 자료 {2}건 중 현재 {0}-{1} 조회 중', 24 | canNotDeletedRecords: '{1}건의 자료 중 {0}건을 삭제할 수 없습니다.', 25 | deleteProggress: '삭제중 {1}건 중 {0}번째 자료, 진행 중...', 26 | pageSizeChangeLabel: '페이지당 조회수', 27 | gotoPageLabel: '페이지 이동' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/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 | initNewInput: function( options ) { 22 | var id = $( "" ).appendTo( "#qunit-fixture" ); 23 | return TestHelpers.datepicker.init( id, options ); 24 | }, 25 | onFocus: TestHelpers.onFocus, 26 | PROP_NAME: "datepicker" 27 | }; -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.cz.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Czech' language. 3 | Author: Jakub Stajner 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Chyba připojení k serveru.', 9 | loadingMessage: 'Načítám...', 10 | noDataAvailable: 'Žádné záznamy', 11 | addNewRecord: 'Přidat nový záznam', 12 | editRecord: 'Upravit', 13 | areYouSure: 'Jsi si jistý?', 14 | deleteConfirmation: 'Opravdu smazat?', 15 | save: 'Uložit', 16 | saving: 'Ukládám...', 17 | cancel: 'Zrušit', 18 | deleteText: 'Smazat', 19 | deleting: 'Mažu...', 20 | error: 'Chyba', 21 | close: 'Zavřít', 22 | cannotLoadOptionsFor: 'Nastavení pro {0} nelze načíst', 23 | pagingInfo: 'Zobrazeno {0} - {1} z {2}', 24 | canNotDeletedRecords: '{0} z {1} záznamů nemohlo být odstraněno!', 25 | deleteProggress: 'Odstraňuje se {0} z {1} ...', 26 | pageSizeChangeLabel: 'Záznamů na stránku', 27 | gotoPageLabel: 'Jdi na stránku' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jquery-ui/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 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'French' language. 3 | Author: Guillaume Vernet 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'خطأ الإتصال بالخادم', 9 | loadingMessage: 'تحميل البيانات ...', 10 | noDataAvailable: 'لا توجد بيانات !', 11 | addNewRecord: 'إضافة', 12 | editRecord: 'تعديل', 13 | areYouSure: 'هل انت متاكد؟', 14 | deleteConfirmation: 'هل تريد حذف السجل فعلا؟', 15 | save: 'حفظ', 16 | saving: 'جاري الحفظ ...', 17 | cancel: 'إلغاء', 18 | deleteText: 'حذف', 19 | deleting: 'جاري الحذف ...', 20 | error: 'خطأ', 21 | close: 'إغلاق', 22 | cannotLoadOptionsFor: ' {0} تعذر تحميل البيانات من الحقل ', 23 | pagingInfo: 'عرض {0} إلى {1} من {2}', 24 | canNotDeletedRecords: 'لا يمكن حذف {0} من {1} سجل(سجلات) !', 25 | deleteProggress: 'جاري حذف {0} من {1} سجل (سجلات) ...', 26 | pageSizeChangeLabel: 'رقم السجل', 27 | gotoPageLabel: 'اذهب إلى الصفحة' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/tests/unit/progressbar/progressbar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Test Suite 6 | 7 | 8 | 9 | 10 | 11 | 12 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 | 36 |
37 | 38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /js/addclear/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Stephen Korecky 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /jquery-ui/external/jshint/LICENSE/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2012 Anton Kovalyov (http://jshint.com) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.6.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.6.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.6.2/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.6.3/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.6.4/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.7.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.7.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.7.2/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/demos/datepicker/alt-field.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Populate alternate field 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |

Date:  

24 | 25 |
26 |

Populate an alternate field with its own date format whenever a date is selected using the altField and altFormat options. This feature could be used to present a human-friendly date for user selection, while passing a more computer-friendly date through for further processing.

27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-mousewheel/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013, Brandon Aaron (http://brandon.aaron.sh) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /jquery-ui/external/globalize/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright Software Freedom Conservancy, Inc. 2 | http://jquery.org/license 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['ja'] = { 16 | closeText: '閉じる', 17 | prevText: '<前', 18 | nextText: '次>', 19 | currentText: '今日', 20 | monthNames: ['1月','2月','3月','4月','5月','6月', 21 | '7月','8月','9月','10月','11月','12月'], 22 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 23 | '7月','8月','9月','10月','11月','12月'], 24 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 25 | dayNamesShort: ['日','月','火','水','木','金','土'], 26 | dayNamesMin: ['日','月','火','水','木','金','土'], 27 | weekHeader: '週', 28 | dateFormat: 'yy/mm/dd', 29 | firstDay: 0, 30 | isRTL: false, 31 | showMonthAfterYear: true, 32 | yearSuffix: '年'}; 33 | datepicker.setDefaults(datepicker.regional['ja']); 34 | 35 | return datepicker.regional['ja']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.pt-PT.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Portuguese - Portugal' language. 3 | */ 4 | (function ($) { 5 | 6 | $.extend(true, $.hik.jtable.prototype.options.messages, { 7 | serverCommunicationError: 'Erro na ligação ao servidor.', 8 | loadingMessage: 'A ler dados ...', 9 | noDataAvailable: 'Não existem dados!', 10 | addNewRecord: 'Novo', 11 | editRecord: 'Editar', 12 | areYouSure: 'Tem a certeza?', 13 | deleteConfirmation: 'Confirma eliminação?', 14 | save: 'Salvar', 15 | saving: 'A salvar ...', 16 | cancel: 'Cancelar', 17 | deleteText: 'Eliminar', 18 | deleting: 'A eliminar ...', 19 | error: 'Erro', 20 | close: 'Fechar', 21 | cannotLoadOptionsFor: 'Não foi possivel carregar opções para o campo {0}!', 22 | pagingInfo: 'Registos {0} a {1} de {2}', 23 | canNotDeletedRecords: 'Não foi possível eliminar o(s) registo(s) {0} de {1}!', 24 | deleteProggress: 'A eliminar {0} de {1} registos ...', 25 | pageSizeChangeLabel: 'Linhas', 26 | gotoPageLabel: 'Ir para a página' 27 | }); 28 | 29 | })(jQuery); 30 | -------------------------------------------------------------------------------- /jquery-ui/demos/datepicker/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Datepicker Demos 7 | 8 | 9 | 10 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /jquery-ui/demos/resizable/helper.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Helper 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 25 | 26 | 27 | 28 |
29 |

Helper

30 |
31 | 32 |
33 |

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

34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['ko'] = { 16 | closeText: '닫기', 17 | prevText: '이전달', 18 | nextText: '다음달', 19 | currentText: '오늘', 20 | monthNames: ['1월','2월','3월','4월','5월','6월', 21 | '7월','8월','9월','10월','11월','12월'], 22 | monthNamesShort: ['1월','2월','3월','4월','5월','6월', 23 | '7월','8월','9월','10월','11월','12월'], 24 | dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], 25 | dayNamesShort: ['일','월','화','수','목','금','토'], 26 | dayNamesMin: ['일','월','화','수','목','금','토'], 27 | weekHeader: 'Wk', 28 | dateFormat: 'yy-mm-dd', 29 | firstDay: 0, 30 | isRTL: false, 31 | showMonthAfterYear: true, 32 | yearSuffix: '년'}; 33 | datepicker.setDefaults(datepicker.regional['ko']); 34 | 35 | return datepicker.regional['ko']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['zh-TW'] = { 16 | closeText: '關閉', 17 | prevText: '<上月', 18 | nextText: '下月>', 19 | currentText: '今天', 20 | monthNames: ['一月','二月','三月','四月','五月','六月', 21 | '七月','八月','九月','十月','十一月','十二月'], 22 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 23 | '七月','八月','九月','十月','十一月','十二月'], 24 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 25 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 26 | dayNamesMin: ['日','一','二','三','四','五','六'], 27 | weekHeader: '周', 28 | dateFormat: 'yy/mm/dd', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: true, 32 | yearSuffix: '年'}; 33 | datepicker.setDefaults(datepicker.regional['zh-TW']); 34 | 35 | return datepicker.regional['zh-TW']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/qunit/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['zh-HK'] = { 16 | closeText: '關閉', 17 | prevText: '<上月', 18 | nextText: '下月>', 19 | currentText: '今天', 20 | monthNames: ['一月','二月','三月','四月','五月','六月', 21 | '七月','八月','九月','十月','十一月','十二月'], 22 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 23 | '七月','八月','九月','十月','十一月','十二月'], 24 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 25 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 26 | dayNamesMin: ['日','一','二','三','四','五','六'], 27 | weekHeader: '周', 28 | dateFormat: 'dd-mm-yy', 29 | firstDay: 0, 30 | isRTL: false, 31 | showMonthAfterYear: true, 32 | yearSuffix: '年'}; 33 | datepicker.setDefaults(datepicker.regional['zh-HK']); 34 | 35 | return datepicker.regional['zh-HK']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.10.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.10.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.10.2/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.8.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.8.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.8.2/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.8.3/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.9.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-1.9.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-2.0.0/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-2.0.1/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-2.0.2/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/external/jquery-2.0.3/MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 jQuery Foundation and other contributors 2 | http://jquery.com/ 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | "Software"), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, and/or sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['zh-CN'] = { 16 | closeText: '关闭', 17 | prevText: '<上月', 18 | nextText: '下月>', 19 | currentText: '今天', 20 | monthNames: ['一月','二月','三月','四月','五月','六月', 21 | '七月','八月','九月','十月','十一月','十二月'], 22 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 23 | '七月','八月','九月','十月','十一月','十二月'], 24 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 25 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 26 | dayNamesMin: ['日','一','二','三','四','五','六'], 27 | weekHeader: '周', 28 | dateFormat: 'yy-mm-dd', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: true, 32 | yearSuffix: '年'}; 33 | datepicker.setDefaults(datepicker.regional['zh-CN']); 34 | 35 | return datepicker.regional['zh-CN']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.bd.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Bengali' language. 3 | Author: Abu Naim Mohammad Nazmul Huda 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'সার্ভারে যোগাযোগ ত্রুটি', 9 | loadingMessage: 'বার্তা বোঝাই করা হচ্ছে', 10 | noDataAvailable: 'কোন তথ্য পাওযা যাচ্ছে না', 11 | addNewRecord: 'নতুন তথ্য যোগ করুন', 12 | editRecord: 'তথ্য সম্পাদন/সংশোধন করুন', 13 | areYouSure: 'আপনি কি নিশ্চিত?', 14 | deleteConfirmation: 'মুছে ফেলা নিশ্চিতকরণ', 15 | save: 'রক্ষা করা', 16 | saving: 'রক্ষা করা হচ্ছে', 17 | cancel: 'বাতিল করা', 18 | deleteText: 'পাঠ মুছে দিন', 19 | deleting: 'মুছে ফেলা হচ্ছে', 20 | error: 'ভুল', 21 | close: 'ঘনিষ্ঠ', 22 | cannotLoadOptionsFor: 'বিকল্প বোঝাই করা যাবে না', 23 | pagingInfo: 'পত্রাঙ্ক তথ্য', 24 | canNotDeletedRecords: 'তথ্য মুছে ফেলা যাবে না', 25 | deleteProggress: 'অগ্রগতি মুছে ফেলা', 26 | pageSizeChangeLabel: 'পাতার আয়তন পরিবর্তন মোড়ক', 27 | gotoPageLabel: 'পাতা মোড়কে যান' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.el.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Greek' language. 3 | Author: Nouvakis Petros 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Παρουσιάστηκε σφάλμα στην προσπάθεια σύνδεσης στο διακομιστή.', 9 | loadingMessage: 'φορτώνονται οι εγγραφές...', 10 | noDataAvailable: 'Δεν υπάρχουν δεδομένα', 11 | addNewRecord: 'Νέα εγγραφή', 12 | editRecord: 'Διόρθωση', 13 | areYouSure: 'Είστε σίγουρος;', 14 | deleteConfirmation: 'Η εγγραφή θα διαγραφεί. Να προχωρήσω;', 15 | save: 'Αποθήκευση', 16 | saving: 'αποθηκεύονται οι εγγραφές...', 17 | cancel: 'Άκυρο', 18 | deleteText: 'Διαγραφή', 19 | deleting: 'Διαγράφονται εγγραφές...', 20 | error: 'ΛΑΘΟΣ', 21 | close: 'Κλείσιμο', 22 | cannotLoadOptionsFor: 'Δεν είναι δυνατή η φόρτωση επιλογών για το πεδίο {0}', 23 | pagingInfo: 'Εμφανίζονται {0} - {1} από {2}', 24 | canNotDeletedRecords: 'Δεν είναι δυνατή η διαγραφή {0} από {1}', 25 | deleteProggress: 'Διαγράφεται {0} από {1}...', 26 | pageSizeChangeLabel: 'Εγγραφές ανά σελίδα', 27 | gotoPageLabel: 'Πήγαινε στη σελίδα' 28 | }); 29 | })(jQuery); -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Lithuanian' language. 3 | Author: Vygandas Šimkus 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Klaida bandant susisiekti su serveriu.', 9 | loadingMessage: 'Informacija kraunama...', 10 | noDataAvailable: 'Nėra duomenų!', 11 | addNewRecord: '+ Pridėti naują', 12 | editRecord: 'Redaguoti', 13 | areYouSure: 'Ar tikrai?', 14 | deleteConfirmation: 'Įrašas bus ištrintas. Ar tęsti?', 15 | save: 'Išsaugoti', 16 | saving: 'Saugojama', 17 | cancel: 'Atšaukti', 18 | deleteText: 'Ištrinti', 19 | deleting: 'Trinama', 20 | error: 'Klaida', 21 | close: 'Uždaryti', 22 | cannotLoadOptionsFor: 'Nepavyko užkrauti "{0}" pasirinkimo!', 23 | pagingInfo: '{0}-{1} iš {2}', 24 | canNotDeletedRecords: 'Nepavyko pašalinti {0} iš {1} įrašų!', 25 | deleteProggress: 'Šalinamas {0} iš {1} įrašų, prašome palaukti...', 26 | pageSizeChangeLabel: 'Eilutės', 27 | gotoPageLabel: 'Į puslapį' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.no.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Norwegian' language. 3 | Author: Tobias Flatin 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'En feil oppsto i kommunikasjonen med serveren.', 9 | loadingMessage: 'Laster...', 10 | noDataAvailable: 'Ingen data', 11 | addNewRecord: 'Legg til ny post', 12 | editRecord: 'Rediger post', 13 | areYouSure: 'Er du sikker?', 14 | deleteConfirmation: 'Denne posten kommer å slettes. Er du sikker?', 15 | save: 'Lagre', 16 | saving: 'Lagrer...', 17 | cancel: 'Avbryt', 18 | deleteText: 'Slett', 19 | deleting: 'Sletter...', 20 | error: 'Feil', 21 | close: 'Lukk', 22 | cannotLoadOptionsFor: 'Kan ikke laste alternativ for felt {0}', 23 | pagingInfo: 'Viser {0} - {1} av {2}', 24 | canNotDeletedRecords: 'Kan ikke slette {0} av {1} poster!', 25 | deleteProggress: 'Slettet {0} av {1} poster, bearbeider...', 26 | pageSizeChangeLabel: 'Antall poster per side', 27 | gotoPageLabel: 'Gå til side' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/demos/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | jQuery UI Demos 7 | 8 | 9 | 10 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Persian (Farsi)' language. 3 | Author: Ehsan Chavoshi 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'خطا در برقراری ارتباط با سرور!', 9 | loadingMessage: 'بارگزاری اطلاعات ...', 10 | noDataAvailable: 'هیچ داده ای موجود نیست!!', 11 | addNewRecord: 'رکورد جدید', 12 | editRecord: 'ویرایش', 13 | areYouSure: 'آیا اطمینان دارید ؟', 14 | deleteConfirmation: 'آیا از حذف این رکورد اطمینان دارید ؟', 15 | save: 'ذخیره', 16 | saving: 'در حال ذخیره', 17 | cancel: 'انصراف', 18 | deleteText: 'حذف', 19 | deleting: 'در حال حذف', 20 | error: 'خطا', 21 | close: 'بستن', 22 | cannotLoadOptionsFor: 'امکان بارگذاری انتخابها نیست برای فیلد {0}', 23 | pagingInfo: 'نمایش {0}-{1} از {2}', 24 | canNotDeletedRecords: 'نمیتوان {0} از {1} رکورد را حذف کرد!', 25 | deleteProggress: 'حذف {0} از {1} رکورد,در حال پردازش ...', 26 | pageSizeChangeLabel: 'تعداد خطوط', 27 | gotoPageLabel: 'برو به صفحه', 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/demos/resizable/visual-feedback.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Visual feedback 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 25 | 26 | 27 | 28 |
29 |

Ghost

30 |
31 | 32 |
33 |

Instead of showing the actual element during resize, set the ghost option to true to show a semi-transparent part of the element.

34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.se.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Swedish' language. 3 | Author: Mikael Holgersson 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Ett fel uppstod i kommunikationen med servern.', 9 | loadingMessage: 'Laddar...', 10 | noDataAvailable: 'Data saknas', 11 | addNewRecord: 'Lägg till ny post', 12 | editRecord: 'Redigera post', 13 | areYouSure: 'Är du säker?', 14 | deleteConfirmation: 'Denna posten kommer att raderas. Är du säker?', 15 | save: 'Spara', 16 | saving: 'Sparar...', 17 | cancel: 'Avbryt', 18 | deleteText: 'Radera', 19 | deleting: 'Raderar...', 20 | error: 'Fel', 21 | close: 'Stäng', 22 | cannotLoadOptionsFor: 'Kan inte ladda alternativ för fält {0}', 23 | pagingInfo: 'Visar {0} - {1} av {2}', 24 | canNotDeletedRecords: 'Kan inte radera {0} av {1} poster!', 25 | deleteProggress: 'Raderat {0} av {1} poster, bearbetar...', 26 | pageSizeChangeLabel: 'Antal poster per sida', 27 | gotoPageLabel: 'Gå till sida' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/demos/datepicker/datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../jquery.ui.datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | datepicker.regional['zh-TW'] = { 15 | closeText: '關閉', 16 | prevText: '<上月', 17 | nextText: '下月>', 18 | currentText: '今天', 19 | monthNames: ['一月','二月','三月','四月','五月','六月', 20 | '七月','八月','九月','十月','十一月','十二月'], 21 | monthNamesShort: ['一月','二月','三月','四月','五月','六月', 22 | '七月','八月','九月','十月','十一月','十二月'], 23 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 24 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 25 | dayNamesMin: ['日','一','二','三','四','五','六'], 26 | weekHeader: '周', 27 | dateFormat: 'yy/mm/dd', 28 | firstDay: 1, 29 | isRTL: false, 30 | showMonthAfterYear: true, 31 | yearSuffix: '年'}; 32 | datepicker.setDefaults(datepicker.regional['zh-TW']); 33 | 34 | return datepicker.regional['zh-TW']; 35 | 36 | })); 37 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Croatian' language. 3 | Author: Nikola Novak 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Greška prilikom komunikacije sa serverom.', 9 | loadingMessage: 'Učitavanje zapisa...', 10 | noDataAvailable: 'Nema dostupnih podataka', 11 | addNewRecord: 'Dodaj zapis', 12 | editRecord: 'Izmijeni zapis', 13 | areYouSure: 'Jeste li sigurni?', 14 | deleteConfirmation: 'Jeste li sigurni da želite obrisati ovaj zapis?', 15 | save: 'Spremi', 16 | saving: 'Spremanje', 17 | cancel: 'Odustani', 18 | deleteText: 'Obriši', 19 | deleting: 'Brisanje', 20 | error: 'Greška', 21 | close: 'Zatvori', 22 | cannotLoadOptionsFor: 'Ne mogu se učitati opcije za polje {0}', 23 | pagingInfo: 'Prikazuje se {0}-{1} od {2}', 24 | pageSizeChangeLabel: 'Broj zapisa', 25 | gotoPageLabel: 'Idi na stranicu', 26 | canNotDeletedRecords: 'Nije bilo moguće obrisati {0} od {1} zapisa!', 27 | deleteProggress: 'Obrisano {0} od {1} zapisa, u tijeku...' 28 | }); 29 | 30 | })(jQuery); -------------------------------------------------------------------------------- /jquery-ui/demos/resizable/aspect-ratio.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Preserve aspect ratio 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 17 | 24 | 25 | 26 | 27 |
28 |

Preserve aspect ratio

29 |
30 | 31 |
32 |

Maintain the existing aspect ratio or set a new one to constrain the proportions on resize. Set the aspectRatio option to true, and optionally pass in a new ratio (i.e., 4/3)

33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /jquery-ui/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-ui", 3 | "ignore": [ 4 | "**/.*", 5 | "build", 6 | "demos", 7 | "external", 8 | "tests" 9 | ], 10 | "dependencies": { 11 | "jquery": ">=1.6" 12 | }, 13 | "devDependencies": { 14 | "jquery-mousewheel": "3.1.12", 15 | "jquery-simulate": "1.0.0", 16 | "jshint": "2.4.4", 17 | "qunit": "1.14.0", 18 | 19 | "jquery-1.6.0": "jquery#1.6.0", 20 | "jquery-1.6.1": "jquery#1.6.1", 21 | "jquery-1.6.2": "jquery#1.6.2", 22 | "jquery-1.6.3": "jquery#1.6.3", 23 | "jquery-1.6.4": "jquery#1.6.4", 24 | "jquery-1.7.0": "jquery#1.7.0", 25 | "jquery-1.7.1": "jquery#1.7.1", 26 | "jquery-1.7.2": "jquery#1.7.2", 27 | "jquery-1.8.0": "jquery#1.8.0", 28 | "jquery-1.8.1": "jquery#1.8.1", 29 | "jquery-1.8.2": "jquery#1.8.2", 30 | "jquery-1.8.3": "jquery#1.8.3", 31 | "jquery-1.9.0": "jquery#1.9.0", 32 | "jquery-1.9.1": "jquery#1.9.1", 33 | "jquery-1.10.0": "jquery#1.10.0", 34 | "jquery-1.10.1": "jquery#1.10.1", 35 | "jquery-1.10.2": "jquery#1.10.2", 36 | "jquery-1.x": "jquery#1.10.2", 37 | "jquery-2.0.0": "jquery#2.0.0", 38 | "jquery-2.0.1": "jquery#2.0.1", 39 | "jquery-2.0.2": "jquery#2.0.2", 40 | "jquery-2.0.3": "jquery#2.0.3", 41 | "jquery-3.0.0": "jquery#3.0.0" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Turkish' language. 3 | Author: Halil İbrahim Kalkan 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Sunucu ile iletişim kurulurken bir hata oluştu.', 9 | loadingMessage: 'Kayıtlar yükleniyor...', 10 | noDataAvailable: 'Hiç kayıt bulunmamaktadır!', 11 | addNewRecord: 'Yeni kayıt ekle', 12 | editRecord: 'Kayıt düzenle', 13 | areYouSure: 'Emin misiniz?', 14 | deleteConfirmation: 'Bu kayıt silinecektir. Emin misiniz?', 15 | save: 'Kaydet', 16 | saving: 'Kaydediyor', 17 | cancel: 'İptal', 18 | deleteText: 'Sil', 19 | deleting: 'Siliyor', 20 | error: 'Hata', 21 | close: 'Kapat', 22 | cannotLoadOptionsFor: '{0} alanı için seçenekler yüklenemedi!', 23 | pagingInfo: 'Gösterilen: {0}-{1}, Toplam: {2}', 24 | canNotDeletedRecords: '{1} kayıttan {0} adedi silinemedi!', 25 | deleteProggress: '{1} kayıttan {0} adedi silindi, devam ediliyor...', 26 | pageSizeChangeLabel: 'Satır sayısı', 27 | gotoPageLabel: 'Sayfaya git' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-eu.js: -------------------------------------------------------------------------------- 1 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */ 2 | (function( factory ) { 3 | if ( typeof define === "function" && define.amd ) { 4 | 5 | // AMD. Register as an anonymous module. 6 | define([ "../datepicker" ], factory ); 7 | } else { 8 | 9 | // Browser globals 10 | factory( jQuery.datepicker ); 11 | } 12 | }(function( datepicker ) { 13 | 14 | datepicker.regional['eu'] = { 15 | closeText: 'Egina', 16 | prevText: '<Aur', 17 | nextText: 'Hur>', 18 | currentText: 'Gaur', 19 | monthNames: ['urtarrila','otsaila','martxoa','apirila','maiatza','ekaina', 20 | 'uztaila','abuztua','iraila','urria','azaroa','abendua'], 21 | monthNamesShort: ['urt.','ots.','mar.','api.','mai.','eka.', 22 | 'uzt.','abu.','ira.','urr.','aza.','abe.'], 23 | dayNames: ['igandea','astelehena','asteartea','asteazkena','osteguna','ostirala','larunbata'], 24 | dayNamesShort: ['ig.','al.','ar.','az.','og.','ol.','lr.'], 25 | dayNamesMin: ['ig','al','ar','az','og','ol','lr'], 26 | weekHeader: 'As', 27 | dateFormat: 'yy-mm-dd', 28 | firstDay: 1, 29 | isRTL: false, 30 | showMonthAfterYear: false, 31 | yearSuffix: ''}; 32 | datepicker.setDefaults(datepicker.regional['eu']); 33 | 34 | return datepicker.regional['eu']; 35 | 36 | })); 37 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['sr'] = { 16 | closeText: 'Затвори', 17 | prevText: '<', 18 | nextText: '>', 19 | currentText: 'Данас', 20 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 21 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 22 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 23 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 24 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 25 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 26 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 27 | weekHeader: 'Сед', 28 | dateFormat: 'dd.mm.yy', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: false, 32 | yearSuffix: ''}; 33 | datepicker.setDefaults(datepicker.regional['sr']); 34 | 35 | return datepicker.regional['sr']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Hungarian' language. 3 | Author: Erik Berman 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Adatbázis hiba', 9 | loadingMessage: 'Adatok betöltése...', 10 | noDataAvailable: 'Nincs elérhető adat!', 11 | addNewRecord: '+ Új hozzáadása', 12 | editRecord: 'Módosít', 13 | areYouSure: 'Biztos benne?', 14 | deleteConfirmation: 'Az adat véglegesen törlődik. Biztos benne?', 15 | save: 'Mentés', 16 | saving: 'Mentés', 17 | cancel: 'Mégse', 18 | deleteText: 'Töröl', 19 | deleting: 'Törlés', 20 | error: 'Hiba', 21 | close: 'Bezár', 22 | cannotLoadOptionsFor: '{0} mező opciói nem elérhetőek!', 23 | pagingInfo: 'Megjelenítve: {0} - {1} / Összesen: {2}', 24 | canNotDeletedRecords: '{1} tételből {0} nem törölhető!', 25 | deleteProggress: '{1} tételből {0} törölve, feldolgozás...', 26 | pageSizeChangeLabel: 'Row count', //New. Must be localized. 27 | gotoPageLabel: 'Go to page' //New. Must be localized. 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['bs'] = { 16 | closeText: 'Zatvori', 17 | prevText: '<', 18 | nextText: '>', 19 | currentText: 'Danas', 20 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 21 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 22 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 23 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 24 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 25 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 26 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 27 | weekHeader: 'Wk', 28 | dateFormat: 'dd.mm.yy', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: false, 32 | yearSuffix: ''}; 33 | datepicker.setDefaults(datepicker.regional['bs']); 34 | 35 | return datepicker.regional['bs']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.ua.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Ukrainian' language. 3 | Author: Volodymyr Sokolov 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Помилка зв’язку з сервером.', 9 | loadingMessage: 'Завантаження...', 10 | noDataAvailable: 'Дані відсутні', 11 | addNewRecord: 'Додати', 12 | editRecord: 'Змінити', 13 | areYouSure: 'Ви впевнені?', 14 | deleteConfirmation: 'Видалити запис?', 15 | save: 'Зберегти', 16 | saving: 'Збереження...', 17 | cancel: 'Відміна', 18 | deleteText: 'Видалити', 19 | deleting: 'Видалення...', 20 | error: 'Помилка', 21 | close: 'Закрити', 22 | cannotLoadOptionsFor: 'Неможливо завантажити варіанти для поля {0}', 23 | pagingInfo: 'Записи від {0} по {1} з {2}', 24 | canNotDeletedRecords: 'Неможливо видалити записи: {0} з {1}!', 25 | deleteProggress: 'Видалення {0} з {1} записів...', 26 | pageSizeChangeLabel: 'Рядків', 27 | gotoPageLabel: 'На сторінку' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/demos/resizable/animate.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable - Animate 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 25 | 26 | 27 | 28 |
29 |

Animate

30 |
31 | 32 |
33 |

Animate the resize action using the animate option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.

34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['sr-SR'] = { 16 | closeText: 'Zatvori', 17 | prevText: '<', 18 | nextText: '>', 19 | currentText: 'Danas', 20 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 21 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 22 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 23 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 24 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 25 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 26 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 27 | weekHeader: 'Sed', 28 | dateFormat: 'dd.mm.yy', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: false, 32 | yearSuffix: ''}; 33 | datepicker.setDefaults(datepicker.regional['sr-SR']); 34 | 35 | return datepicker.regional['sr-SR']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jtable/lib/localization/jquery.jtable.pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jTable localization file for 'Polish' language. 3 | Author: Grzegorz Zbucki 4 | */ 5 | (function ($) { 6 | 7 | $.extend(true, $.hik.jtable.prototype.options.messages, { 8 | serverCommunicationError: 'Wystąpił błąd komunikacji z serwerem.', 9 | loadingMessage: 'Ładowanie...', 10 | noDataAvailable: 'Brak rekordów!', 11 | addNewRecord: '+ Dodaj nowy wpis', 12 | editRecord: 'Edytuj', 13 | areYouSure: 'Czy jesteś tego pewien?', 14 | deleteConfirmation: 'Ten wpis zostanie usunięty. Kontynuować?', 15 | save: 'Zapisz', 16 | saving: 'Zapisywanie', 17 | cancel: 'Anuluj', 18 | deleteText: 'Usuń', 19 | deleting: 'Usuwanie', 20 | error: 'Błąd', 21 | close: 'Zamknij', 22 | cannotLoadOptionsFor: 'Nie można wczytać opcji dla pola {0}!', 23 | pagingInfo: 'Wyświetlanie od {0} do {1} z {2} rekordów', 24 | canNotDeletedRecords: 'Nie można usunąć {0} z {1} rekordów!', 25 | deleteProggress: 'Usunięto {0} z {1} rekordów, Trwa usuwanie...', 26 | pageSizeChangeLabel: 'Liczba rekordów', 27 | gotoPageLabel: 'Idź do strony' 28 | }); 29 | 30 | })(jQuery); 31 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['he'] = { 16 | closeText: 'סגור', 17 | prevText: '<הקודם', 18 | nextText: 'הבא>', 19 | currentText: 'היום', 20 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 21 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 22 | monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני', 23 | 'יולי','אוג','ספט','אוק','נוב','דצמ'], 24 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 25 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 26 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 27 | weekHeader: 'Wk', 28 | dateFormat: 'dd/mm/yy', 29 | firstDay: 0, 30 | isRTL: true, 31 | showMonthAfterYear: false, 32 | yearSuffix: ''}; 33 | datepicker.setDefaults(datepicker.regional['he']); 34 | 35 | return datepicker.regional['he']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jquery-ui/ui/i18n/datepicker-mk.js: -------------------------------------------------------------------------------- 1 | /* Macedonian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Stojce Slavkovski. */ 3 | (function( factory ) { 4 | if ( typeof define === "function" && define.amd ) { 5 | 6 | // AMD. Register as an anonymous module. 7 | define([ "../datepicker" ], factory ); 8 | } else { 9 | 10 | // Browser globals 11 | factory( jQuery.datepicker ); 12 | } 13 | }(function( datepicker ) { 14 | 15 | datepicker.regional['mk'] = { 16 | closeText: 'Затвори', 17 | prevText: '<', 18 | nextText: '>', 19 | currentText: 'Денес', 20 | monthNames: ['Јануари','Февруари','Март','Април','Мај','Јуни', 21 | 'Јули','Август','Септември','Октомври','Ноември','Декември'], 22 | monthNamesShort: ['Јан','Фев','Мар','Апр','Мај','Јун', 23 | 'Јул','Авг','Сеп','Окт','Ное','Дек'], 24 | dayNames: ['Недела','Понеделник','Вторник','Среда','Четврток','Петок','Сабота'], 25 | dayNamesShort: ['Нед','Пон','Вто','Сре','Чет','Пет','Саб'], 26 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'], 27 | weekHeader: 'Сед', 28 | dateFormat: 'dd.mm.yy', 29 | firstDay: 1, 30 | isRTL: false, 31 | showMonthAfterYear: false, 32 | yearSuffix: ''}; 33 | datepicker.setDefaults(datepicker.regional['mk']); 34 | 35 | return datepicker.regional['mk']; 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /jquery-ui/tests/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tests 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |

jQuery UI Tests

16 |
17 |

Unit Tests

18 |

Unit tests exist for all functionality in jQuery UI. 19 | The unit tests can be run locally (some tests require a web server with PHP) 20 | to ensure proper functionality before committing changes. 21 | The unit tests are also run on TestSwarm 22 | for every commit.

23 | 24 |

Visual Tests

25 |

Visual tests only exist in cases where we can't verify proper functionality 26 | with unit tests. These may be either purely visual or just hard to automate. 27 | Most visual tests will provide a description of what is happening on the page 28 | and what to look for.

29 |
30 |
31 | 32 | 33 | 34 | --------------------------------------------------------------------------------