From 0b1df79ef7749d62b4412e5433538d32feb6850c Mon Sep 17 00:00:00 2001 From: GuangrongFu Date: Wed, 18 Jul 2018 16:41:40 +0800 Subject: [PATCH] Initialize the UI code Change-Id: I5c234cd9bb0865876e3ccd948530552166f33bd0 Issue-ID: HOLMES-111 Signed-off-by: GuangrongFu --- .gitignore | 19 + rulemgt/src/main/frontend/src/.gitignore | 42 + .../main/frontend/src/alarm/app/app.component.ts | 41 + .../src/main/frontend/src/alarm/app/app.module.ts | 46 + .../src/main/frontend/src/alarm/app/app.routing.ts | 40 + .../app/correlation-modal/modal.component.html | 31 + .../alarm/app/correlation-modal/modal.component.ts | 44 + .../alarm/app/correlation-modal/modal.service.ts | 24 + .../src/alarm/app/correlation-modal/msg.ts | 20 + .../correlation-ruleInfo/ruleInfo.component.html | 150 + .../app/correlation-ruleInfo/ruleInfo.component.ts | 295 ++ .../correlation-ruleList/alarmRule.component.html | 135 + .../correlation-ruleList/alarmRule.component.ts | 170 + .../app/correlation-ruleList/alarmRule.service.ts | 123 + .../alarm/app/correlation-ruleList/alarmRule.ts | 26 + .../alarm/app/correlation-ruleList/ruleRequest.ts | 22 + rulemgt/src/main/frontend/src/alarm/app/main.ts | 19 + .../src/alarm/app/pages/remote.component.html | 19 + rulemgt/src/main/frontend/src/alarm/index.html | 35 + .../src/main/frontend/src/alarm/main.browser.ts | 20 + rulemgt/src/main/frontend/src/alarm/main.ts | 21 + .../main/frontend/src/alarm/polyfills.browser.ts | 43 + rulemgt/src/main/frontend/src/alarm/polyfills.ts | 22 + rulemgt/src/main/frontend/src/alarm/vendor.ts | 44 + rulemgt/src/main/frontend/src/config/helpers.js | 21 + .../main/frontend/src/config/karma-test-shim.js | 35 + rulemgt/src/main/frontend/src/config/karma.conf.js | 51 + .../src/main/frontend/src/config/webpack.common.js | 115 + .../src/main/frontend/src/config/webpack.dev.js | 153 + .../src/main/frontend/src/config/webpack.prod.js | 109 + .../src/main/frontend/src/config/webpack.test.js | 51 + rulemgt/src/main/frontend/src/i18n/en.json | 50 + rulemgt/src/main/frontend/src/i18n/zh.json | 50 + rulemgt/src/main/frontend/src/package.json | 69 + .../frontend/src/public/common/css/fileupload.css | 121 + .../frontend/src/public/common/css/popModal.css | 1099 ++++++ .../jQuery-File-Upload/css/jquery.fileupload.css | 37 + .../common/js/jQuery-File-Upload/img/loading.gif | Bin 0 -> 3897 bytes .../js/jQuery-File-Upload/img/progressbar.gif | Bin 0 -> 3323 bytes .../js/jQuery-File-Upload/js/jquery.fileupload.js | 1477 ++++++++ .../js/jquery.iframe-transport.js | 217 ++ .../common/js/jQuery-File-Upload/js/jquery.js | 5 + .../js/jQuery-File-Upload/js/jquery.ui.widget.js | 528 +++ .../js/vendor/jquery.ui.widget.js | 572 ++++ .../frontend/src/public/common/js/jquery.sly.js | 1446 ++++++++ .../main/frontend/src/public/common/js/popModal.js | 1153 +++++++ .../frontend/src/public/framework/appserver/api.js | 287 ++ .../src/public/framework/appserver/server.js | 48 + .../src/public/framework/appserver/start_node.bat | 9 + .../src/public/framework/appserver/start_node.sh | 22 + .../public/framework/browser/css/open-ostyle.css | 937 +++++ .../framework/browser/images/collapse_arrow.png | Bin 0 -> 1174 bytes .../framework/browser/images/expand_arrow.png | Bin 0 -> 1182 bytes .../src/public/framework/browser/images/openo.png | Bin 0 -> 49007 bytes .../public/framework/browser/images/searchicon.png | Bin 0 -> 366 bytes .../src/public/framework/browser/index.html | 52 + .../src/public/framework/browser/js/DataService.js | 137 + .../src/public/framework/browser/js/app.js | 1361 ++++++++ .../src/public/framework/browser/template.html | 376 ++ .../framework/browser/templates/accordion.html | 26 + .../framework/browser/templates/buttons.html | 38 + .../framework/browser/templates/checkBoxes.html | 25 + .../framework/browser/templates/courses.html | 32 + .../framework/browser/templates/dropdown.html | 42 + .../framework/browser/templates/functional.html | 32 + .../public/framework/browser/templates/home.html | 154 + .../public/framework/browser/templates/list.html | 47 + .../public/framework/browser/templates/login.html | 40 + .../framework/browser/templates/management.html | 130 + .../framework/browser/templates/notification.html | 30 + .../framework/browser/templates/radioButtons.html | 28 + .../framework/browser/templates/register.html | 47 + .../public/framework/browser/templates/table.html | 39 + .../public/framework/browser/templates/tabs.html | 27 + .../framework/browser/templates/textarea.html | 121 + .../public/framework/browser/templates/tree.html | 25 + .../framework/browser/templates/verticalTab.html | 28 + .../browser/thirdparty/css/bootstrap.min.css | 7 + .../browser/thirdparty/css/img/diy/1_close.png | Bin 0 -> 601 bytes .../browser/thirdparty/css/img/diy/1_open.png | Bin 0 -> 580 bytes .../framework/browser/thirdparty/css/img/diy/2.png | Bin 0 -> 570 bytes .../framework/browser/thirdparty/css/img/diy/3.png | Bin 0 -> 762 bytes .../framework/browser/thirdparty/css/img/diy/4.png | Bin 0 -> 399 bytes .../framework/browser/thirdparty/css/img/diy/5.png | Bin 0 -> 710 bytes .../framework/browser/thirdparty/css/img/diy/6.png | Bin 0 -> 432 bytes .../framework/browser/thirdparty/css/img/diy/7.png | Bin 0 -> 534 bytes .../framework/browser/thirdparty/css/img/diy/8.png | Bin 0 -> 529 bytes .../framework/browser/thirdparty/css/img/diy/9.png | Bin 0 -> 467 bytes .../browser/thirdparty/css/img/line_conn.gif | Bin 0 -> 45 bytes .../browser/thirdparty/css/img/loading.gif | Bin 0 -> 381 bytes .../browser/thirdparty/css/img/zTreeStandard.gif | Bin 0 -> 5564 bytes .../browser/thirdparty/css/img/zTreeStandard.png | Bin 0 -> 11173 bytes .../browser/thirdparty/css/magic-check.css | 123 + .../browser/thirdparty/css/zTreeStyle.css | 97 + .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 ++ .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../browser/thirdparty/images/collapse_arrow.png | Bin 0 -> 1174 bytes .../browser/thirdparty/images/expand_arrow.png | Bin 0 -> 1182 bytes .../framework/browser/thirdparty/images/openo.png | Bin 0 -> 49007 bytes .../browser/thirdparty/images/searchicon.png | Bin 0 -> 366 bytes .../browser/thirdparty/js/angular-ui-router.min.js | 8 + .../framework/browser/thirdparty/js/angular.min.js | 295 ++ .../js/bootstrap-table-filter-control.min.js | 7 + .../browser/thirdparty/js/bootstrap-table.min.js | 8 + .../browser/thirdparty/js/bootstrap.min.js | 6 + .../browser/thirdparty/js/jquery.ztree.core-3.5.js | 70 + .../browser/thirdparty/js/jquery_1.12.4.min.js | 5 + .../framework/browser/thirdparty/js/mustache.js | 630 ++++ .../framework/browser/thirdparty/js/tree.jquery.js | 3616 ++++++++++++++++++++ .../frontend/src/public/framework/css/RMain.css | 239 ++ .../frontend/src/public/framework/css/VMMain.css | 758 ++++ .../src/public/framework/css/open-ostyle.css | 1009 ++++++ .../frontend/src/public/framework/template.html | 44 + .../src/public/framework/templateContainer.html | 79 + .../src/public/framework/templateFunctional.html | 82 + .../src/public/framework/templateNotification.html | 48 + .../src/public/framework/templateWidget.html | 213 ++ .../frontend/src/public/thirdparty/License.txt | 356 ++ .../src/public/thirdparty/css/alarm-rule.css | 8 + .../src/public/thirdparty/css/bootstrap.min.css | 7 + .../src/public/thirdparty/css/img/diy/1_close.png | Bin 0 -> 601 bytes .../src/public/thirdparty/css/img/diy/1_open.png | Bin 0 -> 580 bytes .../src/public/thirdparty/css/img/diy/2.png | Bin 0 -> 570 bytes .../src/public/thirdparty/css/img/diy/3.png | Bin 0 -> 762 bytes .../src/public/thirdparty/css/img/diy/4.png | Bin 0 -> 399 bytes .../src/public/thirdparty/css/img/diy/5.png | Bin 0 -> 710 bytes .../src/public/thirdparty/css/img/diy/6.png | Bin 0 -> 432 bytes .../src/public/thirdparty/css/img/diy/7.png | Bin 0 -> 534 bytes .../src/public/thirdparty/css/img/diy/8.png | Bin 0 -> 529 bytes .../src/public/thirdparty/css/img/diy/9.png | Bin 0 -> 467 bytes .../src/public/thirdparty/css/img/line_conn.gif | Bin 0 -> 45 bytes .../src/public/thirdparty/css/img/loading.gif | Bin 0 -> 381 bytes .../public/thirdparty/css/img/zTreeStandard.gif | Bin 0 -> 5564 bytes .../public/thirdparty/css/img/zTreeStandard.png | Bin 0 -> 11173 bytes .../src/public/thirdparty/css/magic-check.css | 123 + .../src/public/thirdparty/css/zTreeStyle.css | 97 + .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 ++ .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../frontend/src/public/thirdparty/images/add.png | Bin 0 -> 1104 bytes .../public/thirdparty/images/collapse_arrow.png | Bin 0 -> 1174 bytes .../src/public/thirdparty/images/delete.png | Bin 0 -> 1100 bytes .../frontend/src/public/thirdparty/images/edit.png | Bin 0 -> 3045 bytes .../src/public/thirdparty/images/expand_arrow.png | Bin 0 -> 1182 bytes .../frontend/src/public/thirdparty/images/off.png | Bin 0 -> 4103 bytes .../frontend/src/public/thirdparty/images/on.png | Bin 0 -> 4049 bytes .../src/public/thirdparty/images/openo.png | Bin 0 -> 49007 bytes .../src/public/thirdparty/images/round_off.png | Bin 0 -> 2927 bytes .../src/public/thirdparty/images/round_on.png | Bin 0 -> 2897 bytes .../src/public/thirdparty/images/searchicon.png | Bin 0 -> 366 bytes .../public/thirdparty/js/angular-ui-router.min.js | 8 + .../src/public/thirdparty/js/angular.min.js | 295 ++ .../js/bootstrap-table-filter-control.min.js | 7 + .../public/thirdparty/js/bootstrap-table.min.js | 8 + .../src/public/thirdparty/js/bootstrap.min.js | 6 + .../public/thirdparty/js/jquery.ztree.core-3.5.js | 70 + .../src/public/thirdparty/js/jquery_1.12.4.min.js | 5 + .../frontend/src/public/thirdparty/js/mustache.js | 630 ++++ rulemgt/src/main/frontend/src/tsconfig.json | 12 + rulemgt/src/main/frontend/src/tslint.json | 90 + rulemgt/src/main/frontend/src/typings.json | 8 + rulemgt/src/main/frontend/src/webpack.config.js | 15 + 167 files changed, 22615 insertions(+) create mode 100644 .gitignore create mode 100644 rulemgt/src/main/frontend/src/.gitignore create mode 100644 rulemgt/src/main/frontend/src/alarm/app/app.component.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/app.module.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/app.routing.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.html create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.service.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-modal/msg.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.html create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.html create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.service.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/ruleRequest.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/main.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/app/pages/remote.component.html create mode 100644 rulemgt/src/main/frontend/src/alarm/index.html create mode 100644 rulemgt/src/main/frontend/src/alarm/main.browser.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/main.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/polyfills.browser.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/polyfills.ts create mode 100644 rulemgt/src/main/frontend/src/alarm/vendor.ts create mode 100644 rulemgt/src/main/frontend/src/config/helpers.js create mode 100644 rulemgt/src/main/frontend/src/config/karma-test-shim.js create mode 100644 rulemgt/src/main/frontend/src/config/karma.conf.js create mode 100644 rulemgt/src/main/frontend/src/config/webpack.common.js create mode 100644 rulemgt/src/main/frontend/src/config/webpack.dev.js create mode 100644 rulemgt/src/main/frontend/src/config/webpack.prod.js create mode 100644 rulemgt/src/main/frontend/src/config/webpack.test.js create mode 100644 rulemgt/src/main/frontend/src/i18n/en.json create mode 100644 rulemgt/src/main/frontend/src/i18n/zh.json create mode 100644 rulemgt/src/main/frontend/src/package.json create mode 100644 rulemgt/src/main/frontend/src/public/common/css/fileupload.css create mode 100644 rulemgt/src/main/frontend/src/public/common/css/popModal.css create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/css/jquery.fileupload.css create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/loading.gif create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/progressbar.gif create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.fileupload.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.iframe-transport.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.ui.widget.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/vendor/jquery.ui.widget.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/jquery.sly.js create mode 100644 rulemgt/src/main/frontend/src/public/common/js/popModal.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/appserver/api.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/appserver/server.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/appserver/start_node.bat create mode 100644 rulemgt/src/main/frontend/src/public/framework/appserver/start_node.sh create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/css/open-ostyle.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/images/collapse_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/images/expand_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/images/openo.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/images/searchicon.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/index.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/js/DataService.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/js/app.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/template.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/accordion.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/buttons.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/checkBoxes.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/courses.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/dropdown.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/functional.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/home.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/list.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/login.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/management.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/notification.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/radioButtons.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/register.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/table.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/tabs.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/textarea.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/tree.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/templates/verticalTab.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/bootstrap.min.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/1_close.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/1_open.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/2.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/3.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/4.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/5.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/6.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/7.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/8.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/diy/9.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/line_conn.gif create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/loading.gif create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/zTreeStandard.gif create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/img/zTreeStandard.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/magic-check.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/css/zTreeStyle.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/fonts/glyphicons-halflings-regular.eot create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/fonts/glyphicons-halflings-regular.svg create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/fonts/glyphicons-halflings-regular.ttf create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/fonts/glyphicons-halflings-regular.woff create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/fonts/glyphicons-halflings-regular.woff2 create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/images/collapse_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/images/expand_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/images/openo.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/images/searchicon.png create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/angular-ui-router.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/angular.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/bootstrap-table-filter-control.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/bootstrap-table.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/bootstrap.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/jquery.ztree.core-3.5.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/jquery_1.12.4.min.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/mustache.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/browser/thirdparty/js/tree.jquery.js create mode 100644 rulemgt/src/main/frontend/src/public/framework/css/RMain.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/css/VMMain.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/css/open-ostyle.css create mode 100644 rulemgt/src/main/frontend/src/public/framework/template.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/templateContainer.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/templateFunctional.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/templateNotification.html create mode 100644 rulemgt/src/main/frontend/src/public/framework/templateWidget.html create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/License.txt create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/alarm-rule.css create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/bootstrap.min.css create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/1_close.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/1_open.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/2.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/3.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/4.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/5.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/6.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/7.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/8.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/diy/9.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/line_conn.gif create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/loading.gif create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/zTreeStandard.gif create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/img/zTreeStandard.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/magic-check.css create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/css/zTreeStyle.css create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/fonts/glyphicons-halflings-regular.eot create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/fonts/glyphicons-halflings-regular.svg create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/fonts/glyphicons-halflings-regular.ttf create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/fonts/glyphicons-halflings-regular.woff create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/fonts/glyphicons-halflings-regular.woff2 create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/add.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/collapse_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/delete.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/edit.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/expand_arrow.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/off.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/on.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/openo.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/round_off.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/round_on.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/images/searchicon.png create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/angular-ui-router.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/angular.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/bootstrap-table-filter-control.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/bootstrap-table.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/bootstrap.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/jquery.ztree.core-3.5.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/jquery_1.12.4.min.js create mode 100644 rulemgt/src/main/frontend/src/public/thirdparty/js/mustache.js create mode 100644 rulemgt/src/main/frontend/src/tsconfig.json create mode 100644 rulemgt/src/main/frontend/src/tslint.json create mode 100644 rulemgt/src/main/frontend/src/typings.json create mode 100644 rulemgt/src/main/frontend/src/webpack.config.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..281a117 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Ignore Vim temporary files +.*.sw? + +# Ignore changes to the JJB Configuration File +jenkins.ini + +# We don't want .netrc files since they're credential files +.netrc + +# Maven +target/ +dependency-reduced-pom.xml + +# Vagrant +.vagrant + +# IntelliJ +.idea/ +*.iml \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/.gitignore b/rulemgt/src/main/frontend/src/.gitignore new file mode 100644 index 0000000..54bfd20 --- /dev/null +++ b/rulemgt/src/main/frontend/src/.gitignore @@ -0,0 +1,42 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# compiled output +/dist +/tmp +/out-tsc + +# dependencies +/node_modules + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# misc +/.sass-cache +/connect.lock +/coverage +/libpeerconnection.log +npm-debug.log +testem.log +/typings + +# e2e +/e2e/*.js +/e2e/*.map + +# System Files +.DS_Store +Thumbs.db diff --git a/rulemgt/src/main/frontend/src/alarm/app/app.component.ts b/rulemgt/src/main/frontend/src/alarm/app/app.component.ts new file mode 100644 index 0000000..cc69df2 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/app.component.ts @@ -0,0 +1,41 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Component,OnInit } from '@angular/core'; +import {TranslateService} from 'ng2-translate'; +@Component({ + selector: 'remote-config', + templateUrl: './pages/remote.component.html', +}) +export class AppComponent implements OnInit{ + constructor(private translate:TranslateService){} + getLanguage():string{ + let rtnLanguage = localStorage.getItem("language-option"); + if( rtnLanguage == "null" || rtnLanguage == null ){ + rtnLanguage =window.navigator.language; + } + if( rtnLanguage.startsWith('en') ){ + return "en-US"; + } + return rtnLanguage; + } + + ngOnInit():void { + this.translate.addLangs(["en", "zh"]); + this.translate.setDefaultLang('zh'); + let language = this.getLanguage(); + this.translate.use(language); + } +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/app.module.ts b/rulemgt/src/main/frontend/src/alarm/app/app.module.ts new file mode 100644 index 0000000..72c60aa --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/app.module.ts @@ -0,0 +1,46 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { NgModule } from '@angular/core'; +import { BrowserModule } from '@angular/platform-browser'; +import { FormsModule } from '@angular/forms'; +import {routing} from "./app.routing"; +import {AppComponent} from "./app.component"; +import {AlarmRule} from "./correlation-ruleList/alarmRule.component"; +import {RuleInfo} from "./correlation-ruleInfo/ruleInfo.component"; +import {ModalService} from "./correlation-modal/modal.service"; +import {HttpModule,Jsonp} from '@angular/http'; +import {AlarmRuleService} from './correlation-ruleList/alarmRule.service'; +import {TranslateModule} from "ng2-translate"; +import {SifModalComponent} from './correlation-modal/modal.component' +@NgModule({ + imports: [ + BrowserModule, + FormsModule, + HttpModule, + routing, + TranslateModule.forRoot() + + ], + declarations: [ + AppComponent, + AlarmRule, + RuleInfo, + SifModalComponent + ], + providers:[ModalService,AlarmRuleService,Jsonp], + bootstrap: [AppComponent] +}) +export class AppModule { } \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/app.routing.ts b/rulemgt/src/main/frontend/src/alarm/app/app.routing.ts new file mode 100644 index 0000000..3502167 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/app.routing.ts @@ -0,0 +1,40 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { ModuleWithProviders } from '@angular/core'; +import { Routes, RouterModule } from '@angular/router'; +import {AlarmRule} from './correlation-ruleList/alarmRule.component'; +import {RuleInfo} from './correlation-ruleInfo/ruleInfo.component' +const appRoutes: Routes = [ + { + path: 'alarmRule', + component:AlarmRule + }, + { + path: 'ruleInfo', + component: RuleInfo + }, + { + path: 'ruleInfo/:id', + component: RuleInfo + }, + { + path:'', + redirectTo:'alarmRule', + pathMatch: 'full' + }, + +]; +export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes,{ useHash: true }); diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.html b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.html new file mode 100644 index 0000000..16f61e8 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.html @@ -0,0 +1,31 @@ + + \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.ts new file mode 100644 index 0000000..6c9f432 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.component.ts @@ -0,0 +1,44 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Component, Input, OnInit } from '@angular/core'; +import { ModalService } from './modal.service'; +import { Msg } from './msg'; +declare var $: any; +@Component({ + + selector: 'sif-modal', + templateUrl: './modal.component.html', + +}) +export class SifModalComponent implements OnInit { + constructor(private modalServer: ModalService) { }; + modalTitle: string = "modalTitleDefault"; + modalBodyMessage: string = "modalBodyMessageDefault"; + closeBtnTitle: string = "closeBtnTitleDefault"; + + ngOnInit(): void { + console.log('init'); + this.modalServer.getmodalObservable.subscribe((msg: Msg) => { + console.log('receive ' + msg); + this.modalTitle = msg.title || this.modalTitle; + this.modalBodyMessage = msg.message || this.modalBodyMessage; + this.closeBtnTitle = msg.btn || this.closeBtnTitle; + $('#myModal').modal('show'); + }); + } + + +} diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.service.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.service.ts new file mode 100644 index 0000000..1d41bfd --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/modal.service.ts @@ -0,0 +1,24 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Subject } from 'rxjs/Subject'; +import { Injectable } from '@angular/core'; +@Injectable() +export class ModalService { + private modalObservable = new Subject(); + get getmodalObservable() { + return this.modalObservable; + } +} diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/msg.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/msg.ts new file mode 100644 index 0000000..8608dc1 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-modal/msg.ts @@ -0,0 +1,20 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +export interface Msg { + title?: string; + message: string; + btn?: string; +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.html b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.html new file mode 100644 index 0000000..b77f547 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.html @@ -0,0 +1,150 @@ + +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + +
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+ + + +
+ +
+ +
+ +
+
+ + +
+ +
+
+
+ {{"file_import"|translate}} +
+
+
+ +
+
task2.zip
+ + + {{"common_browse"|translate}} + + + + + +
+ + +
+
+
+
+
+ +
+ +
+
+ + +
+
+
+ +
+
+ + + + +
+
+
+ +
\ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.ts new file mode 100644 index 0000000..8222735 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleInfo/ruleInfo.component.ts @@ -0,0 +1,295 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Component, OnInit, Input } from '@angular/core'; +import { RuleModel } from '../correlation-ruleList/alarmRule'; +import { ActivatedRoute, Params, Router } from '@angular/router'; +import { AlarmRuleService } from '../correlation-ruleList/alarmRule.service'; +import { Http, Response, Headers } from '@angular/http'; +import { ModalService } from '../correlation-modal/modal.service'; +import { NgModel } from '@angular/forms'; +declare var $: any; +@Component({ + selector: 'RuleInfo', + templateUrl: './ruleInfo.component.html' +}) +export class RuleInfo implements OnInit { + formModel: RuleModel; + queryRule: RuleModel; + id: number; + addBottonStatus: boolean; + constructor(private modalService: ModalService, private route: ActivatedRoute, private router: Router, private alarmRuleService: AlarmRuleService, http: Http) { }; + + update() { + this.queryRule.enabled = $('input:radio:checked').val(); + if (!this.queryRule.content.startsWith("package ")) { + let msg = { title: "exception_content_error", message: "exception_package_error" }; + this.modalService.getmodalObservable.next(msg); + } else { + + this.alarmRuleService.checkContent(this.queryRule.content) + .then(res => { + if (res.status == 200) { + this.alarmRuleService.updateRule(this.queryRule) + .then(res => { + if (res.status == 200) { + let msg = { title: "modalTitleUpdate", message: "message_update_rule_success" }; + this.modalService.getmodalObservable.next(msg); + this.router.navigate(['alarmRule']); + } else if (res.status == 499) { + let msg = { title: "modalTitleUpdate", message: "message_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + } else { + let msg = { title: "modalTitleUpdate", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + } + }).catch( + res => { + let msg = { title: "modalTitleUpdate", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + } + ); + + } else if (res.status == 499) { + let msg = { "title": "modalTitleCheck", message: "message_rule_content_repeat_error" }; + this.modalService.getmodalObservable.next(msg); + return false; + } else { + let msg = { "title": "modalTitleCheck", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + return false; + } + }) + } + } + + onSubmit(obj: NgModel) { + this.save(); + } + + save() { + if (!this.queryRule.content.startsWith("package ")) { + let msg = { title: "exception_content_error", message: "exception_package_error" }; + this.modalService.getmodalObservable.next(msg); + } else { + this.alarmRuleService.checkContent(this.queryRule.content).then(res => { + if (res.status == 200) { + this.alarmRuleService.save(this.queryRule).then(res => { + if (res.status == 200) { + let msg = { title: "modalTitleDefault", message: "message_add_rule_success" }; + this.modalService.getmodalObservable.next(msg); + this.router.navigate(['alarmRule']); + } else if (res.status == 499) { + let msg = { title: "modalTitleDefault", message: "message_rule_name_repeat_error" }; + this.modalService.getmodalObservable.next(msg); + } else { + let msg = { "title": "modalTitleCheck", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + } + + }).catch(error => { + let msg = { title: "modalTitleDefault", message: "message_rule_name_repeat_error" }; + this.modalService.getmodalObservable.next(msg); + }); + return true; + } else if (res.status == 499) { + let msg = { "title": "modalTitleCheck", message: "message_rule_content_repeat_error" }; + this.modalService.getmodalObservable.next(msg); + return false; + } else { + let msg = { "title": "modalTitleCheck", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + return false; + } + }) + } + } + + getRuleInfo(id: string): void { + this.route.params.switchMap((params: Params) => this.alarmRuleService.search(id)) + .subscribe(rule => { + rule[0].enabled = "" + rule[0].enabled; + this.queryRule = rule[0] + }) + } + + checkContent(judge: string): void { + if (!this.queryRule.content.startsWith("package ")) { + let msg = { title: "exception_content_error", message: "exception_package_error" }; + this.modalService.getmodalObservable.next(msg); + } else { + this.alarmRuleService.checkContent(this.queryRule.content) + .then(res => { + if (res.status == 200) { + let msg = { "title": "modalTitleCheck", message: "message_checkContent_rule_success" }; + this.modalService.getmodalObservable.next(msg); + } else if (res.status == 499) { + let msg = { "title": "modalTitleCheck", message: "message_rule_content_repeat_error" }; + this.modalService.getmodalObservable.next(msg); + return false; + } else { + let msg = { "title": "modalTitleCheck", message: "message_other_exception_rule_fail" }; + this.modalService.getmodalObservable.next(msg); + return false; + } + }); + } + } + switch(): void { + // alert(this.queryRule.enabled); + this.queryRule.enabled == '0' ? this.queryRule.enabled = '1' : this.queryRule.enabled = '0'; + } + + + initUpload(queryRule: RuleModel): void { + $("#fileName").text(""); + $("#importFailTip").addClass("hide_panel"); + $("#fileupload").fileupload({ + + dropZone: $('#dropzone'), + maxNumberOfFiles: 1, + maxChunkSize: 20000000, + autoUpload: false, + add: function (e, data) { + var fileName = data.files[0].name; + + $("#importFailTip").addClass("hide_panel"); + let suffix = fileName.substring(fileName.lastIndexOf("."), fileName.length) + + if (suffix != ".txt") { + $("#importFailTip").removeClass("hide_panel"); + return suffix; + } + + $("#bar").css('width', '0%'); + $("#persent").text('0%'); + $("#fileName").text(fileName); + $("#fileremove").attr("disabled", false); + $("#filesubmit").attr("disabled", false); + $("#filesubmit").click(function () { + this.file = data.files[0] + var reader = new FileReader(); + reader.readAsText(this.file); + reader.onload = function (data) { + queryRule.content = this.result; + } + $("#fileremove").click(); + $("#importDiv").hide(); + e.stopPropagation(); + }); + + $("#fileremove").click(function () { + $("#bar").css('width', '0%'); + $("#persent").text("0%"); + $("#fileName").text(""); + $("#filesubmit").attr("disabled", true); + $("#fileremove").attr("disabled", true); + }); + }, + done: function (e, data) { + + }, + fail: function (e, resp) { + }, + always: function (e, data) { + $(".progress").removeClass("active"); + $("#bar").css('width', '100%'); + $("#persent").text('100%'); + }, + progressall: function (e, data) { + } + }); + } + + initImportDiv(queryRule: RuleModel): void { + this.initUpload(queryRule); + var importDiv = $("#importDiv"); + $(function (arg) { + $("#importBtn").click(function (e) { + e.preventDefault(); + $("[data-toggle='tooltip']").tooltip(); + $("#importFailTip").addClass("hide_panel"); + showDiv(); + $(document).one("click", function (e) { + $(importDiv).hide(); + }); + e.stopPropagation(); + }); + $(importDiv).click(function (e) { + e.stopPropagation(); + }); + $("#filesubmit").attr("disabled", true); + $("#fileremove").attr("disabled", true); + }); + function showDiv() { + $("#bar").css('width', '0%'); + $("#persent").text('0%'); + $(importDiv).fadeIn(); + } + } + ngOnInit() { + this.formModel = { + ruleid: null, + rulename: null, + description: null, + content: null, + createtime: null, + creator: null, + updatetime: null, + modifier: null, + enabled: null, + } + this.queryRule = { + ruleid: null, + rulename: null, + description: null, + content: null, + createtime: null, + creator: null, + updatetime: null, + modifier: null, + enabled: 0, + } + + this.route.params.subscribe((params) => { + + let id = params['id']; + if (typeof (id) == "string") { + if (id.indexOf('&') == -1) { + $("#ruleNameInput").attr("disabled", true); + $("#saveLabel").hide(); + } else { + this.addBottonStatus = false; + $("#saveLabel").hide(); + $("#checkLabel").hide(); + $("#updateLabel").hide(); + } + + let str = id.split("&"); + this.getRuleInfo(str[0]); + } else if (typeof (id) != "undefined") { + this.getRuleInfo(id); + } else { + $("#updateLabel").hide(); + } + if (typeof (this.queryRule.enabled) === "number") { + this.queryRule.enabled = "" + this.queryRule.enabled; + } + }) + + this.initImportDiv(this.queryRule); + } + +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.html b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.html new file mode 100644 index 0000000..a5ac344 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.html @@ -0,0 +1,135 @@ + +
+
+
+
+
+ + +
+ +
+ + +
+ +
+
+ + +
+
+
+ +
+
+
+ +
+
+
+
+ +
+
+
{{"common_total1"|translate}}{{totalcount}}{{"common_total2"|translate}}
+ + + + + + + + + + + + + + + + + + + + + + +
{{"field_rule_name_Add_Page"|translate}}{{"common_status"|translate}}{{"field_create_time"|translate}}{{"field_creator"|translate}}{{"field_update_time"|translate}}{{"common_operator"|translate}}
{{rule.rulename}}{{rule.createtime | date:'yyyy-MM-dd HH:mm:ss'}}{{rule.creator}}{{rule.updatetime | date:'yyyy-MM-dd HH:mm:ss'}} + + + + + + + + + + + + + + + + +
+
+ + + \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.ts new file mode 100644 index 0000000..af33eec --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.component.ts @@ -0,0 +1,170 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; +import { ModalService } from '../correlation-modal/modal.service'; +import { RuleModel } from './alarmRule'; +import { RuleRequest } from './ruleRequest'; +import { Router } from '@angular/router'; +import { Http, Response, Jsonp, Headers, RequestOptions } from '@angular/http'; +import { AlarmRuleService } from './alarmRule.service'; +declare var jQuery: any; + +@Component({ + selector: 'alarmRule', + templateUrl: './alarmRule.component.html', + +}) +export class AlarmRule implements OnInit { + ruleModel: RuleModel; + rules: RuleModel[]; + queryRule: RuleModel; + activeText: string; + ruleName: string; + enable_on = "enabled"; + enable_off = "disabled" + totalcount: number; + model: any; + ruleRequest: RuleRequest; + solution = 'ANGULAR'; + selection = 'A' + activeStatus = ["option_all", "common_enabled", "common_disabled"]; + + constructor(public _alarmRuleService: AlarmRuleService, private modalService: ModalService, + private router: Router) { }; + + switch(select: string): void { + console.log(select); + if (select == "common_enabled") { + this.ruleModel.enabled = 1; + } else if (select == "common_disabled") { + this.ruleModel.enabled = 0; + } else { + + this.ruleModel.enabled = null; + } + this.setActiveText(); + }; + + setActiveText(): void { + if (this.ruleModel.enabled == 1) { + this.activeText = "common_enabled"; + this.ruleRequest.enabled = 1; + } + else if (this.ruleModel.enabled == 0) { + this.activeText = "common_disabled"; + this.ruleRequest.enabled = 0; + } else { + this.activeText = "option_all"; + this.ruleRequest.enabled = null; + } + }; + + getRules(): Promise { + return this._alarmRuleService + .getRules() + .then(rules => { + this.rules = rules.rules; + this.totalcount = rules.totalcount; + }); + } + + searchRules(): void { + if (this.ruleModel.enabled == null) { + this.ruleRequest.enabled = null; + } + this.ruleRequest.rulename = this.ruleModel.rulename; + console.log(this.ruleRequest.enabled, this.ruleRequest.rulename); + + this._alarmRuleService + .searchrules(this.ruleRequest) + .then(rules => { + this.rules = rules; + this.totalcount = rules.length; + }); + } + updateRule(rule: RuleModel): void { + this.router.navigate(['ruleInfo/', rule.ruleid]); + } + + delete(rule: RuleModel): void { + rule.enabled == 1 ? this.deleteActiveRule(rule) : this.deleteModel(rule.ruleid, this._alarmRuleService, this); + } + + on_off(rule: RuleModel) { + rule.enabled == 0 ? rule.enabled = 1 : rule.enabled = 0; + this._alarmRuleService + .updateRule(rule) + .then(res => { + rule = res; + }); + } + + reset(): void { + this.ruleModel.rulename = null; + this.activeText = "option_all"; + this.ruleModel.enabled = null; + this.getRules(); + } + + deleteActiveRule(rule: RuleModel): void { + jQuery("#" + rule.ruleid).popModal({ + html: jQuery('#deleteActiveRuleContent'), + placement: 'leftTop', + showCloseBut: false, + onDocumentClickClose: true, + onOkBut: function () { + }, + }); + } + deleteModel(ruleid: string, alarm: AlarmRuleService, obj: any): void { + jQuery("#" + ruleid).popModal({ + html: jQuery('#deleteTimingTaskContent'), + placement: 'leftTop', + showCloseBut: false, + onDocumentClickClose: true, + onOkBut: function () { + jQuery("#deleteTimingTaskDlg").append(jQuery('#deleteTimingTaskContent')); + alarm.delete(ruleid); + obj.getRules(); + }, + onCancelBut: function () { + } + }); + } + + ngOnInit(): void { + this.activeText = "option_all"; + this.ruleModel = { + ruleid: null, + rulename: null, + description: "", + content: null, + createtime: null, + creator: null, + updatetime: null, + modifier: null, + enabled: 0, + } + this.ruleRequest = { + ruleid: null, + rulename: null, + creator: null, + modifier: null, + enabled: null, + } + this.getRules(); + } +} diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.service.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.service.ts new file mode 100644 index 0000000..c0ca2ad --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.service.ts @@ -0,0 +1,123 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { Injectable } from '@angular/core'; +import { Http, Response, Headers } from '@angular/http'; +import 'rxjs/add/operator/toPromise'; +import 'rxjs/add/operator/map'; +import { RuleModel } from './alarmRule'; +import { RuleRequest } from './ruleRequest' +import { Router } from '@angular/router'; +import { ModalService } from '../correlation-modal/modal.service'; + +@Injectable() +export class AlarmRuleService { + private ruleUrl = "/api/holmes-rule-mgmt/v1/rule"; + private headers = new Headers({ 'Content-Type': 'application/json' }); + constructor(private http: Http, private modalService: ModalService, private router: Router) { } + + getRules(): Promise { + return this.http.get(this.ruleUrl) + .toPromise() + .then(res => res.json()) + .catch(this.handleError); + } + + private handleError(error: any): Promise { + console.error('An error occurred', error); + return Promise.reject(error._body || error); + } + + search(ruleid: string): Promise { + if (typeof (ruleid) == "string") { + let rule = [{ + ruleid: null, + rulename: null, + description: null, + content: null, + createtime: null, + creator: null, + updatetime: null, + modifier: null, + enabled: 0, + }] + } + let data = { 'ruleid': ruleid }; + var queryrequest = JSON.stringify(data); + const url = `${this.ruleUrl}?queryrequest=${queryrequest}`; + return this.http.get(url, {headers:this.headers}) + .toPromise() + .then(res => res.json().rules as RuleModel) + .catch(this.handleError); + } + + searchrules(rule: RuleRequest): Promise { + let data = { rulename: rule.rulename, enabled: rule.enabled } + console.log(JSON.stringify(data)); + const url = `${this.ruleUrl}?queryrequest=${JSON.stringify(data)}` + return this.http.get(url, { body: data, headers: this.headers }) + .toPromise() + .then(res => res.json().rules as RuleModel[]) + .catch(this.handleError); + } + + checkContent(ruleContent: string): Promise { + const url = "/api/holmes-engine-mgmt/v1/rule"; + let data = { content: ruleContent }; + return this.http + .post(url, JSON.stringify(data), { headers: this.headers }) + .toPromise() + .then(res => res) + .catch(error => error); + } + + updateRule(rule: RuleModel): Promise { + let rules = { + "ruleid": rule.ruleid, + "description": rule.description, + "content": rule.content, + "enabled": rule.enabled + } + const url = `${this.ruleUrl}` + return this.http + .post(url, JSON.stringify(rules), { headers: this.headers }) + .toPromise() + .then(res => res) + .catch(error => error) + } + + save(rule: RuleModel): Promise { + let ruledata = { + "description": rule.description, + "content": rule.content, + "enabled": rule.enabled, + "rulename": rule.rulename + } + return this.http.put(this.ruleUrl, JSON.stringify(ruledata), { headers: this.headers }) + .toPromise() + .then(res => res) + .catch(error => error); + } + + public delete(ruleid: string): Promise { + const url = `${this.ruleUrl}` + '/' + ruleid; + return this.http.delete(url, { headers: this.headers }) + .toPromise() + .then(res => { + + }) + .catch(this.handleError); + } +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.ts new file mode 100644 index 0000000..69c5b22 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/alarmRule.ts @@ -0,0 +1,26 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +export class RuleModel { + ruleid: string; + rulename: string; + description: string; + content: string; + createtime: Date; + creator: number; + updatetime: Date; + modifier: string; + enabled?; +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/ruleRequest.ts b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/ruleRequest.ts new file mode 100644 index 0000000..fbbe1c9 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/correlation-ruleList/ruleRequest.ts @@ -0,0 +1,22 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +export class RuleRequest { + ruleid: string; + rulename: string; + creator: number; + modifier: string; + enabled: number; +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/main.ts b/rulemgt/src/main/frontend/src/alarm/app/main.ts new file mode 100644 index 0000000..b961c67 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/main.ts @@ -0,0 +1,19 @@ +/* + Copyright 2017 ZTE Corporation. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; +import { AppModule } from './app.module'; +const platform = platformBrowserDynamic(); +platform.bootstrapModule(AppModule); \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/app/pages/remote.component.html b/rulemgt/src/main/frontend/src/alarm/app/pages/remote.component.html new file mode 100644 index 0000000..2b5c8c3 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/app/pages/remote.component.html @@ -0,0 +1,19 @@ + +
+
+ + \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/index.html b/rulemgt/src/main/frontend/src/alarm/index.html new file mode 100644 index 0000000..cb19787 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/index.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + Loading... + + + \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/alarm/main.browser.ts b/rulemgt/src/main/frontend/src/alarm/main.browser.ts new file mode 100644 index 0000000..b3c471b --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/main.browser.ts @@ -0,0 +1,20 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; + +import { AppModule } from './app/app.module'; +const platform = platformBrowserDynamic(); + +platform.bootstrapModule(AppModule); diff --git a/rulemgt/src/main/frontend/src/alarm/main.ts b/rulemgt/src/main/frontend/src/alarm/main.ts new file mode 100644 index 0000000..049fe75 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/main.ts @@ -0,0 +1,21 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; +import { enableProdMode } from '@angular/core'; +import {AppModule } from './app/app.module'; +if (process.env.ENV === 'production') { + enableProdMode(); +} +platformBrowserDynamic().bootstrapModule(AppModule); diff --git a/rulemgt/src/main/frontend/src/alarm/polyfills.browser.ts b/rulemgt/src/main/frontend/src/alarm/polyfills.browser.ts new file mode 100644 index 0000000..ba7e54e --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/polyfills.browser.ts @@ -0,0 +1,43 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import 'ie-shim'; // Internet Explorer 9 support + +// import 'core-js/es6'; +// Added parts of es6 which are necessary for your project or your browser support requirements. + +import 'core-js/es6/symbol'; +import 'core-js/es6/object'; +import 'core-js/es6/function'; +import 'core-js/es6/parse-int'; +import 'core-js/es6/parse-float'; +import 'core-js/es6/number'; +import 'core-js/es6/math'; +import 'core-js/es6/string'; +import 'core-js/es6/date'; +import 'core-js/es6/array'; +import 'core-js/es6/regexp'; +import 'core-js/es6/map'; +import 'core-js/es6/set'; +import 'core-js/es6/weak-map'; +import 'core-js/es6/weak-set'; +import 'core-js/es6/typed'; +import 'core-js/es6/reflect'; +// see issue https://github.com/AngularClass/angular2-webpack-starter/issues/709 +// import 'core-js/es6/promise'; + +import 'core-js/es7/reflect'; +import 'zone.js/dist/zone'; +import 'zone.js/dist/long-stack-trace-zone'; diff --git a/rulemgt/src/main/frontend/src/alarm/polyfills.ts b/rulemgt/src/main/frontend/src/alarm/polyfills.ts new file mode 100644 index 0000000..840f0a6 --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/polyfills.ts @@ -0,0 +1,22 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import 'core-js/es6'; +import 'core-js/es7/reflect'; +require('zone.js/dist/zone'); +if (process.env.ENV === 'production') { +} else { + Error['stackTraceLimit'] = Infinity; + require('zone.js/dist/long-stack-trace-zone'); +} diff --git a/rulemgt/src/main/frontend/src/alarm/vendor.ts b/rulemgt/src/main/frontend/src/alarm/vendor.ts new file mode 100644 index 0000000..d130e9d --- /dev/null +++ b/rulemgt/src/main/frontend/src/alarm/vendor.ts @@ -0,0 +1,44 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import '@angular/platform-browser'; +import '@angular/platform-browser-dynamic'; +import '@angular/core'; +import '@angular/common'; +import '@angular/http'; +import '@angular/router'; +import 'angular-in-memory-web-api'; +import 'rxjs'; + +import '../public/thirdparty/js/jquery_1.12.4.min.js'; +import '../public/thirdparty/css/bootstrap.min.css'; +import '../public/thirdparty/css/magic-check.css'; +import '../public/thirdparty/css/zTreeStyle.css'; +import '../public/framework/browser/css/open-ostyle.css'; +import '../public/thirdparty/css/alarm-rule.css' + +import '../public/thirdparty/js/bootstrap.min.js'; +import '../public/thirdparty/js/bootstrap-table.min.js'; +import '../public/thirdparty/js/bootstrap-table-filter-control.min.js'; +import '../public/thirdparty/js/jquery.ztree.core-3.5.js'; + +import '../public/thirdparty/js/mustache.js'; + + +import '../public/common/css/popModal.css'; +import '../public/common/css/fileupload.css'; +import '../public/common/js/jQuery-File-Upload/css/jquery.fileupload.css'; + +import '../public/common/js/jQuery-File-Upload/js/jquery.fileupload.js'; +import '../public/common/js/popModal.js'; diff --git a/rulemgt/src/main/frontend/src/config/helpers.js b/rulemgt/src/main/frontend/src/config/helpers.js new file mode 100644 index 0000000..febdefa --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/helpers.js @@ -0,0 +1,21 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var path = require('path'); +var _root = path.resolve(__dirname, '..'); +function root(args) { + args = Array.prototype.slice.call(arguments, 0); + return path.join.apply(path, [_root].concat(args)); +} +exports.root = root; diff --git a/rulemgt/src/main/frontend/src/config/karma-test-shim.js b/rulemgt/src/main/frontend/src/config/karma-test-shim.js new file mode 100644 index 0000000..c356c69 --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/karma-test-shim.js @@ -0,0 +1,35 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +Error.stackTraceLimit = Infinity; + +require('core-js/es6'); +require('reflect-metadata'); + +require('zone.js/dist/zone'); +require('zone.js/dist/long-stack-trace-zone'); +require('zone.js/dist/proxy'); +require('zone.js/dist/sync-test'); +require('zone.js/dist/jasmine-patch'); +require('zone.js/dist/async-test'); +require('zone.js/dist/fake-async-test'); + +var appContext = require.context('../alarm', true, /\.spec\.ts/); + +appContext.keys().forEach(appContext); + +var testing = require('@angular/core/testing'); +var browser = require('@angular/platform-browser-dynamic/testing'); + +testing.TestBed.initTestEnvironment(browser.BrowserDynamicTestingModule, browser.platformBrowserDynamicTesting()); diff --git a/rulemgt/src/main/frontend/src/config/karma.conf.js b/rulemgt/src/main/frontend/src/config/karma.conf.js new file mode 100644 index 0000000..a6ec28b --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/karma.conf.js @@ -0,0 +1,51 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var webpackConfig = require('./webpack.test'); + +module.exports = function (config) { + var _config = { + basePath: '', + + frameworks: ['jasmine'], + + files: [ + {pattern: './config/karma-test-shim.js', watched: false} + ], + + preprocessors: { + './config/karma-test-shim.js': ['webpack', 'sourcemap'] + }, + + webpack: webpackConfig, + + webpackMiddleware: { + stats: 'errors-only' + }, + + webpackServer: { + noInfo: true + }, + + reporters: ['progress'], + port: 9876, + colors: true, + logLevel: config.LOG_INFO, + autoWatch: false, + browsers: ['PhantomJS'], + singleRun: true + }; + + config.set(_config); +}; diff --git a/rulemgt/src/main/frontend/src/config/webpack.common.js b/rulemgt/src/main/frontend/src/config/webpack.common.js new file mode 100644 index 0000000..ba0ed8e --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/webpack.common.js @@ -0,0 +1,115 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +const ContextReplacementPlugin = require('webpack/lib/ContextReplacementPlugin'); +const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin; +const CopyWebpackPlugin = require('copy-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin'); + +const webpack = require('webpack'); +const helpers = require('./helpers'); +const path = require('path'); + + + + + +module.exports = { + entry: { + 'main': './alarm/main.browser.ts', + 'vendor': './alarm/vendor.ts', + 'polyfills': './alarm/polyfills.browser.ts' + }, + resolve: { + + extensions: ['.js', '.ts', '.json'], + }, + module: { + + rules: [ + { + test: /\.ts$/, + use: [ + + { + loader: 'awesome-typescript-loader', + options: { + } + }, + { + loader: 'angular2-template-loader' + } + ], + exclude: [/\.(spec|e2e)\.ts$/] + }, + + { + test: /\.json$/, + use: 'json-loader' + }, + { + test: /\.css$/, + use: ['to-string-loader', 'css-loader?sourceMap'], + include: helpers.root('alarm', 'app'), + exclude: [helpers.root('alarm/assets'), helpers.root('public')] + }, + { + test: /\.html$/, + use: 'raw-loader', + include: [helpers.root('alarm/app')], + exclude: [helpers.root('alarm/index.html')] + }, + + + { + test: /\.(png|jpe?g|gif|ico|svg)$/, + include: [helpers.root('public') + ], + use: 'file-loader?name=assets/images/[name].[hash].[ext]' + }, + + + { + test: /\.(eot|woff2?|svg|ttf)([\?]?.*)$/, + include: [helpers.root('public', 'thirdparty') + ], + use: 'file-loader?name=assets/fonts/[name].[hash].[ext]' + } + + ], + + }, + + plugins: [ + + new CheckerPlugin(), + + new ContextReplacementPlugin( + /angular(\\|\/)core(\\|\/)alarm(\\|\/)linker/, + helpers.root('alarm'), + { + } + ), + + new HtmlWebpackPlugin({ + template: 'alarm/index.html', + }), + + new webpack.optimize.CommonsChunkPlugin({ + name: ['main', 'vendor', 'polyfills'] + }), + + ] +}; diff --git a/rulemgt/src/main/frontend/src/config/webpack.dev.js b/rulemgt/src/main/frontend/src/config/webpack.dev.js new file mode 100644 index 0000000..d649c1c --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/webpack.dev.js @@ -0,0 +1,153 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +const webpackMerge = require('webpack-merge'); +const commonConfig = require('./webpack.common.js'); +const helpers = require('./helpers'); + + +/** + * Webpack Plugins + */ +const DefinePlugin = require('webpack/lib/DefinePlugin'); +const ExtractTextPlugin = require('extract-text-webpack-plugin'); +const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin'); +const CopyWebpackPlugin = require('copy-webpack-plugin'); + + +module.exports = webpackMerge(commonConfig, { + + + + + devtool: 'source-map', + + + + output: { + + + + path: helpers.root('holmes'), + + + filename: '[name].bundle.js', + + + sourceMapFilename: '[name].map', + + + chunkFilename: '[id].chunk.js' + }, + + + + module: { + + rules: [ + { + test: /\.ts$/, + use: [ + { + loader: 'tslint-loader', + options: { + configFile: 'tslint.json', + fileOutput: { + dir: './foo/', + + ext: 'xml', + + clean: true, + + header: '\n', + + footer: '' + } + } + } + ], + exclude: [/\.(spec|e2e)\.ts$/] + }, + + { + test: /\.css$/, + use: ['to-string-loader', 'style-loader', 'css-loader'], + include: [helpers.root('alarm/assets'), helpers.root('public')] + }, + + ] + + }, + + + + plugins: [ + + + new CopyWebpackPlugin([ + { from: helpers.root('public/thirdparty/js/jquery_1.12.4.min.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('public/common/js/popModal.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('public/common/js/jQuery-File-Upload/js/jquery.ui.widget.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('public/common/js/jQuery-File-Upload/js/vendor/jquery.ui.widget.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('public/common/js/jQuery-File-Upload/js/jquery.iframe-transport.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('public/common/js/jQuery-File-Upload/js/jquery.fileupload.js'), to: helpers.root('holmes/public/js') }, + { from: helpers.root('i18n'), to: helpers.root('holmes/i18n') }, + { from: helpers.root('public/thirdparty/images/'), to: helpers.root('holmes/public/thirdparty/images') } + ]), + + + + new DefinePlugin({ + VERSION: JSON.stringify('version'), + CONST2: JSON.stringify('CONST2') + }), + + + ], + + + + + + devServer: { + + port: 9528, + + host: '10.74.24.20', + + historyApiFallback: true, + + inline: true, + + progress: true, + + colors: true, + + watch: false + }, + + + node: { + global: true, + console: true, + crypto: 'empty', + process: true, + module: false, + clearImmediate: false, + setImmediate: false + } + + + +}); diff --git a/rulemgt/src/main/frontend/src/config/webpack.prod.js b/rulemgt/src/main/frontend/src/config/webpack.prod.js new file mode 100644 index 0000000..dcefdab --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/webpack.prod.js @@ -0,0 +1,109 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +const ExtractTextPlugin = require('extract-text-webpack-plugin'); +const DefinePlugin = require('webpack/lib/DefinePlugin'); +const CopyWebpackPlugin = require('copy-webpack-plugin'); +const UglifyJsPlugin = require('webpack/lib/optimize/UglifyJsPlugin'); +const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin'); + + +const webpack = require('webpack'); +const commonConfig = require('./webpack.common.js'); +const webpackMerge = require('webpack-merge'); +const helpers = require('./helpers'); + + +module.exports = webpackMerge(commonConfig, { + + + devtool: 'source-map', + + + output: { + + path: helpers.root('holmes'), + + filename: '[name].[chunkhash].bundle.js',//'[name].[hash].js', + + sourceMapFilename: '[name].[chunkhash].bundle.map', + + + chunkFilename: '[id].[chunkhash].chunk.js'//'[id].[hash].chunk.js' + }, + + + + + module: { + + rules: [ + + { + test: /\.css$/, + loader: ExtractTextPlugin.extract({ + fallback: 'style-loader', + use: { + loader: 'css-loader', + options: { + sourceMap: true, + minimize: true + } + } + }), + include: [helpers.root('alarm/assets'), helpers.root('public'),helpers.root('alarm/app')] + }, + ] + + }, + + plugins: [ + + new webpack.NoErrorsPlugin(), + + new webpack.optimize.DedupePlugin(), + + new webpack.optimize.UglifyJsPlugin({ + sourceMap: true, + mangle: { + keep_fnames: true + } + }), + + + new ExtractTextPlugin('[name].[contenthash].css'), + + new DefinePlugin({ + 'CONST': true, + }), + + + new LoaderOptionsPlugin({ + minimize: true, + debug: false, + }) + ], + + + node: { + global: true, + crypto: 'empty', + process: false, + module: false, + clearImmediate: false, + setImmediate: false + } + + +}); diff --git a/rulemgt/src/main/frontend/src/config/webpack.test.js b/rulemgt/src/main/frontend/src/config/webpack.test.js new file mode 100644 index 0000000..7ac8b6d --- /dev/null +++ b/rulemgt/src/main/frontend/src/config/webpack.test.js @@ -0,0 +1,51 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var helpers = require('./helpers'); + +module.exports = { + devtool: 'inline-source-map', + + resolve: { + extensions: ['', '.ts', '.js'] + }, + + module: { + loaders: [ + { + test: /\.ts$/, + loaders: ['awesome-typescript-loader', 'angular2-template-loader'] + }, + { + test: /\.html$/, + loader: 'html' + + }, + { + test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/, + loader: 'null' + }, + { + test: /\.css$/, + exclude: helpers.root('src', 'app'), + loader: 'null' + }, + { + test: /\.css$/, + include: helpers.root('src', 'app'), + loader: 'raw' + } + ] + } +}; diff --git a/rulemgt/src/main/frontend/src/i18n/en.json b/rulemgt/src/main/frontend/src/i18n/en.json new file mode 100644 index 0000000..a755c4a --- /dev/null +++ b/rulemgt/src/main/frontend/src/i18n/en.json @@ -0,0 +1,50 @@ +{ + "common_status":"Status", + "common_keyword":"Keyword", + "field_rule_name":"Rule Name", + "common_query":"Query", + "common_reset":"Reset", + "common_add":"Add", + "common_total1":"Total ", + "common_total2":" Rules", + "field_create_time":"Creation Time", + "field_creator":"Creator", + "field_update_time":"Update Time", + "common_operator":"Operations", + "common_update":"Update", + "common_off":"OFF", + "common_on":"ON", + "common_delete":"Delete", + "message_is_delete":"Are you sure to delete the rule?", + "common_cancel":"Cancel", + "common_confirm":"Confirm", + "option_all":"All", + "common_enabled":"Enabled", + "common_disabled":"Disabled", + "field_description":"Description", + "common_check":"Check", + "common_save":"Save", + "common_file":"File", + "import":"Import", + "file_import":"Drag & drop files here ...", + "common_browse":"Browse", + "common_remove":"Remove", + "modalTitleDefault":"Add a Rule", + "closeBtnTitleDefault":"Close", + "modalBodyMessageDefault":"Message Contents", + "message_add_rule_success":"The rule is saved successfully.", + "exception_content_error":"The contents of the rule are invalid.", + "exception_package_error":"The contents of the rule must start with \"package\".", + "warn_delete_info": "Only the disabled rules can be deleted.", + "message_update_rule_success":"The rule is updated successfully.", + "message_engine_error_rule_fail":"Failed to call the interface of the engine management module.", + "modalTitleUpdate":"Rule Update", + "message_other_exception_rule_fail":"Unknown error. Please contact the administrator.", + "message_checkContent_rule_success":"The contents of the rule are valid.", + "modalTitleCheck":"Verification", + "message_rule_name_repeat_error":"A rule with the same name already exists.", + "message_rule_content_repeat_error":"A rule with the same contents already exists.", + "message_rule_content":"Rule Contents", + "message_rule_update_error":"The rule has not corresponding entity in the engine. Please contact the administrator to remove the rule manually from the database.", + "field_rule_name_Add_Page":"Rule Name" +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/i18n/zh.json b/rulemgt/src/main/frontend/src/i18n/zh.json new file mode 100644 index 0000000..565c457 --- /dev/null +++ b/rulemgt/src/main/frontend/src/i18n/zh.json @@ -0,0 +1,50 @@ +{ + "common_status":"状态", + "common_keyword":"关键字", + "field_rule_name":"规则名称", + "common_query":"查询 ", + "common_reset":"重置", + "common_add":"添加", + "common_total1":"共 ", + "common_total2":" 条记录", + "field_create_time":"创建时间", + "field_creator":"创建者", + "field_update_time":"修改时间", + "common_operator":"操作", + "common_update":"修改", + "common_off":"禁用", + "common_on":"启用", + "common_delete":"删除", + "message_is_delete":"是否删除", + "common_cancel":"取消", + "common_confirm":"确认", + "option_all":"全部", + "common_enabled":"已启用", + "common_disabled":"已禁用", + "field_description":"描述", + "common_check":"校验", + "common_save":"保存", + "common_file":"文件", + "import":"导入", + "file_import":"拖放文件到这里 ...", + "common_browse":"浏览", + "common_remove":"移除", + "modalTitleDefault":"规则添加", + "closeBtnTitleDefault":"关闭", + "modalBodyMessageDefault":"消息体", + "message_add_rule_success":"添加成功", + "exception_content_error":"规则内容错误", + "exception_package_error":"规则必须以package开头", + "warn_delete_info":"只能删除处于已停止状态的规则", + "message_update_rule_success":"修改成功", + "message_exception_rule_fail":"从引擎调用删除规则接口失败", + "modalTitleUpdate":"规则修改", + "message_other_exception_rule_fail":"发生其他错误", + "message_checkContent_rule_success":"规则内容正确", + "modalTitleCheck":"验证规则", + "message_rule_name_repeat_error":"规则名字重复", + "message_rule_content_repeat_error":"规则内容重复", + "message_rule_content":"规则内容", + "message_rule_update_error":"规则的引擎内容被删了,请联系管理员删除这条规则", + "field_rule_name_Add_Page":"规则名称" +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/package.json b/rulemgt/src/main/frontend/src/package.json new file mode 100644 index 0000000..3b37034 --- /dev/null +++ b/rulemgt/src/main/frontend/src/package.json @@ -0,0 +1,69 @@ +{ + "name": "alarm-analysis", + "version": "1.0.0", + "description": "alarm-analysis", + "scripts": { + "build": " rimraf holmes && webpack --config config/webpack.prod.js --progress --profile --bail", + "start": "webpack-dev-server", + "tslint": "tslint", + "lint": "npm run tslint \"src/**/*.ts\" " + }, + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], + "dependencies": { + "@angular/common": "~2.3.1", + "@angular/compiler": "~2.3.1", + "@angular/core": "~2.3.1", + "@angular/forms": "~2.3.1", + "@angular/http": "~2.3.1", + "@angular/platform-browser": "~2.3.1", + "@angular/platform-browser-dynamic": "~2.3.1", + "@angular/router": "~3.0.1", + "@angular/upgrade": "~2.3.1", + "@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.20", + "angular-in-memory-web-api": "~0.1.1", + "angular2-router-loader": "^0.3.4", + "angular2-template-loader": "^0.6.0", + "awesome-typescript-loader": "^3.0.0-beta.18", + "bootstrap": "^3.3.7", + "core-js": "^2.4.1", + "ie-shim": "^0.1.0", + "json-load": "^1.0.1", + "ng2-translate": "^5.0.0", + "primeng": "^2.0.0-rc.1", + "reflect-metadata": "^0.1.8", + "rxjs": "^5.4.2", + "to-string-loader": "^1.1.5", + "tslint-eslint-rules": "^3.4.0", + "webpack-dev-server": "^1.16.2", + "zone.js": "^0.6.26" + }, + "devDependencies": { + "@ngtools/webpack": "1.1.4", + "@types/core-js": "0.9.35", + "@types/jasmine": "2.5.40", + "@types/node": "6.0.60", + "codelyzer": "~2.0.0-beta.4", + "concurrently": "^3.0.0", + "copy-webpack-plugin": "^4.0.1", + "css-loader": "^0.25.0", + "extract-text-webpack-plugin": "~2.0.0-rc.3", + "file-loader": "^0.10.1", + "html-loader": "0.4.4", + "html-webpack-plugin": "2.24.1", + "raw-loader": "^0.5.1", + "style-loader": "^0.13.2", + "tslint": "~4.4.2", + "tslint-loader": "^3.3.0", + "typescript": "^2.0.8", + "vrsource-tslint-rules": "^4.0.1", + "webpack": "~2.2.1", + "webpack-dev-server": "^1.16.2", + "webpack-merge": "^0.15.0" + } +} + \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/public/common/css/fileupload.css b/rulemgt/src/main/frontend/src/public/common/css/fileupload.css new file mode 100644 index 0000000..f8f943b --- /dev/null +++ b/rulemgt/src/main/frontend/src/public/common/css/fileupload.css @@ -0,0 +1,121 @@ +/** + * Copyright 2016 ZTE Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +@charset "UTF-8"; + +.file-caption { + display: inline-block; + overflow: hidden; + text-overflow: ellipsis; +} + +.file-caption .glyphicon { + display: inline-block; + min-width: 18px; + margin-top: 2px; +} + +.file-caption-name { + display: inline-block; + overflow: hidden; + max-height: 20px; + padding-right: 10px; + word-break: break-all; +} + +.file-caption-ellipsis { + position: absolute; + right: 10px; + margin-top: -6px; + font-size: 1.2em; + display: none; + font-weight: bold; + cursor: default; +} + +.file-drop-zone{ + border:1px dashed #aaa; + border-radius:4px; + height:100%; + text-align:center; + vertical-align:middle; + margin:12px 15px 12px 12px; + padding:5px +} +.file-drop-zone-title{ + color:#aaa; + font-size:20px; + padding:20px 10px +} +.fileupload-btn { + padding-bottom: 10px; +} + +.fileupload-input { + position: relative; + display: table; +} + +.file-preview { + border-radius:5px; + border:1px solid #ddd; + padding:5px; + width:100%; + margin-bottom:5px +} + +.upload { + width: 50%; +} + +.importDivArea { + display: inline-block; + position: relative; +} + +#importDiv { + position: absolute; + display: none; + left: 10px; + top: 35px; + width: 100%; + z-index: 999999; + min-width: 500px; + border: 1px solid rgb(221, 221, 221); + background: #FFFFFF; + box-shadow: 0 0 20px #ccc; + padding: 10px; +} + +#importDiv:before { + content: ''; + position: absolute; + left: 6px; + top: -6px; + border-top-width: 0; + border-bottom: 6px solid #aaa; + border-right: 10px solid transparent; + border-left: 10px solid transparent; +} +#importDiv:after { + content: ''; + position: absolute; + left: 6px; + top: -5px; + border-top-width: 0; + border-bottom: 6px solid #FFFFFF; + border-right: 10px solid transparent; + border-left: 10px solid transparent; +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/public/common/css/popModal.css b/rulemgt/src/main/frontend/src/public/common/css/popModal.css new file mode 100644 index 0000000..210d98a --- /dev/null +++ b/rulemgt/src/main/frontend/src/public/common/css/popModal.css @@ -0,0 +1,1099 @@ +/* +popModal - 1.21 [18.11.15] +Author: vadimsva +Github: https://github.com/vadimsva/popModal +*/ +/* popModal */ +.popModal { + position: absolute; + background: #fff; + padding: 9px; + border: 1px solid #ddd; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); + text-align: left; + max-width: 1000px; + min-width: 180px; + z-index: 9997; + box-sizing: border-box +} + +.popModal .close { + line-height: 12px; + font-size: 25px; + font-weight: bold; + font-family: serif; + position: absolute; + right: 8px; + top: 8px; + color: #000; + opacity: 0.2; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + outline: 0 +} + +.popModal .close:hover { + opacity: 1 +} + +.popModal .popModal_content { + margin: 0px auto; + margin-bottom: 30px !important; + word-wrap: break-word; + font-family: sans-serif; + font-size: 14px; + font-weight: initial; + font-style: initial; + color: initial; + text-decoration: initial; + text-transform: initial; + padding: initial +} + +.popModal .popModal_content.popModal_contentOverflow { + max-height: 1000px; + overflow-y: auto; + overflow-x: hidden; + margin: 0px 0px 0px 0px; + padding: 0 0px +} + +.popModal .popModal_content:before { + content: ''; + position: absolute; + left: 0; + right: 0; + height: 20px; + bottom: -20px +} + +.popModal .popModal_content.popModal_asMenu { + margin: 0 -15px +} + +.popModal .popModal_content.popModal_asMenu ul { + list-style: none; + padding: 0 +} + +.popModal.bottomRight .popModal_content.popModal_asMenu ul { + text-align: right +} + +.popModal .popModal_content.popModal_asMenu ul > li { + line-height: 40px +} + +.popModal .popModal_content.popModal_asMenu ul > li:empty { + border-top: 1px solid #ddd +} + +.popModal .popModal_content.popModal_asMenu ul > li > a { + display: block; + padding: 0 15px; + text-decoration: none +} + +.popModal .popModal_content.popModal_asMenu ul > li > a:hover { + background-color: #eee +} + +.popModal .popModal_footer { + background: #fafafa; + padding: 15px; + border-top: 1px solid #ddd; + text-align: right; + position: absolute; + bottom: 0; + left: 0; + right: 0 +} + +.popModal .popModal_footer button { + margin: 0 0 0 5px +} + +.popModal:before, +.popModal:after { + content: ''; + position: absolute; + border: 10px solid transparent +} + +.popModal:after { + z-index: 1 +} + +.popModal.bottomLeft:before, +.popModal.bottomRight:before, +.popModal.bottomCenter:before { + border-top-width: 0; + border-bottom-color: #aaa; + top: -10px; + left: 6px +} + +.popModal.bottomLeft:after, +.popModal.bottomRight:after, +.popModal.bottomCenter:after { + border-top-width: 0; + border-bottom-color: #fff; + top: -9px; + left: 6px +} + +.popModal.bottomRight:before, +.popModal.bottomRight:after { + left: auto; + right: 6px +} + +.popModal.bottomCenter:before, +.popModal.bottomCenter:after { + left: 50%; + margin-left: -10px +} + +.popModal.leftTop:before, +.popModal.leftCenter:before { + border-right-width: 0; + border-left-color: #aaa; + top: 6px; + right: -10px +} + +.popModal.leftTop:after, +.popModal.leftCenter:after { + border-right-width: 0; + border-left-color: #fff; + top: 6px; + right: -9px +} + +.popModal.rightTop:before, +.popModal.rightCenter:before { + border-left-width: 0; + border-right-color: #aaa; + top: 6px; + left: -10px +} + +.popModal.rightTop:after, +.popModal.rightCenter:after { + border-left-width: 0; + border-right-color: #fff; + top: 6px; + left: -9px +} + +.popModal.leftCenter:before, +.popModal.rightCenter:before { + top: 50%; + margin-top: -10px +} + +.popModal.leftCenter:after, +.popModal.rightCenter:after { + top: 50%; + margin-top: -10px +} + +@media (max-width: 400px) { + .popModal { + position: relative; + top: 10px !important; + left: auto !important; + right: auto !important; + width: 100% !important; + max-width: none + } +} + +/* notifyModal */ +.notifyModal { + position: fixed; + z-index: 999999; + background: rgba(255, 255, 255, 0.5); + opacity: 0; + cursor: pointer; + transition: all 200ms ease +} + +.notifyModal.overlay { + top: 0; + bottom: 0; + left: 0; + right: 0 +} + +.notifyModal.overlay.center { + top: 0; + bottom: 0 +} + +.notifyModal.open { + opacity: 1 +} + +.notifyModal.open .notifyModal_content { + transform: scale(1) +} + +.notifyModal .notifyModal_content { + position: absolute; + background: #F9EDBE; + width: 380px; + padding: 25px; + margin: auto; + border: 1px solid #CAB388; + text-align: justify; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); + transition: all 200ms ease; + transform: scale(0.95); + font-family: sans-serif; + font-size: 14px; + font-weight: initial; + font-style: initial; + color: initial; + text-decoration: initial; + text-transform: initial; + line-height: 18px; + box-sizing: border-box +} + +.notifyModal.alert .notifyModal_content { + background: #FFC7C7; + border-color: #CA7878; + color: #642020 +} + +.notifyModal.simple .notifyModal_content { + background: #fff; + border-color: #aaa +} + +.notifyModal.dark .notifyModal_content { + background: #333; + border-color: #000; + color: #ccc +} + +.notifyModal.dark .notifyModal_content .close { + color: #ccc +} + +.notifyModal.leftTop { + top: 0; + left: 0 +} + +.notifyModal.centerTop { + top: 0; + left: 0; + right: 0 +} + +.notifyModal.rightTop { + top: 0; + right: 0 +} + +.notifyModal.center { + top: 35%; + bottom: auto; + left: 0; + right: 0 +} + +.notifyModal.leftBottom { + bottom: 0; + left: 0 +} + +.notifyModal.centerBottom { + bottom: 0; + left: 0; + right: 0 +} + +.notifyModal.rightBottom { + bottom: 0; + right: 0 +} + +.notifyModal.center .notifyModal_content { + left: 0; + right: 0; + top: 35% +} + +.notifyModal.leftTop .notifyModal_content { + left: 20px; + top: 20px +} + +.notifyModal.centerTop .notifyModal_content { + left: 0; + right: 0; + top: 20px +} + +.notifyModal.rightTop .notifyModal_content { + right: 20px; + top: 20px +} + +.notifyModal.leftBottom .notifyModal_content { + left: 20px; + bottom: 20px +} + +.notifyModal.centerBottom .notifyModal_content { + left: 0; + right: 0; + bottom: 20px +} + +.notifyModal.rightBottom .notifyModal_content { + right: 20px; + bottom: 20px +} + +.notifyModal.centerTopSlide.open .notifyModal_content, +.notifyModal.centerBottomSlide.open .notifyModal_content { + transform: scale(1) translateY(0) +} + +.notifyModal.centerTopSlide .notifyModal_content { + top: 0; + left: 0; + right: 0; + transform: scale(1) translateY(-100%) +} + +.notifyModal.centerBottomSlide .notifyModal_content { + bottom: 0; + left: 0; + right: 0; + transform: scale(1) translateY(100%) +} + +.notifyModal.leftTopSlide.open .notifyModal_content, +.notifyModal.leftBottomSlide.open .notifyModal_content, +.notifyModal.rightTopSlide.open .notifyModal_content, +.notifyModal.rightBottomSlide.open .notifyModal_content { + transform: scale(1) translateX(0) +} + +.notifyModal.leftTopSlide .notifyModal_content { + left: 0; + top: 20px; + transform: scale(1) translateX(-100%) +} + +.notifyModal.leftBottomSlide .notifyModal_content { + left: 0; + bottom: 20px; + transform: scale(1) translateX(-100%) +} + +.notifyModal.rightTopSlide .notifyModal_content { + right: 0; + top: 20px; + transform: scale(1) translateX(100%) +} + +.notifyModal.rightBottomSlide .notifyModal_content { + right: 0; + bottom: 20px; + transform: scale(1) translateX(100%) +} + +.notifyModal .notifyModal_content .close { + line-height: 12px; + font-size: 25px; + font-weight: bold; + font-family: serif; + position: absolute; + right: 8px; + top: 8px; + color: #000; + opacity: 0.2; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + outline: 0 +} + +.notifyModal .notifyModal_content .close:hover { + opacity: 1 +} + +@media (max-width: 400px) { + .notifyModal .notifyModal_content { + width: auto; + margin: auto 20px + } + + .notifyModal.center .notifyModal_content { + top: 15% + } +} + +/* hintModal */ +.hintModal { + position: relative; + overflow: visible; + transform: translateZ(0); + backface-visibility: hidden; + z-index: 1 +} + +.hintModal .hintModal_container { + display: none; + left: 0; + margin: 0; + position: absolute; + background: #F8F4E1; + padding: 15px; + border: 1px solid #B4A984; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); + opacity: 0; + text-align: justify; + max-width: 260px; + min-width: 260px; + z-index: 1; + line-height: 16px; + border-radius: 4px; + font-size: 13px; + font-weight: normal; + font-family: sans-serif; + font-style: initial; + margin-top: 6px; + color: #333; + top: 100%; + box-sizing: border-box; + text-decoration: initial; + text-transform: initial +} + +.hintModal .hintModal_container:before, +.hintModal .hintModal_container:after { + content: ''; + position: absolute; + border: 6px solid transparent; + border-top-width: 0; + border-bottom-color: #B4A984; + top: -6px; + left: 6px +} + +.hintModal .hintModal_container:before { + border-bottom-color: #B4A984; + top: -6px +} + +.hintModal .hintModal_container:after { + border-bottom-color: #F8F4E1; + top: -5px; + z-index: 1 +} + +.hintModal.bottomRight .hintModal_container { + left: auto; + right: 0 +} + +.hintModal.bottomRight .hintModal_container:before, +.hintModal.bottomRight .hintModal_container:after { + left: auto; + right: 6px +} + +.hintModal.bottomCenter .hintModal_container { + left: -120px; + right: -120px; + margin-left: auto; + margin-right: auto +} + +.hintModal.bottomCenter .hintModal_container:before, +.hintModal.bottomCenter .hintModal_container:after { + left: 50%; + margin-left: -6px +} + +.hintModal:hover .hintModal_container { + display: block +} + +/* dialogModal */ +.dialogModal { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.7); + z-index: 888888; + overflow-y: scroll; + opacity: 0; + transition: all 200ms ease; + backface-visibility: hidden +} + +.dialogModal.open { + opacity: 1 +} + +.dialogModal * { + box-sizing: border-box +} + +.dialogModal.modal .dialogModal_container { + opacity: 0; + transition: all 200ms ease +} + +.dialogModal .dialogModal_top { + position: fixed; + left: 0; + right: 0; + z-index: 2; + opacity: 0 +} + +.dialogModal .dialogModal_top .dialogModal_header { + padding: 15px 25px; + line-height: 30px; + height: 60px; + font-size: 120%; + margin: auto; + width: 650px; + background: #fff; + border-bottom: 1px solid #f5f5f5; + position: relative +} + +.dialogModal .dialogModal_top .dialogModal_header .close { + line-height: 30px; + font-size: 40px; + font-family: serif; + color: #000; + opacity: 0.2; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + outline: 0; + width: 30px; + float: right +} + +.dialogModal .dialogModal_top .dialogModal_header .close:hover { + opacity: 1 +} + +.dialogModal .dialogModal_top .dialogModal_header .dialogPrev.notactive, +.dialogModal .dialogModal_top .dialogModal_header .dialogNext.notactive { + opacity: 0.1 !important; + cursor: default +} + +.dialogModal .dialogModal_top .dialogModal_header .dialogPrev, +.dialogModal .dialogModal_top .dialogModal_header .dialogNext { + line-height: 23px; + font-size: 30px; + color: #000; + opacity: 0.2; + cursor: pointer; + background: transparent; + border: 0; + outline: 0; + float: right; + width: 30px; + height: 30px; + text-align: center +} + +.dialogModal .dialogModal_top .dialogModal_header .dialogPrev:hover, +.dialogModal .dialogModal_top .dialogModal_header .dialogNext:hover { + opacity: 1 +} + +.dialogModal .dialogModal_top .dialogModal_header span { + display: inline-block; + overflow: hidden; + white-space: nowrap; + width: calc(100% - 90px); + text-overflow: ellipsis +} + +.dialogModal .dialogModal_top .dialogModal_header:after { + content: ''; + position: absolute; + bottom: -11px; + left: 0; + right: 0; + background: rgba(255, 255, 255, 0.5); + height: 10px +} + +.dialogModal .dialogModal_body { + position: absolute; + width: 650px; + left: 0; + right: 0; + margin: 60px auto 40px; + background: #fff; + font-family: sans-serif; + font-size: 14px; + font-weight: initial; + font-style: initial; + color: initial; + text-decoration: initial; + text-transform: initial; + opacity: 0 +} + +.dialogModal .dialogModal_body .dialogModal_header { + display: none +} + +.dialogModal .dialogModal_content { + padding: 15px 25px 25px; + line-height: 20px; + min-height: 200px +} + +.dialogModal .dialogModal_footer { + background: #fafafa; + padding: 15px 25px; + border-top: 1px solid #ddd; + text-align: right +} + +.dialogModal .dialogModal_footer button { + margin: 0 0 0 5px +} + +.dialogModal.modal { + overflow-y: hidden +} + +.dialogModal.modal .dialogModal_container { + position: absolute; + overflow-y: auto; + margin: auto; + width: 650px; + left: 0; + right: 0; + bottom: 40px +} + +.dialogModal.modal .dialogModal_top { + margin-top: -60px +} + +.dialogModal.modal .dialogModal_body { + margin: auto; + width: auto +} + +body.dialogModalOpen { + overflow: hidden +} + +@media (max-width: 680px) { + .dialogModal .dialogModal_container, .dialogModal .dialogModal_top .dialogModal_header, .dialogModal .dialogModal_body { + width: auto !important + } +} + +/* titleModal */ +.titleModal { +} + +.titleModal_container { + position: absolute; + z-index: 99999; + background: #000; + color: #fff; + padding: 5px 10px; + line-height: 16px; + margin-top: 12px; + border-radius: 4px; + font-size: 13px; + text-align: center; + max-width: 260px; + opacity: 0; + white-space: normal; + font-family: sans-serif; + font-weight: initial; + font-style: initial; + text-decoration: initial; + text-transform: initial +} + +.titleModal_container:after { + content: ''; + position: absolute; + border: 6px solid transparent; + border-top-width: 0; + border-bottom-color: #000; + top: -6px; + left: 50%; + margin-left: -6px +} + +.titleModal_container.top { + margin-top: -6px +} + +.titleModal_container.top:after { + border: 6px solid transparent; + border-bottom-width: 0; + border-top-color: #000; + top: auto; + bottom: -6px; + left: 50%; + margin-left: -6px +} + +.titleModal_container.left { + margin-top: auto; + margin-left: 3px +} + +.titleModal_container.left:after { + border: 6px solid transparent; + border-right-width: 0; + border-left-color: #000; + top: 50%; + left: auto; + right: -6px; + margin-left: 0; + margin-top: -6px +} + +.titleModal_container.right { + margin-top: auto; + margin-left: -3px +} + +.titleModal_container.right:after { + border: 6px solid transparent; + border-left-width: 0; + border-right-color: #000; + top: 50%; + left: 0; + margin-top: -6px +} + +.titleModal.light .titleModal_container { + background: #fff; + color: #000; + border: 1px solid #ccc +} + +.titleModal.light .titleModal_container:after { + border-bottom-color: #fff +} + +.titleModal.light .titleModal_container:before { + content: ''; + position: absolute; + border: 7px solid transparent; + border-top-width: 0; + border-bottom-color: #ccc; + top: -7px; + left: 50%; + margin-left: -7px +} + +.titleModal.light .titleModal_container.top:after { + border: 6px solid transparent; + border-bottom-width: 0; + border-top-color: #fff +} + +.titleModal.light .titleModal_container.top:before { + border: 6px solid transparent; + border-bottom-width: 0; + border-top-color: #ccc; + top: auto; + bottom: -7px; + left: 50%; + margin-left: -6px +} + +.titleModal.light .titleModal_container.left:after { + border: 6px solid transparent; + border-right-width: 0; + border-left-color: #fff +} + +.titleModal.light .titleModal_container.left:before { + border: 7px solid transparent; + border-right-width: 0; + border-left-color: #ccc; + top: 50%; + left: auto; + right: -7px; + margin-left: 0; + margin-top: -7px +} + +.titleModal.light .titleModal_container.right:after { + border: 6px solid transparent; + border-left-width: 0; + border-right-color: #fff +} + +.titleModal.light .titleModal_container.right:before { + border: 7px solid transparent; + border-left-width: 0; + border-right-color: #ccc; + top: 50%; + left: 0; + margin-top: -7px +} + +/* confirmModal */ +.confirmModal { + position: fixed; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: rgba(0, 0, 0, 0.7); + z-index: 888888; + overflow: auto; + opacity: 0; + transition: all 200ms ease; + backface-visibility: hidden +} + +.confirmModal.open { + opacity: 1 +} + +.confirmModal * { + box-sizing: border-box +} + +.confirmModal .confirmModal_body { + position: relative; + width: 400px; + left: 0; + right: 0; + margin: 0 auto 40px; + background: #fff; + font-family: sans-serif; + font-size: 14px; + font-weight: initial; + font-style: initial; + color: initial; + text-decoration: initial; + text-transform: initial; + opacity: 0 +} + +.confirmModal .confirmModal_body.open { + opacity: 1 +} + +.confirmModal .confirmModal_content { + padding: 60px 40px; + line-height: 20px +} + +.confirmModal .confirmModal_footer { + background: #fafafa; + padding: 15px 25px; + border-top: 1px solid #ddd; + text-align: right +} + +.confirmModal .confirmModal_footer button { + margin: 0 0 0 5px +} + +.confirmModal .confirmModal_body.needConfirm { + animation-name: needConfirm; + animation-timing-function: ease; + animation-iteration-count: 3 +} + +@keyframes needConfirm { + 0% { + transform: scale(1) + } + 50% { + transform: scale(1.1) + } + 100% { + transform: scale(1) + } +} + +body.confirmModalOpen { + overflow: hidden +} + +@media (max-width: 430px) { + .confirmModal .confirmModal_body { + width: 100% + } +} + +/* animation */ +.animated { + animation-duration: 0.2s; + animation-fill-mode: both; + transform: translateZ(0); + backface-visibility: hidden +} + +.fadeInLeft { + animation-name: fadeInLeft +} + +.fadeOutLeft { + animation-name: fadeOutLeft +} + +.fadeInRight { + animation-name: fadeInRight +} + +.fadeOutRight { + animation-name: fadeOutRight +} + +.fadeInTop { + animation-name: fadeInTop +} + +.fadeInTopBig { + animation-name: fadeInTopBig +} + +.fadeOutTop { + animation-name: fadeOutTop +} + +.fadeInBottom { + animation-name: fadeInBottom +} + +.fadeOutBottom { + animation-name: fadeOutBottom +} + +@keyframes fadeInLeft { + 0% { + opacity: 0; + transform: translateX(-10px) + } + 100% { + opacity: 1; + transform: translateX(0) + } +} + +@keyframes fadeOutLeft { + 0% { + opacity: 1; + transform: translateX(0) + } + 100% { + opacity: 0; + transform: translateX(-10px) + } +} + +@keyframes fadeInRight { + 0% { + opacity: 0; + transform: translateX(10px) + } + 100% { + opacity: 1; + transform: translateX(0) + } +} + +@keyframes fadeOutRight { + 0% { + opacity: 1; + transform: translateX(0) + } + 100% { + opacity: 0; + transform: translateX(10px) + } +} + +@keyframes fadeInTop { + 0% { + opacity: 0; + transform: translateY(-10px) + } + 100% { + opacity: 1; + transform: translateY(0) + } +} + +@keyframes fadeOutTop { + 0% { + opacity: 1; + transform: translateY(0) + } + 100% { + opacity: 0; + transform: translateY(-10px) + } +} + +@keyframes fadeInTopBig { + 0% { + opacity: 0; + transform: translateY(-100%) + } + 100% { + opacity: 1; + transform: translateY(0) + } +} + +@keyframes fadeInBottom { + 0% { + opacity: 0; + transform: translateY(10px) + } + 100% { + opacity: 1; + transform: translateY(0) + } +} + +@keyframes fadeOutBottom { + 0% { + opacity: 1; + transform: translateY(0) + } + 100% { + opacity: 0; + transform: translateY(10px) + } +} + +.prompt-message-min { + min-width: 300px; + max-width: 300px; +} \ No newline at end of file diff --git a/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/css/jquery.fileupload.css b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/css/jquery.fileupload.css new file mode 100644 index 0000000..2654036 --- /dev/null +++ b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/css/jquery.fileupload.css @@ -0,0 +1,37 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Plugin CSS + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.fileinput-button { + position: relative; + overflow: hidden; + display: inline-block; +} +.fileinput-button input { + position: absolute; + top: 0; + right: 0; + margin: 0; + opacity: 0; + -ms-filter: 'alpha(opacity=0)'; + font-size: 100px; + direction: ltr; + cursor: pointer; +} + +/* Fixes for IE < 8 */ +@media screen\9 { + .fileinput-button input { + filter: alpha(opacity=0); + font-size: 100%; + height: 100%; + } +} diff --git a/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/loading.gif b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..90f28cbdbb390b095e0d619cbe8d91208798e58f GIT binary patch literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD literal 0 HcmV?d00001 diff --git a/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/progressbar.gif b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/img/progressbar.gif new file mode 100644 index 0000000000000000000000000000000000000000..fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1 GIT binary patch literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbr').prop('disabled')); + + // The FileReader API is not actually used, but works as feature detection, + // as some Safari versions (5?) support XHR file uploads via the FormData API, + // but not non-multipart XHR file uploads. + // window.XMLHttpRequestUpload is not available on IE10, so we check for + // window.ProgressEvent instead to detect XHR2 file upload capability: + $.support.xhrFileUpload = !!(window.ProgressEvent && window.FileReader); + $.support.xhrFormDataFileUpload = !!window.FormData; + + // Detect support for Blob slicing (required for chunked uploads): + $.support.blobSlice = window.Blob && (Blob.prototype.slice || + Blob.prototype.webkitSlice || Blob.prototype.mozSlice); + + // Helper function to create drag handlers for dragover/dragenter/dragleave: + function getDragHandler(type) { + var isDragOver = type === 'dragover'; + return function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var dataTransfer = e.dataTransfer; + if (dataTransfer && $.inArray('Files', dataTransfer.types) !== -1 && + this._trigger( + type, + $.Event(type, {delegatedEvent: e}) + ) !== false) { + e.preventDefault(); + if (isDragOver) { + dataTransfer.dropEffect = 'copy'; + } + } + }; + } + + // The fileupload widget listens for change events on file input fields defined + // via fileInput setting and paste or drop events of the given dropZone. + // In addition to the default jQuery Widget methods, the fileupload widget + // exposes the "add" and "send" methods, to add or directly send files using + // the fileupload API. + // By default, files added via file input selection, paste, drag & drop or + // "add" method are uploaded immediately, but it is possible to override + // the "add" callback option to queue file uploads. + $.widget('blueimp.fileupload', { + + options: { + // The drop target element(s), by the default the complete document. + // Set to null to disable drag & drop support: + dropZone: $(document), + // The paste target element(s), by the default undefined. + // Set to a DOM node or jQuery object to enable file pasting: + pasteZone: undefined, + // The file input field(s), that are listened to for change events. + // If undefined, it is set to the file input fields inside + // of the widget element on plugin initialization. + // Set to null to disable the change listener. + fileInput: undefined, + // By default, the file input field is replaced with a clone after + // each input field change event. This is required for iframe transport + // queues and allows change events to be fired for the same file + // selection, but can be disabled by setting the following option to false: + replaceFileInput: true, + // The parameter name for the file form data (the request argument name). + // If undefined or empty, the name property of the file input field is + // used, or "files[]" if the file input name property is also empty, + // can be a string or an array of strings: + paramName: undefined, + // By default, each file of a selection is uploaded using an individual + // request for XHR type uploads. Set to false to upload file + // selections in one request each: + singleFileUploads: true, + // To limit the number of files uploaded with one XHR request, + // set the following option to an integer greater than 0: + limitMultiFileUploads: undefined, + // The following option limits the number of files uploaded with one + // XHR request to keep the request size under or equal to the defined + // limit in bytes: + limitMultiFileUploadSize: undefined, + // Multipart file uploads add a number of bytes to each uploaded file, + // therefore the following option adds an overhead for each file used + // in the limitMultiFileUploadSize configuration: + limitMultiFileUploadSizeOverhead: 512, + // Set the following option to true to issue all file upload requests + // in a sequential order: + sequentialUploads: false, + // To limit the number of concurrent uploads, + // set the following option to an integer greater than 0: + limitConcurrentUploads: undefined, + // Set the following option to true to force iframe transport uploads: + forceIframeTransport: false, + // Set the following option to the location of a redirect url on the + // origin server, for cross-domain iframe transport uploads: + redirect: undefined, + // The parameter name for the redirect url, sent as part of the form + // data and set to 'redirect' if this option is empty: + redirectParamName: undefined, + // Set the following option to the location of a postMessage window, + // to enable postMessage transport uploads: + postMessage: undefined, + // By default, XHR file uploads are sent as multipart/form-data. + // The iframe transport is always using multipart/form-data. + // Set to false to enable non-multipart XHR uploads: + multipart: true, + // To upload large files in smaller chunks, set the following option + // to a preferred maximum chunk size. If set to 0, null or undefined, + // or the browser does not support the required Blob API, files will + // be uploaded as a whole. + maxChunkSize: undefined, + // When a non-multipart upload or a chunked multipart upload has been + // aborted, this option can be used to resume the upload by setting + // it to the size of the already uploaded bytes. This option is most + // useful when modifying the options object inside of the "add" or + // "send" callbacks, as the options are cloned for each file upload. + uploadedBytes: undefined, + // By default, failed (abort or error) file uploads are removed from the + // global progress calculation. Set the following option to false to + // prevent recalculating the global progress data: + recalculateProgress: true, + // Interval in milliseconds to calculate and trigger progress events: + progressInterval: 100, + // Interval in milliseconds to calculate progress bitrate: + bitrateInterval: 500, + // By default, uploads are started automatically when adding files: + autoUpload: true, + + // Error and info messages: + messages: { + uploadedBytes: 'Uploaded bytes exceed file size' + }, + + // Translation function, gets the message key to be translated + // and an object with context specific data as arguments: + i18n: function (message, context) { + message = this.messages[message] || message.toString(); + if (context) { + $.each(context, function (key, value) { + message = message.replace('{' + key + '}', value); + }); + } + return message; + }, + + // Additional form data to be sent along with the file uploads can be set + // using this option, which accepts an array of objects with name and + // value properties, a function returning such an array, a FormData + // object (for XHR file uploads), or a simple object. + // The form of the first fileInput is given as parameter to the function: + formData: function (form) { + return form.serializeArray(); + }, + + // The add callback is invoked as soon as files are added to the fileupload + // widget (via file input selection, drag & drop, paste or add API call). + // If the singleFileUploads option is enabled, this callback will be + // called once for each file in the selection for XHR file uploads, else + // once for each file selection. + // + // The upload starts when the submit method is invoked on the data parameter. + // The data object contains a files property holding the added files + // and allows you to override plugin options as well as define ajax settings. + // + // Listeners for this callback can also be bound the following way: + // .bind('fileuploadadd', func); + // + // data.submit() returns a Promise object and allows to attach additional + // handlers using jQuery's Deferred callbacks: + // data.submit().done(func).fail(func).always(func); + add: function (e, data) { + if (e.isDefaultPrevented()) { + return false; + } + if (data.autoUpload || (data.autoUpload !== false && + $(this).fileupload('option', 'autoUpload'))) { + data.process().done(function () { + data.submit(); + }); + } + }, + + // Other callbacks: + + // Callback for the submit event of each file upload: + // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); + + // Callback for the start of each file upload request: + // send: function (e, data) {}, // .bind('fileuploadsend', func); + + // Callback for successful uploads: + // done: function (e, data) {}, // .bind('fileuploaddone', func); + + // Callback for failed (abort or error) uploads: + // fail: function (e, data) {}, // .bind('fileuploadfail', func); + + // Callback for completed (success, abort or error) requests: + // always: function (e, data) {}, // .bind('fileuploadalways', func); + + // Callback for upload progress events: + // progress: function (e, data) {}, // .bind('fileuploadprogress', func); + + // Callback for global upload progress events: + // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); + + // Callback for uploads start, equivalent to the global ajaxStart event: + // start: function (e) {}, // .bind('fileuploadstart', func); + + // Callback for uploads stop, equivalent to the global ajaxStop event: + // stop: function (e) {}, // .bind('fileuploadstop', func); + + // Callback for change events of the fileInput(s): + // change: function (e, data) {}, // .bind('fileuploadchange', func); + + // Callback for paste events to the pasteZone(s): + // paste: function (e, data) {}, // .bind('fileuploadpaste', func); + + // Callback for drop events of the dropZone(s): + // drop: function (e, data) {}, // .bind('fileuploaddrop', func); + + // Callback for dragover events of the dropZone(s): + // dragover: function (e) {}, // .bind('fileuploaddragover', func); + + // Callback for the start of each chunk upload request: + // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); + + // Callback for successful chunk uploads: + // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); + + // Callback for failed (abort or error) chunk uploads: + // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); + + // Callback for completed (success, abort or error) chunk upload requests: + // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); + + // The plugin options are used as settings object for the ajax calls. + // The following are jQuery ajax settings required for the file uploads: + processData: false, + contentType: false, + cache: false, + timeout: 0 + }, + + // A list of options that require reinitializing event listeners and/or + // special initialization code: + _specialOptions: [ + 'fileInput', + 'dropZone', + 'pasteZone', + 'multipart', + 'forceIframeTransport' + ], + + _blobSlice: $.support.blobSlice && function () { + var slice = this.slice || this.webkitSlice || this.mozSlice; + return slice.apply(this, arguments); + }, + + _BitrateTimer: function () { + this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); + this.loaded = 0; + this.bitrate = 0; + this.getBitrate = function (now, loaded, interval) { + var timeDiff = now - this.timestamp; + if (!this.bitrate || !interval || timeDiff > interval) { + this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; + this.loaded = loaded; + this.timestamp = now; + } + return this.bitrate; + }; + }, + + _isXHRUpload: function (options) { + return !options.forceIframeTransport && + ((!options.multipart && $.support.xhrFileUpload) || + $.support.xhrFormDataFileUpload); + }, + + _getFormData: function (options) { + var formData; + if ($.type(options.formData) === 'function') { + return options.formData(options.form); + } + if ($.isArray(options.formData)) { + return options.formData; + } + if ($.type(options.formData) === 'object') { + formData = []; + $.each(options.formData, function (name, value) { + formData.push({name: name, value: value}); + }); + return formData; + } + return []; + }, + + _getTotal: function (files) { + var total = 0; + $.each(files, function (index, file) { + total += file.size || 1; + }); + return total; + }, + + _initProgressObject: function (obj) { + var progress = { + loaded: 0, + total: 0, + bitrate: 0 + }; + if (obj._progress) { + $.extend(obj._progress, progress); + } else { + obj._progress = progress; + } + }, + + _initResponseObject: function (obj) { + var prop; + if (obj._response) { + for (prop in obj._response) { + if (obj._response.hasOwnProperty(prop)) { + delete obj._response[prop]; + } + } + } else { + obj._response = {}; + } + }, + + _onProgress: function (e, data) { + if (e.lengthComputable) { + var now = ((Date.now) ? Date.now() : (new Date()).getTime()), + loaded; + if (data._time && data.progressInterval && + (now - data._time < data.progressInterval) && + e.loaded !== e.total) { + return; + } + data._time = now; + loaded = Math.floor( + e.loaded / e.total * (data.chunkSize || data._progress.total) + ) + (data.uploadedBytes || 0); + // Add the difference from the previously loaded state + // to the global loaded counter: + this._progress.loaded += (loaded - data._progress.loaded); + this._progress.bitrate = this._bitrateTimer.getBitrate( + now, + this._progress.loaded, + data.bitrateInterval + ); + data._progress.loaded = data.loaded = loaded; + data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( + now, + loaded, + data.bitrateInterval + ); + // Trigger a custom progress event with a total data property set + // to the file size(s) of the current upload and a loaded data + // property calculated accordingly: + this._trigger( + 'progress', + $.Event('progress', {delegatedEvent: e}), + data + ); + // Trigger a global progress event for all current file uploads, + // including ajax calls queued for sequential file uploads: + this._trigger( + 'progressall', + $.Event('progressall', {delegatedEvent: e}), + this._progress + ); + } + }, + + _initProgressListener: function (options) { + var that = this, + xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); + // Accesss to the native XHR object is required to add event listeners + // for the upload progress event: + if (xhr.upload) { + $(xhr.upload).bind('progress', function (e) { + var oe = e.originalEvent; + // Make sure the progress event properties get copied over: + e.lengthComputable = oe.lengthComputable; + e.loaded = oe.loaded; + e.total = oe.total; + that._onProgress(e, options); + }); + options.xhr = function () { + return xhr; + }; + } + }, + + _isInstanceOf: function (type, obj) { + // Cross-frame instanceof check + return Object.prototype.toString.call(obj) === '[object ' + type + ']'; + }, + + _initXHRData: function (options) { + var that = this, + formData, + file = options.files[0], + // Ignore non-multipart setting if not supported: + multipart = options.multipart || !$.support.xhrFileUpload, + paramName = $.type(options.paramName) === 'array' ? + options.paramName[0] : options.paramName; + options.headers = $.extend({}, options.headers); + if (options.contentRange) { + options.headers['Content-Range'] = options.contentRange; + } + if (!multipart || options.blob || !this._isInstanceOf('File', file)) { + options.headers['Content-Disposition'] = 'attachment; filename="' + + encodeURI(file.name) + '"'; + } + if (!multipart) { + options.contentType = file.type || 'application/octet-stream'; + options.data = options.blob || file; + } else if ($.support.xhrFormDataFileUpload) { + if (options.postMessage) { + // window.postMessage does not allow sending FormData + // objects, so we just add the File/Blob objects to + // the formData array and let the postMessage window + // create the FormData object out of this array: + formData = this._getFormData(options); + if (options.blob) { + formData.push({ + name: paramName, + value: options.blob + }); + } else { + $.each(options.files, function (index, file) { + formData.push({ + name: ($.type(options.paramName) === 'array' && + options.paramName[index]) || paramName, + value: file + }); + }); + } + } else { + if (that._isInstanceOf('FormData', options.formData)) { + formData = options.formData; + } else { + formData = new FormData(); + $.each(this._getFormData(options), function (index, field) { + formData.append(field.name, field.value); + }); + } + if (options.blob) { + formData.append(paramName, options.blob, file.name); + } else { + $.each(options.files, function (index, file) { + // This check allows the tests to run with + // dummy objects: + if (that._isInstanceOf('File', file) || + that._isInstanceOf('Blob', file)) { + formData.append( + ($.type(options.paramName) === 'array' && + options.paramName[index]) || paramName, + file, + file.uploadName || file.name + ); + } + }); + } + } + options.data = formData; + } + // Blob reference is not needed anymore, free memory: + options.blob = null; + }, + + _initIframeSettings: function (options) { + var targetHost = $('').prop('href', options.url).prop('host'); + // Setting the dataType to iframe enables the iframe transport: + options.dataType = 'iframe ' + (options.dataType || ''); + // The iframe transport accepts a serialized array as form data: + options.formData = this._getFormData(options); + // Add redirect url to form data on cross-domain uploads: + if (options.redirect && targetHost && targetHost !== location.host) { + options.formData.push({ + name: options.redirectParamName || 'redirect', + value: options.redirect + }); + } + }, + + _initDataSettings: function (options) { + if (this._isXHRUpload(options)) { + if (!this._chunkedUpload(options, true)) { + if (!options.data) { + this._initXHRData(options); + } + this._initProgressListener(options); + } + if (options.postMessage) { + // Setting the dataType to postmessage enables the + // postMessage transport: + options.dataType = 'postmessage ' + (options.dataType || ''); + } + } else { + this._initIframeSettings(options); + } + }, + + _getParamName: function (options) { + var fileInput = $(options.fileInput), + paramName = options.paramName; + if (!paramName) { + paramName = []; + fileInput.each(function () { + var input = $(this), + name = input.prop('name') || 'files[]', + i = (input.prop('files') || [1]).length; + while (i) { + paramName.push(name); + i -= 1; + } + }); + if (!paramName.length) { + paramName = [fileInput.prop('name') || 'files[]']; + } + } else if (!$.isArray(paramName)) { + paramName = [paramName]; + } + return paramName; + }, + + _initFormSettings: function (options) { + // Retrieve missing options from the input field and the + // associated form, if available: + if (!options.form || !options.form.length) { + options.form = $(options.fileInput.prop('form')); + // If the given file input doesn't have an associated form, + // use the default widget file input's form: + if (!options.form.length) { + options.form = $(this.options.fileInput.prop('form')); + } + } + options.paramName = this._getParamName(options); + if (!options.url) { + options.url = options.form.prop('action') || location.href; + } + // The HTTP request method must be "POST" or "PUT": + options.type = (options.type || + ($.type(options.form.prop('method')) === 'string' && + options.form.prop('method')) || '' + ).toUpperCase(); + if (options.type !== 'POST' && options.type !== 'PUT' && + options.type !== 'PATCH') { + options.type = 'POST'; + } + if (!options.formAcceptCharset) { + options.formAcceptCharset = options.form.attr('accept-charset'); + } + }, + + _getAJAXSettings: function (data) { + var options = $.extend({}, this.options, data); + this._initFormSettings(options); + this._initDataSettings(options); + return options; + }, + + // jQuery 1.6 doesn't provide .state(), + // while jQuery 1.8+ removed .isRejected() and .isResolved(): + _getDeferredState: function (deferred) { + if (deferred.state) { + return deferred.state(); + } + if (deferred.isResolved()) { + return 'resolved'; + } + if (deferred.isRejected()) { + return 'rejected'; + } + return 'pending'; + }, + + // Maps jqXHR callbacks to the equivalent + // methods of the given Promise object: + _enhancePromise: function (promise) { + promise.success = promise.done; + promise.error = promise.fail; + promise.complete = promise.always; + return promise; + }, + + // Creates and returns a Promise object enhanced with + // the jqXHR methods abort, success, error and complete: + _getXHRPromise: function (resolveOrReject, context, args) { + var dfd = $.Deferred(), + promise = dfd.promise(); + context = context || this.options.context || promise; + if (resolveOrReject === true) { + dfd.resolveWith(context, args); + } else if (resolveOrReject === false) { + dfd.rejectWith(context, args); + } + promise.abort = dfd.promise; + return this._enhancePromise(promise); + }, + + // Adds convenience methods to the data callback argument: + _addConvenienceMethods: function (e, data) { + var that = this, + getPromise = function (args) { + return $.Deferred().resolveWith(that, args).promise(); + }; + data.process = function (resolveFunc, rejectFunc) { + if (resolveFunc || rejectFunc) { + data._processQueue = this._processQueue = + (this._processQueue || getPromise([this])).pipe( + function () { + if (data.errorThrown) { + return $.Deferred() + .rejectWith(that, [data]).promise(); + } + return getPromise(arguments); + } + ).pipe(resolveFunc, rejectFunc); + } + return this._processQueue || getPromise([this]); + }; + data.submit = function () { + if (this.state() !== 'pending') { + data.jqXHR = this.jqXHR = + (that._trigger( + 'submit', + $.Event('submit', {delegatedEvent: e}), + this + ) !== false) && that._onSend(e, this); + } + return this.jqXHR || that._getXHRPromise(); + }; + data.abort = function () { + if (this.jqXHR) { + return this.jqXHR.abort(); + } + this.errorThrown = 'abort'; + that._trigger('fail', null, this); + return that._getXHRPromise(false); + }; + data.state = function () { + if (this.jqXHR) { + return that._getDeferredState(this.jqXHR); + } + if (this._processQueue) { + return that._getDeferredState(this._processQueue); + } + }; + data.processing = function () { + return !this.jqXHR && this._processQueue && that + ._getDeferredState(this._processQueue) === 'pending'; + }; + data.progress = function () { + return this._progress; + }; + data.response = function () { + return this._response; + }; + }, + + // Parses the Range header from the server response + // and returns the uploaded bytes: + _getUploadedBytes: function (jqXHR) { + var range = jqXHR.getResponseHeader('Range'), + parts = range && range.split('-'), + upperBytesPos = parts && parts.length > 1 && + parseInt(parts[1], 10); + return upperBytesPos && upperBytesPos + 1; + }, + + // Uploads a file in multiple, sequential requests + // by splitting the file up in multiple blob chunks. + // If the second parameter is true, only tests if the file + // should be uploaded in chunks, but does not invoke any + // upload requests: + _chunkedUpload: function (options, testOnly) { + options.uploadedBytes = options.uploadedBytes || 0; + var that = this, + file = options.files[0], + fs = file.size, + ub = options.uploadedBytes, + mcs = options.maxChunkSize || fs, + slice = this._blobSlice, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + upload; + if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || + options.data) { + return false; + } + if (testOnly) { + return true; + } + if (ub >= fs) { + file.error = options.i18n('uploadedBytes'); + return this._getXHRPromise( + false, + options.context, + [null, 'error', file.error] + ); + } + // The chunk upload method: + upload = function () { + // Clone the options object for each chunk upload: + var o = $.extend({}, options), + currentLoaded = o._progress.loaded; + o.blob = slice.call( + file, + ub, + ub + mcs, + file.type + ); + // Store the current chunk size, as the blob itself + // will be dereferenced after data processing: + o.chunkSize = o.blob.size; + // Expose the chunk bytes position range: + o.contentRange = 'bytes ' + ub + '-' + + (ub + o.chunkSize - 1) + '/' + fs; + // Process the upload data (the blob and potential form data): + that._initXHRData(o); + // Add progress listeners for this chunk upload: + that._initProgressListener(o); + jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || + that._getXHRPromise(false, o.context)) + .done(function (result, textStatus, jqXHR) { + ub = that._getUploadedBytes(jqXHR) || + (ub + o.chunkSize); + // Create a progress event if no final progress event + // with loaded equaling total has been triggered + // for this chunk: + if (currentLoaded + o.chunkSize - o._progress.loaded) { + that._onProgress($.Event('progress', { + lengthComputable: true, + loaded: ub - o.uploadedBytes, + total: ub - o.uploadedBytes + }), o); + } + options.uploadedBytes = o.uploadedBytes = ub; + o.result = result; + o.textStatus = textStatus; + o.jqXHR = jqXHR; + that._trigger('chunkdone', null, o); + that._trigger('chunkalways', null, o); + if (ub < fs) { + // File upload not yet complete, + // continue with the next chunk: + upload(); + } else { + dfd.resolveWith( + o.context, + [result, textStatus, jqXHR] + ); + } + }) + .fail(function (jqXHR, textStatus, errorThrown) { + o.jqXHR = jqXHR; + o.textStatus = textStatus; + o.errorThrown = errorThrown; + that._trigger('chunkfail', null, o); + that._trigger('chunkalways', null, o); + dfd.rejectWith( + o.context, + [jqXHR, textStatus, errorThrown] + ); + }); + }; + this._enhancePromise(promise); + promise.abort = function () { + return jqXHR.abort(); + }; + upload(); + return promise; + }, + + _beforeSend: function (e, data) { + if (this._active === 0) { + // the start callback is triggered when an upload starts + // and no other uploads are currently running, + // equivalent to the global ajaxStart event: + this._trigger('start'); + // Set timer for global bitrate progress calculation: + this._bitrateTimer = new this._BitrateTimer(); + // Reset the global progress values: + this._progress.loaded = this._progress.total = 0; + this._progress.bitrate = 0; + } + // Make sure the container objects for the .response() and + // .progress() methods on the data object are available + // and reset to their initial state: + this._initResponseObject(data); + this._initProgressObject(data); + data._progress.loaded = data.loaded = data.uploadedBytes || 0; + data._progress.total = data.total = this._getTotal(data.files) || 1; + data._progress.bitrate = data.bitrate = 0; + this._active += 1; + // Initialize the global progress values: + this._progress.loaded += data.loaded; + this._progress.total += data.total; + }, + + _onDone: function (result, textStatus, jqXHR, options) { + var total = options._progress.total, + response = options._response; + if (options._progress.loaded < total) { + // Create a progress event if no final progress event + // with loaded equaling total has been triggered: + this._onProgress($.Event('progress', { + lengthComputable: true, + loaded: total, + total: total + }), options); + } + response.result = options.result = result; + response.textStatus = options.textStatus = textStatus; + response.jqXHR = options.jqXHR = jqXHR; + this._trigger('done', null, options); + }, + + _onFail: function (jqXHR, textStatus, errorThrown, options) { + var response = options._response; + if (options.recalculateProgress) { + // Remove the failed (error or abort) file upload from + // the global progress calculation: + this._progress.loaded -= options._progress.loaded; + this._progress.total -= options._progress.total; + } + response.jqXHR = options.jqXHR = jqXHR; + response.textStatus = options.textStatus = textStatus; + response.errorThrown = options.errorThrown = errorThrown; + this._trigger('fail', null, options); + }, + + _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { + // jqXHRorResult, textStatus and jqXHRorError are added to the + // options object via done and fail callbacks + this._trigger('always', null, options); + }, + + _onSend: function (e, data) { + if (!data.submit) { + this._addConvenienceMethods(e, data); + } + var that = this, + jqXHR, + aborted, + slot, + pipe, + options = that._getAJAXSettings(data), + send = function () { + that._sending += 1; + // Set timer for bitrate progress calculation: + options._bitrateTimer = new that._BitrateTimer(); + jqXHR = jqXHR || ( + ((aborted || that._trigger( + 'send', + $.Event('send', {delegatedEvent: e}), + options + ) === false) && + that._getXHRPromise(false, options.context, aborted)) || + that._chunkedUpload(options) || $.ajax(options) + ).done(function (result, textStatus, jqXHR) { + that._onDone(result, textStatus, jqXHR, options); + }).fail(function (jqXHR, textStatus, errorThrown) { + that._onFail(jqXHR, textStatus, errorThrown, options); + }).always(function (jqXHRorResult, textStatus, jqXHRorError) { + that._onAlways( + jqXHRorResult, + textStatus, + jqXHRorError, + options + ); + that._sending -= 1; + that._active -= 1; + if (options.limitConcurrentUploads && + options.limitConcurrentUploads > that._sending) { + // Start the next queued upload, + // that has not been aborted: + var nextSlot = that._slots.shift(); + while (nextSlot) { + if (that._getDeferredState(nextSlot) === 'pending') { + nextSlot.resolve(); + break; + } + nextSlot = that._slots.shift(); + } + } + if (that._active === 0) { + // The stop callback is triggered when all uploads have + // been completed, equivalent to the global ajaxStop event: + that._trigger('stop'); + } + }); + return jqXHR; + }; + this._beforeSend(e, options); + if (this.options.sequentialUploads || + (this.options.limitConcurrentUploads && + this.options.limitConcurrentUploads <= this._sending)) { + if (this.options.limitConcurrentUploads > 1) { + slot = $.Deferred(); + this._slots.push(slot); + pipe = slot.pipe(send); + } else { + this._sequence = this._sequence.pipe(send, send); + pipe = this._sequence; + } + // Return the piped Promise object, enhanced with an abort method, + // which is delegated to the jqXHR object of the current upload, + // and jqXHR callbacks mapped to the equivalent Promise methods: + pipe.abort = function () { + aborted = [undefined, 'abort', 'abort']; + if (!jqXHR) { + if (slot) { + slot.rejectWith(options.context, aborted); + } + return send(); + } + return jqXHR.abort(); + }; + return this._enhancePromise(pipe); + } + return send(); + }, + + _onAdd: function (e, data) { + var that = this, + result = true, + options = $.extend({}, this.options, data), + files = data.files, + filesLength = files.length, + limit = options.limitMultiFileUploads, + limitSize = options.limitMultiFileUploadSize, + overhead = options.limitMultiFileUploadSizeOverhead, + batchSize = 0, + paramName = this._getParamName(options), + paramNameSet, + paramNameSlice, + fileSet, + i, + j = 0; + if (!filesLength) { + return false; + } + if (limitSize && files[0].size === undefined) { + limitSize = undefined; + } + if (!(options.singleFileUploads || limit || limitSize) || + !this._isXHRUpload(options)) { + fileSet = [files]; + paramNameSet = [paramName]; + } else if (!(options.singleFileUploads || limitSize) && limit) { + fileSet = []; + paramNameSet = []; + for (i = 0; i < filesLength; i += limit) { + fileSet.push(files.slice(i, i + limit)); + paramNameSlice = paramName.slice(i, i + limit); + if (!paramNameSlice.length) { + paramNameSlice = paramName; + } + paramNameSet.push(paramNameSlice); + } + } else if (!options.singleFileUploads && limitSize) { + fileSet = []; + paramNameSet = []; + for (i = 0; i < filesLength; i = i + 1) { + batchSize += files[i].size + overhead; + if (i + 1 === filesLength || + ((batchSize + files[i + 1].size + overhead) > limitSize) || + (limit && i + 1 - j >= limit)) { + fileSet.push(files.slice(j, i + 1)); + paramNameSlice = paramName.slice(j, i + 1); + if (!paramNameSlice.length) { + paramNameSlice = paramName; + } + paramNameSet.push(paramNameSlice); + j = i + 1; + batchSize = 0; + } + } + } else { + paramNameSet = paramName; + } + data.originalFiles = files; + $.each(fileSet || files, function (index, element) { + var newData = $.extend({}, data); + newData.files = fileSet ? element : [element]; + newData.paramName = paramNameSet[index]; + that._initResponseObject(newData); + that._initProgressObject(newData); + that._addConvenienceMethods(e, newData); + result = that._trigger( + 'add', + $.Event('add', {delegatedEvent: e}), + newData + ); + return result; + }); + return result; + }, + + _replaceFileInput: function (data) { + var input = data.fileInput, + inputClone = input.clone(true), + restoreFocus = input.is(document.activeElement); + // Add a reference for the new cloned file input to the data argument: + data.fileInputClone = inputClone; + $('
').append(inputClone)[0].reset(); + // Detaching allows to insert the fileInput on another form + // without loosing the file input value: + input.after(inputClone).detach(); + // If the fileInput had focus before it was detached, + // restore focus to the inputClone. + if (restoreFocus) { + inputClone.focus(); + } + // Avoid memory leaks with the detached file input: + $.cleanData(input.unbind('remove')); + // Replace the original file input element in the fileInput + // elements set with the clone, which has been copied including + // event handlers: + this.options.fileInput = this.options.fileInput.map(function (i, el) { + if (el === input[0]) { + return inputClone[0]; + } + return el; + }); + // If the widget has been initialized on the file input itself, + // override this.element with the file input clone: + if (input[0] === this.element[0]) { + this.element = inputClone; + } + }, + + _handleFileTreeEntry: function (entry, path) { + var that = this, + dfd = $.Deferred(), + errorHandler = function (e) { + if (e && !e.entry) { + e.entry = entry; + } + // Since $.when returns immediately if one + // Deferred is rejected, we use resolve instead. + // This allows valid files and invalid items + // to be returned together in one set: + dfd.resolve([e]); + }, + successHandler = function (entries) { + that._handleFileTreeEntries( + entries, + path + entry.name + '/' + ).done(function (files) { + dfd.resolve(files); + }).fail(errorHandler); + }, + readEntries = function () { + dirReader.readEntries(function (results) { + if (!results.length) { + successHandler(entries); + } else { + entries = entries.concat(results); + readEntries(); + } + }, errorHandler); + }, + dirReader, entries = []; + path = path || ''; + if (entry.isFile) { + if (entry._file) { + // Workaround for Chrome bug #149735 + entry._file.relativePath = path; + dfd.resolve(entry._file); + } else { + entry.file(function (file) { + file.relativePath = path; + dfd.resolve(file); + }, errorHandler); + } + } else if (entry.isDirectory) { + dirReader = entry.createReader(); + readEntries(); + } else { + // Return an empy list for file system items + // other than files or directories: + dfd.resolve([]); + } + return dfd.promise(); + }, + + _handleFileTreeEntries: function (entries, path) { + var that = this; + return $.when.apply( + $, + $.map(entries, function (entry) { + return that._handleFileTreeEntry(entry, path); + }) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _getDroppedFiles: function (dataTransfer) { + dataTransfer = dataTransfer || {}; + var items = dataTransfer.items; + if (items && items.length && (items[0].webkitGetAsEntry || + items[0].getAsEntry)) { + return this._handleFileTreeEntries( + $.map(items, function (item) { + var entry; + if (item.webkitGetAsEntry) { + entry = item.webkitGetAsEntry(); + if (entry) { + // Workaround for Chrome bug #149735: + entry._file = item.getAsFile(); + } + return entry; + } + return item.getAsEntry(); + }) + ); + } + return $.Deferred().resolve( + $.makeArray(dataTransfer.files) + ).promise(); + }, + + _getSingleFileInputFiles: function (fileInput) { + fileInput = $(fileInput); + var entries = fileInput.prop('webkitEntries') || + fileInput.prop('entries'), + files, + value; + if (entries && entries.length) { + return this._handleFileTreeEntries(entries); + } + files = $.makeArray(fileInput.prop('files')); + if (!files.length) { + value = fileInput.prop('value'); + if (!value) { + return $.Deferred().resolve([]).promise(); + } + // If the files property is not available, the browser does not + // support the File API and we add a pseudo File object with + // the input value as name with path information removed: + files = [{name: value.replace(/^.*\\/, '')}]; + } else if (files[0].name === undefined && files[0].fileName) { + // File normalization for Safari 4 and Firefox 3: + $.each(files, function (index, file) { + file.name = file.fileName; + file.size = file.fileSize; + }); + } + return $.Deferred().resolve(files).promise(); + }, + + _getFileInputFiles: function (fileInput) { + if (!(fileInput instanceof $) || fileInput.length === 1) { + return this._getSingleFileInputFiles(fileInput); + } + return $.when.apply( + $, + $.map(fileInput, this._getSingleFileInputFiles) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _onChange: function (e) { + var that = this, + data = { + fileInput: $(e.target), + form: $(e.target.form) + }; + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + if (that.options.replaceFileInput) { + that._replaceFileInput(data); + } + if (that._trigger( + 'change', + $.Event('change', {delegatedEvent: e}), + data + ) !== false) { + that._onAdd(e, data); + } + }); + }, + + _onPaste: function (e) { + var items = e.originalEvent && e.originalEvent.clipboardData && + e.originalEvent.clipboardData.items, + data = {files: []}; + if (items && items.length) { + $.each(items, function (index, item) { + var file = item.getAsFile && item.getAsFile(); + if (file) { + data.files.push(file); + } + }); + if (this._trigger( + 'paste', + $.Event('paste', {delegatedEvent: e}), + data + ) !== false) { + this._onAdd(e, data); + } + } + }, + + _onDrop: function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var that = this, + dataTransfer = e.dataTransfer, + data = {}; + if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { + e.preventDefault(); + this._getDroppedFiles(dataTransfer).always(function (files) { + data.files = files; + if (that._trigger( + 'drop', + $.Event('drop', {delegatedEvent: e}), + data + ) !== false) { + that._onAdd(e, data); + } + }); + } + }, + + _onDragOver: getDragHandler('dragover'), + + _onDragEnter: getDragHandler('dragenter'), + + _onDragLeave: getDragHandler('dragleave'), + + _initEventHandlers: function () { + if (this._isXHRUpload(this.options)) { + this._on(this.options.dropZone, { + dragover: this._onDragOver, + drop: this._onDrop, + // event.preventDefault() on dragenter is required for IE10+: + dragenter: this._onDragEnter, + // dragleave is not required, but added for completeness: + dragleave: this._onDragLeave + }); + this._on(this.options.pasteZone, { + paste: this._onPaste + }); + } + if ($.support.fileInput) { + this._on(this.options.fileInput, { + change: this._onChange + }); + } + }, + + _destroyEventHandlers: function () { + this._off(this.options.dropZone, 'dragenter dragleave dragover drop'); + this._off(this.options.pasteZone, 'paste'); + this._off(this.options.fileInput, 'change'); + }, + + _setOption: function (key, value) { + var reinit = $.inArray(key, this._specialOptions) !== -1; + if (reinit) { + this._destroyEventHandlers(); + } + this._super(key, value); + if (reinit) { + this._initSpecialOptions(); + this._initEventHandlers(); + } + }, + + _initSpecialOptions: function () { + var options = this.options; + if (options.fileInput === undefined) { + options.fileInput = this.element.is('input[type="file"]') ? + this.element : this.element.find('input[type="file"]'); + } else if (!(options.fileInput instanceof $)) { + options.fileInput = $(options.fileInput); + } + if (!(options.dropZone instanceof $)) { + options.dropZone = $(options.dropZone); + } + if (!(options.pasteZone instanceof $)) { + options.pasteZone = $(options.pasteZone); + } + }, + + _getRegExp: function (str) { + var parts = str.split('/'), + modifiers = parts.pop(); + parts.shift(); + return new RegExp(parts.join('/'), modifiers); + }, + + _isRegExpOption: function (key, value) { + return key !== 'url' && $.type(value) === 'string' && + /^\/.*\/[igm]{0,3}$/.test(value); + }, + + _initDataAttributes: function () { + var that = this, + options = this.options, + data = this.element.data(); + // Initialize options set via HTML5 data-attributes: + $.each( + this.element[0].attributes, + function (index, attr) { + var key = attr.name.toLowerCase(), + value; + if (/^data-/.test(key)) { + // Convert hyphen-ated key to camelCase: + key = key.slice(5).replace(/-[a-z]/g, function (str) { + return str.charAt(1).toUpperCase(); + }); + value = data[key]; + if (that._isRegExpOption(key, value)) { + value = that._getRegExp(value); + } + options[key] = value; + } + } + ); + }, + + _create: function () { + this._initDataAttributes(); + this._initSpecialOptions(); + this._slots = []; + this._sequence = this._getXHRPromise(true); + this._sending = this._active = 0; + this._initProgressObject(this); + this._initEventHandlers(); + }, + + // This method is exposed to the widget API and allows to query + // the number of active uploads: + active: function () { + return this._active; + }, + + // This method is exposed to the widget API and allows to query + // the widget upload progress. + // It returns an object with loaded, total and bitrate properties + // for the running uploads: + progress: function () { + return this._progress; + }, + + // This method is exposed to the widget API and allows adding files + // using the fileupload API. The data parameter accepts an object which + // must have a files property and can contain additional options: + // .fileupload('add', {files: filesList}); + add: function (data) { + var that = this; + if (!data || this.options.disabled) { + return; + } + if (data.fileInput && !data.files) { + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + that._onAdd(null, data); + }); + } else { + data.files = $.makeArray(data.files); + this._onAdd(null, data); + } + }, + + // This method is exposed to the widget API and allows sending files + // using the fileupload API. The data parameter accepts an object which + // must have a files or fileInput property and can contain additional options: + // .fileupload('send', {files: filesList}); + // The method returns a Promise object for the file upload call. + send: function (data) { + if (data && !this.options.disabled) { + if (data.fileInput && !data.files) { + var that = this, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + aborted; + promise.abort = function () { + aborted = true; + if (jqXHR) { + return jqXHR.abort(); + } + dfd.reject(null, 'abort', 'abort'); + return promise; + }; + this._getFileInputFiles(data.fileInput).always( + function (files) { + if (aborted) { + return; + } + if (!files.length) { + dfd.reject(); + return; + } + data.files = files; + jqXHR = that._onSend(null, data); + jqXHR.then( + function (result, textStatus, jqXHR) { + dfd.resolve(result, textStatus, jqXHR); + }, + function (jqXHR, textStatus, errorThrown) { + dfd.reject(jqXHR, textStatus, errorThrown); + } + ); + } + ); + return this._enhancePromise(promise); + } + data.files = $.makeArray(data.files); + if (data.files.length) { + return this._onSend(null, data); + } + } + return this._getXHRPromise(false, data && data.context); + } + + }); + +})); diff --git a/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.iframe-transport.js b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.iframe-transport.js new file mode 100644 index 0000000..972b50c --- /dev/null +++ b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.iframe-transport.js @@ -0,0 +1,217 @@ +/* + * jQuery Iframe Transport Plugin + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/* global define, require, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery'], factory); + } else if (typeof exports === 'object') { + // Node/CommonJS: + factory(require('jquery')); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + // Helper variable to create unique names for the transport iframes: + var counter = 0; + + // The iframe transport accepts four additional options: + // options.fileInput: a jQuery collection of file input fields + // options.paramName: the parameter name for the file form data, + // overrides the name property of the file input field(s), + // can be a string or an array of strings. + // options.formData: an array of objects with name and value properties, + // equivalent to the return data of .serializeArray(), e.g.: + // [{name: 'a', value: 1}, {name: 'b', value: 2}] + // options.initialIframeSrc: the URL of the initial iframe src, + // by default set to "javascript:false;" + $.ajaxTransport('iframe', function (options) { + if (options.async) { + // javascript:false as initial iframe src + // prevents warning popups on HTTPS in IE6: + /*jshint scripturl: true */ + var initialIframeSrc = options.initialIframeSrc || 'javascript:false;', + /*jshint scripturl: false */ + form, + iframe, + addParamChar; + return { + send: function (_, completeCallback) { + form = $('
'); + form.attr('accept-charset', options.formAcceptCharset); + addParamChar = /\?/.test(options.url) ? '&' : '?'; + // XDomainRequest only supports GET and POST: + if (options.type === 'DELETE') { + options.url = options.url + addParamChar + '_method=DELETE'; + options.type = 'POST'; + } else if (options.type === 'PUT') { + options.url = options.url + addParamChar + '_method=PUT'; + options.type = 'POST'; + } else if (options.type === 'PATCH') { + options.url = options.url + addParamChar + '_method=PATCH'; + options.type = 'POST'; + } + // IE versions below IE8 cannot set the name property of + // elements that have already been added to the DOM, + // so we set the name along with the iframe HTML markup: + counter += 1; + iframe = $( + '' + ).bind('load', function () { + var fileInputClones, + paramNames = $.isArray(options.paramName) ? + options.paramName : [options.paramName]; + iframe + .unbind('load') + .bind('load', function () { + var response; + // Wrap in a try/catch block to catch exceptions thrown + // when trying to access cross-domain iframe contents: + try { + response = iframe.contents(); + // Google Chrome and Firefox do not throw an + // exception when calling iframe.contents() on + // cross-domain requests, so we unify the response: + if (!response.length || !response[0].firstChild) { + throw new Error(); + } + } catch (e) { + response = undefined; + } + // The complete callback returns the + // iframe content document as response object: + completeCallback( + 200, + 'success', + {'iframe': response} + ); + // Fix for IE endless progress bar activity bug + // (happens on form submits to iframe targets): + $('') + .appendTo(form); + window.setTimeout(function () { + // Removing the form in a setTimeout call + // allows Chrome's developer tools to display + // the response result + form.remove(); + }, 0); + }); + form + .prop('target', iframe.prop('name')) + .prop('action', options.url) + .prop('method', options.type); + if (options.formData) { + $.each(options.formData, function (index, field) { + $('') + .prop('name', field.name) + .val(field.value) + .appendTo(form); + }); + } + if (options.fileInput && options.fileInput.length && + options.type === 'POST') { + fileInputClones = options.fileInput.clone(); + // Insert a clone for each file input field: + options.fileInput.after(function (index) { + return fileInputClones[index]; + }); + if (options.paramName) { + options.fileInput.each(function (index) { + $(this).prop( + 'name', + paramNames[index] || options.paramName + ); + }); + } + // Appending the file input fields to the hidden form + // removes them from their original location: + form + .append(options.fileInput) + .prop('enctype', 'multipart/form-data') + // enctype must be set as encoding for IE: + .prop('encoding', 'multipart/form-data'); + // Remove the HTML5 form attribute from the input(s): + options.fileInput.removeAttr('form'); + } + form.submit(); + // Insert the file input fields at their original location + // by replacing the clones with the originals: + if (fileInputClones && fileInputClones.length) { + options.fileInput.each(function (index, input) { + var clone = $(fileInputClones[index]); + // Restore the original name and form properties: + $(input) + .prop('name', clone.prop('name')) + .attr('form', clone.attr('form')); + clone.replaceWith(input); + }); + } + }); + form.append(iframe).appendTo(document.body); + }, + abort: function () { + if (iframe) { + // javascript:false as iframe src aborts the request + // and prevents warning popups on HTTPS in IE6. + // concat is used to avoid the "Script URL" JSLint error: + iframe + .unbind('load') + .prop('src', initialIframeSrc); + } + if (form) { + form.remove(); + } + } + }; + } + }); + + // The iframe transport returns the iframe content document as response. + // The following adds converters from iframe to text, json, html, xml + // and script. + // Please note that the Content-Type for JSON responses has to be text/plain + // or text/html, if the browser doesn't include application/json in the + // Accept header, else IE will show a download dialog. + // The Content-Type for XML responses on the other hand has to be always + // application/xml or text/xml, so IE properly parses the XML response. + // See also + // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation + $.ajaxSetup({ + converters: { + 'iframe text': function (iframe) { + return iframe && $(iframe[0].body).text(); + }, + 'iframe json': function (iframe) { + return iframe && $.parseJSON($(iframe[0].body).text()); + }, + 'iframe html': function (iframe) { + return iframe && $(iframe[0].body).html(); + }, + 'iframe xml': function (iframe) { + var xmlDoc = iframe && iframe[0]; + return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : + $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || + $(xmlDoc.body).html()); + }, + 'iframe script': function (iframe) { + return iframe && $.globalEval($(iframe[0].body).text()); + } + } + }); + +})); diff --git a/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.js b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.js new file mode 100644 index 0000000..bfe47d6 --- /dev/null +++ b/rulemgt/src/main/frontend/src/public/common/js/jQuery-File-Upload/js/jquery.js @@ -0,0 +1,5 @@ +/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0; +}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="
a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:l.htmlSerialize?[0,"",""]:[1,"X
","
"]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("