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 |
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.
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.
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.
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.
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.
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.
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 |
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 |
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)
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.
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.