From e94583e40ca9e19eabf7bd6d5ad0aea972f66151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E9=B9=84?= <1182383+zhc02@users.noreply.gitee.com> Date: Thu, 12 Mar 2020 00:02:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=87=AA=E5=8A=A8=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/install/css/install.css | 216 ++++++++++++++++++ public/install/css/perfect-scrollbar.min.css | 5 + public/install/data/database.php | 55 +++++ public/install/data/utf8.sql | 95 ++++++++ public/install/data/utf8_add.sql | 3 + public/install/images/install_bg.png | Bin 0 -> 49667 bytes public/install/include/function.php | 113 ++++++++++ public/install/include/var.php | 15 ++ public/install/index.php | 220 +++++++++++++++++++ public/install/js/jquery.icheck.min.js | 11 + public/install/js/jquery.js | 2 + public/install/js/jquery.mousewheel.js | 84 +++++++ public/install/js/jquery.validation.min.js | 16 ++ public/install/js/perfect-scrollbar.min.js | 4 + public/install/step_0.php | 55 +++++ public/install/step_1.php | 98 +++++++++ public/install/step_2.php | 64 ++++++ public/install/step_3.php | 124 +++++++++++ public/install/step_4.php | 50 +++++ public/install/step_5.php | 44 ++++ 20 files changed, 1274 insertions(+) create mode 100644 public/install/css/install.css create mode 100644 public/install/css/perfect-scrollbar.min.css create mode 100644 public/install/data/database.php create mode 100644 public/install/data/utf8.sql create mode 100644 public/install/data/utf8_add.sql create mode 100644 public/install/images/install_bg.png create mode 100644 public/install/include/function.php create mode 100644 public/install/include/var.php create mode 100644 public/install/index.php create mode 100644 public/install/js/jquery.icheck.min.js create mode 100644 public/install/js/jquery.js create mode 100644 public/install/js/jquery.mousewheel.js create mode 100644 public/install/js/jquery.validation.min.js create mode 100644 public/install/js/perfect-scrollbar.min.js create mode 100644 public/install/step_0.php create mode 100644 public/install/step_1.php create mode 100644 public/install/step_2.php create mode 100644 public/install/step_3.php create mode 100644 public/install/step_4.php create mode 100644 public/install/step_5.php diff --git a/public/install/css/install.css b/public/install/css/install.css new file mode 100644 index 0000000..28b6487 --- /dev/null +++ b/public/install/css/install.css @@ -0,0 +1,216 @@ +@charset "utf-8"; + +* { word-wrap: break-word; outline: none;} +html, body, ul, li, p { padding: 0; margin: 0;} + +body { font-family: "microsoft yahei", "Microsoft YaHei", "Lucida Grande", "Lucida Sans Unicode", Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; line-height: 20px; color: #7E8C8D; background-color: #FFFFFF;} +h1, h2, h4, h5, h6 { font-weight: normal; margin: 0;} +i, em { font-style: normal;} +ul, ol, li { list-style-type: none;} +a { color: #16A085; text-decoration: underline; transition: all 0.25s ease 0s;} +html { -webkit-text-size-adjust: none; min-height: 101%;} + + +/* Form Input +--------------------------------------*/ +input[type="text"], input[type="password"] { font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; color: #7E8C8C; line-height: 20px; text-indent: 6px; height: 20px; padding: 8px 5px; border: 2px solid #BEC3C7; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-transition: border .25s linear, color .25s linear; -moz-transition: border .25s linear, color .25s linear; -o-transition: border .25s linear, color .25s linear; transition: border .25s linear, color .25s linear;} +input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder { color: #B2BCC5;} +input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder { color: #B2BCC5;} +input[type="text"].placeholder, input[type="password"].placeholder { color: #B2BCC5;} +input[type="text"]:focus, input[type="password"]:focus { border-color: #1ABC9C; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;} +input[type="text"].flat, input[type="password"].flat { border-color: transparent;} +input[type="text"].flat:hover, input[type="password"].flat:hover { border-color: #BDC3C7;} +input[type="text"].flat:focus, input[type="password"].flat:focus { border-color: #1ABC9C;} +input[disabled], input[readonly], textarea[disabled], textarea[readonly] { color: #D5DBDB; background-color: #F4F6F6; border-color: #D5DBDB; cursor: default;} +input[type="text"], input[type="password"] { width: 290px;} +input.error { border-color: #F30;} + +/* Button Style +-------------------------------------- */ +.btn { font-size: 18px; line-height: 20px; color: #FFFFFF; background: #BDC3C7; display: inline-block; height: 20px; padding: 15px 30px; margin: 0 5px; border: none; text-decoration: none; text-shadow: none; -webkit-border-radius: 4px; -moz-border-radius: 4px/; border-radius: 4px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden;} +.btn:hover, .btn:focus { color: #FFFFFF; background-color: #CACFD2; outline: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden;} +.btn:active, .btn.active { color: rgba(255, 255, 255, 0.75); background-color: #A1A6A9; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;} +.btn.disabled, .btn[disabled] { color: rgba(255, 255, 255, 0.75); background-color: #BDC3C7; opacity: 0.7; filter: alpha(opacity=70)/*IE*/; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;} +.btn.btn-primary { background-color: #2b81bac9;} +.btn.btn-primary:hover, .btn.btn-primary:focus { background-color: #f40;} + +/* Scrollbar jQuery Plugin +-------------------------------------- */ +.ps-container .ps-scrollbar-x, .ps-container .ps-scrollbar-y { background-color: #AAA; height: 8px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; position: absolute; z-index: auto; bottom: 3px; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity.25s linear; -moz-transition: opacity .25s linear; transition: opacity .25s linear;} +.ps-container .ps-scrollbar-y { right: 3px; width: 8px; bottom: auto; } +.ps-container:hover .ps-scrollbar-x, .ps-container:hover .ps-scrollbar-y { opacity: .6; filter: alpha(opacity=60);} +.ps-container .ps-scrollbar-x:hover, .ps-container .ps-scrollbar-y:hover { opacity: .9; filter: alpha(opacity=90); cursor: default;} +.ps-container .ps-scrollbar-x.in-scrolling, .ps-container .ps-scrollbar-y.in-scrolling { opacity: .9; filter: alpha(opacity=90);} + +/* iCheck jquery plugin +-------------------------------------- */ +.icheckbox_flat-green, .iradio_flat-green { background: url(../images/install_bg.png) no-repeat; display: block; width: 20px; height: 20px; float: left; margin: 0; padding: 0; border: none; cursor: pointer;} +.icheckbox_flat-green { background-position: 0 -280px;} +.icheckbox_flat-green.checked { background-position: -22px -280px;} +.icheckbox_flat-green.disabled { background-position: -44px -280px; cursor: default;} +.icheckbox_flat-green.checked.disabled { background-position: -66px -280px;} +.iradio_flat-green { background-position: -88px -280px;} +.iradio_flat-green.checked { background-position: -110px -280px;} +.iradio_flat-green.disabled { background-position: -132px -280px; cursor: default;} +.iradio_flat-green.checked.disabled { background-position: -154px -280px;} + + +/* Layout head +-------------------------------------- */ +.header { width: 100%; height: 100px; border-bottom: solid 1px #ECF0F1;} +.header .layout { width: 960px; height: 100px; margin: 0 auto; position: relative; z-index: 1;} +.header .layout .title { height: 60px; position: absolute; z-index: 1; top: 20px; left: 0;} +.header .layout .title h2 { font-size: 36px; line-height: 40px; color: #2b81bac9; display: block; height: 40px;} +.header .layout .title h5 { font-size: 13px; font-weight: 600; line-height: 20px; color: #2C3E50; text-align: center; display: block; height: 20px;} +.header .layout .title h5 i { font-size: 11px; font-weight: normal; display: inline-block; margin: 0 0 0 5px;} +.header .layout .version { color: #7E8C8D; position: absolute; z-index: 1; bottom: 20px; right: 0;} + +/* Layout Central +-------------------------------------- */ +.main { width: 100%; min-height: 400px; padding: 30px 0;} + +/* Layout Bottom - copyright information +-------------------------------------- */ +.footer { text-align: center; width: 100%; height: 60px; padding: 10px 0 20px 0; border-top: solid 1px #ECF0F1;} +.footer h5 { font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 600; line-height: 24px; color: #7E8C8C;} +.footer h5 .blue { color: #2B81BA;} +.footer h5 .orange { color: #E77E23;} +.footer h5 .black { color: #2D3E50;} +.footer h5 sup { color: #34495E; margin-left: 2px;} +.footer h6 { font-family: Tahoma, Helvetica, Arial, sans-serif; font-size: 11px; line-height: 16px; color: #92A5A5;} +.footer h6 a { text-decoration: none; color: #7E8C8C;} +.footer h6 a:hover { text-decoration: blink;} + +/* Content section +-------------------------------------- */ +.text-box { width: 898px; height: 550px; margin: 0 auto; border: solid 1px #ECF0F1; position: relative; z-index: 1; overflow: hidden;} + +.license { line-height: 24px; width: 858px; margin: 20px auto;} +.license h1 { font-size: 18px; line-height: 28px; color: #7E8C8D; text-align: center;} +.license p { font-size: 12px; text-indent: 2em;} + +.btn-box { text-align: center; width: 900px; height: 50px; margin: 30px auto auto; overflow: hidden;} + +.error { color: red; padding-left:5px;} +/* Installation step by step guide +-------------------------------------- */ +.step-box { width: 900px; height: 200px; margin: 0 auto;} +.step-box .text-nav { width: 900px; height: 70px; position: relative; z-index: 1;} +.step-box .text-nav h1 { font-size: 60px; font-weight: 600; line-height: 68px; text-align: right; width: 49%; height: 68px; position: absolute; z-index: 1; top: 0; right: 51%;} +.step-box .text-nav h2 { font-size: 32px; font-weight: 600; line-height: 36px; text-align: left; width: 50%; height: 36px; position: absolute; z-index: 1; top: 4px; left: 51%;} +.step-box .text-nav h5 { font-size: 12px; line-height: 20px; color: #BEC3C6; text-align: left; width: 50%; height: 20px; position: absolute; z-index: 1; bottom: 5px; left: 51%;} +.procedure-nav { width: 900px; height: 100px; margin: 30px auto 0 auto; position: relative; z-index: 1;} +.schedule-ico { position: absolute; z-index: 1; top: 0; left: 0;} +.schedule-ico span { background: url(../images/install_bg.png) no-repeat; display: block; width: 26px; height: 26px; float: left; margin-left: 230px;} +.schedule-ico span.a { background-position: 0 0; margin-left: 50px;} +.schedule-ico span.b { background-position: -30px 0;} +.schedule-ico span.c { background-position: -60px 0;} +.schedule-ico span.d { background-position: -90px 0;} +.schedule-line-bg { background-color: #ECF0F1; width: 900px; height: 8px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; position: absolute; z-index: 1; top: 40px; left: 0;} +.schedule-line-now { background-color: #f50; height: 8px; -webkit-border-radius: 4px;-moz-border-radius: 4px;-o-border-radius: 4px;border-radius: 4px; position: absolute; z-index: 2; top: 40px; left: 0;} +.schedule-line-now em { FILTER:progid:DXImageTransform.Microsoft.Gradient(gradientType=1, startColorStr='#f50', endColorStr='#ECF0F1')/*IE6-9*/; background-image: -ms-linear-gradient(right, #ECF0F1 0%, #f50 100%)/* IE10 Consumer Preview */; background-image: -moz-linear-gradient(right, #ECF0F1 0%, #f50 100%)/* Mozilla Firefox */; background-image: -o-linear-gradient(right, #ECF0F1 0%, #f50 100%)/* Opera */; background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #ECF0F1), color-stop(1, #f50))/* Webkit (Safari/Chrome 10) */; background-image: -webkit-linear-gradient(right, #ECF0F1 0%, #f50 100%)/* Webkit (Chrome 11+) */; background-image: linear-gradient(to left, #ECF0F1 0%, #f50 100%)/* W3C Markup, IE10 Release Preview */; display: block; width: 60px; height: 8px; float: right;} +.schedule-point-bg { position: absolute; z-index: 3; top: 32px; left: 0;} +.schedule-point-bg span { background-color: #FFF; display: block; width: 24px; height: 24px; float: left; margin-left: 232px;-webkit-border-radius: 12px;-moz-border-radius: 12px; border-radius: 12px;} +.schedule-point-bg span.a { margin-left: 50px;} +.schedule-point-now { position: absolute; z-index: 4; top: 36px; left: 0;} +.schedule-point-now span { background-color: #ECF0F1; display: block; width: 16px; height: 16px; float: left; margin-left: 240px; -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px;} +.schedule-point-now span.a { margin-left: 54px;} +.schedule-text { width: 900px; height: 30px; position: absolute; z-index: 4; top: 66px; left: 0;} +.schedule-text span { font-size: 14px; color: #BEC3C7; text-align: center; display: block; width: 90px; float: left; margin-left: 167px;} +.schedule-text span.a { margin-left: 16px;} +#step1 .schedule-ico span.a { background-position: -120px 0;} +#step1 .schedule-line-now { width: 200px;} +#step1 .schedule-point-now span.a { background-color: #f50;} +#step1 .schedule-text span.a { font-weight: 600; color: #f50;} +#step2 .schedule-ico span.a { background-position: -120px 0;} +#step2 .schedule-ico span.b { background-position: -150px 0;} +#step2 .schedule-line-now { width: 440px;} +#step2 .schedule-point-now span.a, #step2 .schedule-point-now span.b { background-color: #f50;} +#step2 .schedule-text span.a, #step2 .schedule-text span.b { font-weight: 600; color: #f50;} +#step3 .schedule-ico span.a { background-position: -120px 0;} +#step3 .schedule-ico span.b { background-position: -150px 0;} +#step3 .schedule-ico span.c { background-position: -180px 0;} +#step3 .schedule-line-now { width: 680px;} +#step3 .schedule-point-now span.a, #step3 .schedule-point-now span.b, #step3 .schedule-point-now span.c { background-color: #f50;} +#step3 .schedule-text span.a, #step3 .schedule-text span.b, #step3 .schedule-text span.c { font-weight: 600; color: #f50;} +#step4 .schedule-ico span.a { background-position: -120px 0;} +#step4 .schedule-ico span.b { background-position: -150px 0;} +#step4 .schedule-ico span.c { background-position: -180px 0;} +#step4 .schedule-ico span.d { background-position: -210px 0;} +#step4 .schedule-line-now { width: 900px;} +#step4 .schedule-line-now em { display: none;} +#step4 .schedule-point-now span.a, #step4 .schedule-point-now span.b, #step4 .schedule-point-now span.c, #step4 .schedule-point-now span.d { background-color: #f50;} +#step4 .schedule-text span.a, #step4 .schedule-text span.b, #step4 .schedule-text span.c, #step4 .schedule-text span.d { font-weight: 600; color: #f50;} + +/* Select Install Module +-------------------------------------- */ +.select-install { width: 900px; margin: 20px auto 0 auto;} +.select-install label { display: block; height: 20px; clear: both; margin: 30px auto 0 100px;} +.select-install label h4 { font-size: 13px; font-weight: 600; float: left; margin-left: 6px;} +.select-install label h5 { font-size: 12px; float: left; margin-left: 6px;} +.select-module { background-color: #ECF0F1; width: 100%; height: 250px; margin: 30px auto; padding: 20px 0; position: relative; z-index: 2;} +.select-module .arrow { font-size: 0px; line-height: 0; width: 0px; height: 0px; margin-right: 200px; border-color: transparent transparent #ECF0F1 transparent; border-width: 10px; border-style: dashed dashed solid dashed; position: absolute; z-index: 1; top: -20px; right: 50%;} +.select-module ul { width: 984px; margin: 0 auto; overflow: hidden;} +.select-module ul li { background-color: #FFFFFF; width: 200px; height: 220px; float: left; padding: 15px; margin: 0 8px;} +.select-module ul li .ico { background: url(../images/install_bg.png) no-repeat; width: 96px; height: 96px; margin: 30px auto 0 auto;} +.select-module ul li.shop .ico { background-position: -110px -60px;} +.select-module ul li.cms .ico { background-position: -210px -60px;} +.select-module ul li.circle .ico { background-position: -310px -60px;} +.select-module ul li.microshop .ico { background-position: -410px -60px;} +.select-module ul li h4 { font-size: 16px; font-weight: 600; line-height: 24px; color: #f50; text-align: center; margin-top: 10px;} +.select-module ul li p { font-size: 12px; line-height: 18px; margin: 10px 10px 0 10px;} + +/* Test PHP configuration table +-------------------------------------- */ +.content-box { width: 900px; margin: 0 auto;} +.content-box table { width: 100%; margin: 20px 0;} +.content-box table caption { font-size: 18px; line-height: 24px; color: #7E8C8D; text-align: left; padding: 5px 1%;} +.content-box table th[scope="col"] { font-size: 14px; line-height: 24px; color: #FFF; background-color: #2b81bac9; text-align: left; height: 20px; padding: 7px 1%;} +.content-box table th[scope="row"] { line-height: 20px; background-color: #ECF0F1; text-align: left; height: 20px; padding: 5px 1%;} +.content-box table th[scope="col"]:first-of-type { border-radius: 5px 0 0 0;} +.content-box table th[scope="col"]:last-of-type { border-radius: 0 5px 0 0;} +.content-box table tr:last-of-type th[scope="row"]:last-of-type { border-radius: 0 0 0 5px;} +.content-box table td { line-height: 20px; background-color: #F5F7F8; height: 20px; padding: 5px 1%;} +.content-box table tr:last-of-type td:last-of-type { border-radius: 0 0 5px 0;} +.content-box table tr:last-of-type td:nth-last-child(3) { border-radius: 0 0 0 5px;} +.content-box table td span { line-height: 20px; display: block; height: 20px;} +.content-box table td span i { background: url(../images/install_bg.png) no-repeat; vertical-align: middle; display: inline-block; width: 16px; height: 16px; margin-right: 6px;} +.content-box table td span.yes i { background-position: 0 -30px;} +.content-box table td span.no i { background-position: -16px -30px;} +.content-box table td span.no { color: #F33;} +/* Fill the form +-------------------------------------- */ +.form-box { width: 900px; margin: 0 auto;} +.form-box fieldset { border-width: 1px 0 0 0; border-style: solid; border-color: #ECF0F1;} +.form-box legend { font-size: 18px; line-height: 24px; color: #7E8C8D;} +.form-box div { height: 40px; margin: 10px 0 0 0; clear: both;} +.form-box div label { font-size: 12px; line-height: 40px; color: #94A5A5; text-indent: 80px; display: block; width: 220px; height: 40px; float: left;} +.form-box div span { vertical-align: middle; display: inline-block; width: 300px; height: 40px; position: relative; z-index: 1;} +.form-box div span input { position: absolute; z-index: 1; top: 0; left: 0;} +.form-box div span font { line-height: 20px; background: url(../images/install_bg.png) no-repeat -540px 2px; height: 20px; padding-left: 20px; position: absolute; z-index: 9; top: 10px; right: 5px;} +.form-box div.icheckbox_flat-green { clear: none; } + +.form-box div h4 { font-size: 14px; line-height: 40px; color: #94A5A5; float: left; height:40px; margin-left: 6px;} +.form-box div em { color: #BEC3C6; margin-left: 20px;} + +/* Installation is complete +-------------------------------------- */ +.final-succeed { width: 900px; height: 85px; margin: 10px auto 0 auto; position: relative; z-index: 1;} +.final-succeed span.ico { background: url(../images/install_bg.png) no-repeat 0 -60px; width: 96px; height: 85px; position: absolute; z-index: 1; top: 0; right: 60%;} +.final-succeed h2 { font-size: 32px; font-weight: 600; line-height: 36px; text-align: left; width: 50%; height: 36px; position: absolute; z-index: 1; top: 10px; left: 42%;} +.final-succeed h5 { font-size: 14px; line-height: 20px; color: #BEC3C6; text-align: left; width: 50%; height: 20px; position: absolute; z-index: 1; bottom: 5px; left: 42%;} +.final-site-nav { background-color: #ECF0F1; width: 100%; margin: 50px auto; position: relative; z-index: 2;} +.final-site-nav .arrow { font-size: 0; line-height: 0; width: 0; height: 0; border-style: dashed dashed solid dashed; border-width: 10px; border-color: transparent transparent #ECF0F1 transparent; position: absolute; z-index: 1; top: -20px; right: 50%;} +.final-site-nav ul { width: 400px; height: 210px; margin: 0 auto;} +.final-site-nav ul li { width: 200px; float: left;} +.final-site-nav ul li .ico { background: url(../images/install_bg.png) no-repeat; width: 110px; height: 110px; margin: 20px auto 0 auto;} +.final-site-nav ul li.cms .ico { background-position: 0 -160px;} +.final-site-nav ul li.shop .ico { background-position: -110px -160px;} +.final-site-nav ul li.circle .ico { background-position: -220px -160px;} +.final-site-nav ul li.microshop .ico { background-position: -330px -160px;} +.final-site-nav ul li.admin .ico { background-position: -440px -160px;} +.final-site-nav ul li h5 { font-size: 14px; font-weight: 600; line-height: 24px; text-align: center; margin-top: 10px;} +.final-site-nav ul li h6 { font-size: 12px; line-height: 20px; text-align: center;} +.final-intro { width: 900px; margin: 0 auto;} +.final-intro p { font-size: 14px; margin-left: 300px;} +.final-intro p em { font-size: 12px; color: #BEC3C6;} \ No newline at end of file diff --git a/public/install/css/perfect-scrollbar.min.css b/public/install/css/perfect-scrollbar.min.css new file mode 100644 index 0000000..1b65348 --- /dev/null +++ b/public/install/css/perfect-scrollbar.min.css @@ -0,0 +1,5 @@ +/*! perfect-scrollbar - v0.5.6 +* http://noraesae.github.com/perfect-scrollbar/ +* Copyright (c) 2014 Hyunje Alex Jun; Licensed MIT */ + +.ps-container>.ps-scrollbar-x-rail{display:none;position:absolute;bottom:3px;height:8px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;opacity:0;filter:alpha(opacity=0);-o-transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;-moz-transition:background-color .2s linear,opacity .2s linear;transition:background-color .2s linear,opacity .2s linear}.ps-container.ps-active-x>.ps-scrollbar-x-rail{display:block}.ps-container:hover>.ps-scrollbar-x-rail{opacity:.6;filter:alpha(opacity=60)}.ps-container>.ps-scrollbar-x-rail:hover{background-color:#eee;opacity:.9;filter:alpha(opacity=90)}.ps-container>.ps-scrollbar-x-rail.in-scrolling{background-color:#eee;opacity:.9;filter:alpha(opacity=90)}.ps-container>.ps-scrollbar-y-rail{display:block;position:absolute;right:3px;width:8px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;opacity:0;filter:alpha(opacity=0);-o-transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;-moz-transition:background-color .2s linear,opacity .2s linear;transition:background-color .2s linear,opacity .2s linear}.ps-container.ps-active-y>.ps-scrollbar-y-rail{display:block}.ps-container:hover>.ps-scrollbar-y-rail{opacity:.6;filter:alpha(opacity=60)}.ps-container>.ps-scrollbar-y-rail:hover{background-color:#eee;opacity:.9;filter:alpha(opacity=90)}.ps-container>.ps-scrollbar-y-rail.in-scrolling{background-color:#eee;opacity:.9;filter:alpha(opacity=90)}.ps-container>.ps-scrollbar-x-rail>.ps-scrollbar-x{position:absolute;bottom:0;height:8px;background-color:#aaa;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-o-transition:background-color .2s linear;-webkit-transition:background-color.2s linear;-moz-transition:background-color .2s linear;transition:background-color .2s linear}.ps-container>.ps-scrollbar-x-rail:hover>.ps-scrollbar-x{background-color:#999}.ps-container>.ps-scrollbar-y-rail>.ps-scrollbar-y{position:absolute;right:0;width:8px;background-color:#aaa;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-o-transition:background-color .2s linear;-webkit-transition:background-color.2s linear;-moz-transition:background-color .2s linear;transition:background-color .2s linear}.ps-container>.ps-scrollbar-y-rail:hover>.ps-scrollbar-y{background-color:#999} \ No newline at end of file diff --git a/public/install/data/database.php b/public/install/data/database.php new file mode 100644 index 0000000..7774f59 --- /dev/null +++ b/public/install/data/database.php @@ -0,0 +1,55 @@ + 'mysql', + // 服务器地址 + 'hostname' => '===db_host===', + // 数据库名 + 'database' => '===db_name===', + // 用户名 + 'username' => '===db_user===', + // 密码 + 'password' => '===db_pwd===', + // 端口 + 'hostport' => '===db_port===', + // 连接dsn + 'dsn' => '', + // 数据库连接参数 + 'params' => [], + // 数据库编码默认采用utf8 + 'charset' => 'utf8', + // 数据库表前缀 + 'prefix' => '===db_prefix===', + // 数据库调试模式 + 'debug' => true, + // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器) + 'deploy' => 0, + // 数据库读写是否分离 主从式有效 + 'rw_separate' => false, + // 读写分离后 主服务器数量 + 'master_num' => 1, + // 指定从服务器序号 + 'slave_no' => '', + // 是否严格检查字段是否存在 + 'fields_strict' => true, + // 数据集返回类型 + 'resultset_type' => 'array', + // 自动写入时间戳字段 + 'auto_timestamp' => false, + // 时间字段取出后的默认时间格式 + 'datetime_format' => 'Y-m-d H:i:s', + // 是否需要进行SQL性能分析 + 'sql_explain' => false, + // Query类 + 'query' => '\\think\\db\\Query', +]; diff --git a/public/install/data/utf8.sql b/public/install/data/utf8.sql new file mode 100644 index 0000000..0b12cf1 --- /dev/null +++ b/public/install/data/utf8.sql @@ -0,0 +1,95 @@ +CREATE TABLE `#__admin` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `account` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '账号', + `password` varchar(155) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '登录密码', + `create_time` datetime NOT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='后台用户表';; + + +CREATE TABLE `#__chat_log` ( + `log_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '日志id', + `from_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '发送者id', + `from_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '发送者名称', + `from_avatar` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '发送者头像', + `to_id` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '接收方id', + `to_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '接受者名称', + `to_avatar` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '接收者头像', + `message` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '发送的内容', + `send_status` tinyint(1) NULL DEFAULT 1 COMMENT '发送状态 1发送成功 2发送失败 可以重发', + `read_flag` tinyint(1) NULL DEFAULT 1 COMMENT '是否已读 1 未读 2 已读', + `create_time` datetime NOT NULL COMMENT '记录时间', + PRIMARY KEY (`log_id`) USING BTREE, + INDEX `from_id`(`from_id`) USING BTREE, + INDEX `to_id`(`to_id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='聊天记录表'; + + +CREATE TABLE `#__kefu_info` ( + `kefu_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服id', + `kefu_code` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客服唯一标识', + `kefu_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客服名称', + `kefu_avatar` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客服头像', + `kefu_password` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客服密码', + `online_status` tinyint(1) NOT NULL DEFAULT 0 COMMENT '在线状态 1 在线 2 离线', + `create_time` datetime NOT NULL COMMENT '创建时间', + `update_time` datetime NOT NULL COMMENT '更新时间', + `client_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '客服登录标示', + PRIMARY KEY (`kefu_id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='客服信息表'; + + +CREATE TABLE `#__visitor` ( + `vid` int(11) NOT NULL AUTO_INCREMENT, + `visitor_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客id', + `visitor_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客名称', + `visitor_avatar` varchar(155) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客头像', + `visitor_ip` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '访客ip', + `client_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客户端标识', + `online_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0 离线 1 在线', + `create_time` datetime NOT NULL COMMENT '访问时间', + PRIMARY KEY (`vid`) USING BTREE, + INDEX `visiter`(`visitor_id`) USING BTREE, + INDEX `time`(`create_time`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='访客信息表'; + +CREATE TABLE `#__visitor_queue` ( + `qid` int(11) NOT NULL AUTO_INCREMENT COMMENT '队列id', + `visitor_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客id', + `visitor_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客名称', + `visitor_avatar` varchar(155) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客头像', + `visitor_ip` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '访客ip', + `client_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '客户端标识', + `create_time` datetime NOT NULL COMMENT '访问时间', + `reception_status` tinyint(3) UNSIGNED NOT NULL DEFAULT 0 COMMENT '接待状态 0 等待接待中 1 接待中 2接待完成', + `kefu_code` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, + `kefu_client_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, + PRIMARY KEY (`qid`) USING BTREE, + UNIQUE INDEX `id`(`visitor_id`) USING BTREE, + INDEX `visiter`(`visitor_id`) USING BTREE, + INDEX `time`(`create_time`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='聊天等待表'; + + +CREATE TABLE `#__visitor_service_log` ( + `vsid` int(11) NOT NULL AUTO_INCREMENT COMMENT '服务编号', + `visitor_id` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客id', + `client_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客的客户端标识', + `visitor_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客名称', + `visitor_avatar` varchar(155) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客头像', + `visitor_ip` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '访客的ip', + `kefu_id` int(11) NOT NULL, + `kefu_code` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '0' COMMENT '接待的客服标识', + `kefu_name` varchar(55) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '客服名称', + `start_date` datetime NOT NULL COMMENT '开始服务时间', + `end_date` datetime NULL DEFAULT NULL COMMENT '结束服务时间', + `connect_stauts` tinyint(3) NOT NULL DEFAULT 1 COMMENT '连接状态 1 正在连接 2 关闭连接', + PRIMARY KEY (`vsid`) USING BTREE, + INDEX `user_id,client_id`(`visitor_id`, `client_id`) USING BTREE, + INDEX `kf_id,start_time,end_time`(`kefu_code`, `start_date`, `end_date`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic COMMENT='服务日志表'; + + + + + diff --git a/public/install/data/utf8_add.sql b/public/install/data/utf8_add.sql new file mode 100644 index 0000000..d53db1c --- /dev/null +++ b/public/install/data/utf8_add.sql @@ -0,0 +1,3 @@ +INSERT INTO `#__admin` VALUES ('1', 'admin', 'E10ADC3949BA59ABBE56E057F20F883E', '2019-12-17 14:21:46'); +INSERT INTO `#__kefu_info` VALUES (30, 'kefu5df785ee07ae1', '客服一', '/static/common/images/kefu.jpg', 'E10ADC3949BA59ABBE56E057F20F883E', 2, '2019-12-16 21:26:06', '2020-02-18 22:24:06',NULL); +INSERT INTO `#__kefu_info` VALUES (31, 'kefu5df786c6a2277', '客服二', '/static/common/images/kefu.jpg', 'E10ADC3949BA59ABBE56E057F20F883E', 2, '2019-12-16 21:29:42', '2019-12-18 14:59:33', NULL); \ No newline at end of file diff --git a/public/install/images/install_bg.png b/public/install/images/install_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..1671709189efe041252d0d88b25c139bf3b96dcc GIT binary patch literal 49667 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 '操作系统', 'min' => '无限制', 'good' => 'Linux', 'cur'=>PHP_OS, 'status' =>(PHP_OS =='Linux' ? 1:0)); + $env_items[] = array('name' => '操作系统', 'min' => '无限制', 'good' => 'Linux', 'cur'=>PHP_OS, 'status' =>1); + $env_items[] = array('name' => 'PHP版本', 'min' => '7.0', 'good' => '7.0', 'cur' => PHP_VERSION, 'status'=>(PHP_VERSION < 7.0 ? 0:1)); + $tmp = function_exists('gd_info') ? gd_info() : array(); + preg_match("/[\d.]+/", $tmp['GD Version'],$match); + unset($tmp); + $env_items[] = array('name' => 'GD库', 'min' => '2.0', 'good' => '2.0', 'cur' => $match[0], 'status' => ($match[0] < 2 ? 0:1)); + $env_items[] = array('name' => '附件上传', 'min' => '未限制', 'good' => '2M','cur' => ini_get('upload_max_filesize'), 'status' => 1); + $disk_place = function_exists('disk_free_space') ? floor(disk_free_space(ROOT_PATH) / (1024*1024)) : 0; + $env_items[] = array('name' => '磁盘空间', 'min' => '100M', 'good' => '>100M','cur' => empty($disk_place) ? '未知' : $disk_place.'M', 'status' => $disk_place < 100 ? 0:1); +// $env_items[] = array('name' => 'SWOOLE', 'min' => '4.3', 'good' => '> 4.3','cur' =>SWOOLE_VERSION,'status' => 0); +} +/** + * file check + */ +function dirfile_check(&$dirfile_items) { + foreach($dirfile_items as $key => $item) { + $item_path = '/'.$item['path']; + if($item['type'] == 'dir') { + if(!dir_writeable(ROOT_PATH.$item_path)) { + if(is_dir(ROOT_PATH.$item_path)) { + $dirfile_items[$key]['status'] = 0; + $dirfile_items[$key]['current'] = '+r'; + } else { + $dirfile_items[$key]['status'] = -1; + $dirfile_items[$key]['current'] = 'nodir'; + } + } else { + $dirfile_items[$key]['status'] = 1; + $dirfile_items[$key]['current'] = '+r+w'; + } + } else { + if(file_exists(ROOT_PATH.$item_path)) { + if(is_writable(ROOT_PATH.$item_path)) { + $dirfile_items[$key]['status'] = 1; + $dirfile_items[$key]['current'] = '+r+w'; + } else { + $dirfile_items[$key]['status'] = 0; + $dirfile_items[$key]['current'] = '+r'; + } + } else { + if ($fp = @fopen(ROOT_PATH.$item_path,'wb+')){ + $dirfile_items[$key]['status'] = 1; + $dirfile_items[$key]['current'] = '+r+w'; + @fclose($fp); + @unlink(ROOT_PATH.$item_path); + }else { + $dirfile_items[$key]['status'] = -1; + $dirfile_items[$key]['current'] = 'nofile'; + } + } + } + } +} +/** + * dir is writeable + * @return number + */ +function dir_writeable($dir) { + $writeable = 0; + if(!is_dir($dir)) { + @mkdir($dir, 0755); + }else { + @chmod($dir,0755); + } + if(is_dir($dir)) { + if($fp = @fopen("$dir/test.txt", 'w')) { + @fclose($fp); + @unlink("$dir/test.txt"); + $writeable = 1; + } else { + $writeable = 0; + } + } + return $writeable; +} +/** + * function is exist + */ +function function_check(&$func_items) { + $func = array(); + foreach($func_items as $key => $item) { + $func_items[$key]['status'] = function_exists($item['name']) ? 1 : 0; + } +} + +function show_msg($msg){ + global $html_title,$html_header,$html_footer; + include 'step_msg.php'; + exit(); +} +//make rand +function random($length, $numeric = 0) { + $seed = base_convert(md5(print_r($_SERVER, 1).microtime()), 16, $numeric ? 10 : 35); + $seed = $numeric ? (str_replace('0', '', $seed).'012340567890') : ($seed.'zZ'.strtoupper($seed)); + $hash = ''; + $max = strlen($seed) - 1; + for($i = 0; $i < $length; $i++) { + $hash .= $seed[mt_rand(0, $max)]; + } + return $hash; +} +/** + * drop table + */ +function droptable($table_name){ + return "DROP TABLE IF EXISTS `". $table_name ."`;"; +} diff --git a/public/install/include/var.php b/public/install/include/var.php new file mode 100644 index 0000000..12bf78a --- /dev/null +++ b/public/install/include/var.php @@ -0,0 +1,15 @@ + 'dir', 'path' => 'data'), + array('type' => 'dir', 'path' => 'install'), +); + +$func_items = array( + array('name' => 'fsockopen'), + array('name' => 'gethostbyname'), + array('name' => 'file_get_contents'), + array('name' => 'mb_convert_encoding'), + array('name' => 'json_encode'), + array('name' => 'curl_init'), +); \ No newline at end of file diff --git a/public/install/index.php b/public/install/index.php new file mode 100644 index 0000000..679bb39 --- /dev/null +++ b/public/install/index.php @@ -0,0 +1,220 @@ + $value) { + if(is_string($value)){ + if(!get_magic_quotes_gpc()){ + $value = htmlentities($value, ENT_NOQUOTES); + $value = addslashes(trim($value)); + } + }else{ + $data[$key] = input($value); + } + } +} +//判断是否安装过程序 +if(is_file('lock') && $_GET['step'] != 5){ + @header("Content-type: text/html; charset=UTF-8"); + echo "系统已经安装过了,如果要重新安装,那么请删除install目录下的lock文件"; + exit; +} + +$html_title = 'Timely客服系统安装向导'; +$html_header = << +
+
+
Timely客服安装向导
+

系统安装向导

+
+
版本: v1.0.1
+
+ +EOF; + +$html_footer = << +
Powered by Timely
+
版权所有 2019-2020 © Timely
+ +EOF; +require('./include/function.php'); +if(!in_array($_GET['step'], array(1,2,3,4,5))){ + $_GET['step'] = 0; +} +switch ($_GET['step']) { + case 1: + require('./include/var.php'); + env_check($env_items); + dirfile_check($dirfile_items); + function_check($func_items); + break; + case 3: + $install_error = ''; + $install_recover = ''; + $demo_data = file_exists('./data/utf8_add.sql') ? true : false; + step3($install_error,$install_recover); + break; + case 4: + + break; + case 5: + $sitepath = strtolower(substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], '/'))); + $sitepath = str_replace('install',"",$sitepath); + $auto_site_url = strtolower('http://'.$_SERVER['HTTP_HOST'].$sitepath); + break; + default: + # code... + break; +} + +include ("step_{$_GET['step']}.php"); + +function step3(&$install_error,&$install_recover){ + global $html_title,$html_header,$html_footer; + if ($_POST['submitform'] != 'submit') return; + $db_host = $_POST['db_host']; + $db_port = $_POST['db_port']; + $db_user = $_POST['db_user']; + $db_pwd = $_POST['db_pwd']; + $db_name = $_POST['db_name']; + $db_prefix = $_POST['db_prefix']; + $admin = $_POST['admin']; + $password = $_POST['password']; + if (!$db_host || !$db_port || !$db_user || !$db_pwd || !$db_name || !$db_prefix || !$admin || !$password){ + $install_error = '输入不完整,请检查'; + } + if(strpos($db_prefix, '.') !== false) { + $install_error .= '数据表前缀为空,或者格式错误,请检查'; + } + + if(strlen($admin) > 15 || preg_match("/^$|^c:\\con\\con$| |[,\"\s\t\<\>&]|^游客|^Guest/is", $admin)) { + $install_error .= '非法用户名,用户名长度不应当超过 15 个英文字符,且不能包含特殊字符,一般是中文,字母或者数字'; + } + if ($install_error != '') + $mysqli = @ new mysqli($db_host, $db_user, $db_pwd, '', $db_port); + if($mysqli->connect_error) { + $install_error = '数据库连接失败';return; + } + + if($mysqli->get_server_info()> '5.0') { + $mysqli->query("CREATE DATABASE IF NOT EXISTS `$db_name` DEFAULT CHARACTER SET ".DBCHARSET); + } else { + $install_error = '数据库必须为MySQL5.0版本以上';return; + } + if($mysqli->error) { + $install_error = $mysqli->error;return ; + } + if($_POST['install_recover'] != 'yes' && ($query = $mysqli->query("SHOW TABLES FROM $db_name"))) { + while($row = mysqli_fetch_array($query)) { + if(preg_match("/^$db_prefix/", $row[0])) { + $install_error = '数据表已存在,继续安装将会覆盖已有数据'; + $install_recover = 'yes'; + return; + } + } + } + + require ('step_4.php'); + $sitepath = strtolower(substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['PHP_SELF'], '/'))); + $sitepath = str_replace('install',"",$sitepath); + $auto_site_url = strtolower('http://'.$_SERVER['HTTP_HOST'].$sitepath); + write_config($auto_site_url); + + $_charset = strtolower(DBCHARSET); + $mysqli->select_db($db_name); + $mysqli->set_charset($_charset); + $sql = file_get_contents("data/{$_charset}.sql"); + //判断是否安装测试数据 + if ($_POST['demo_data'] == '1'){ + $sql .= file_get_contents("data/{$_charset}_add.sql"); + } + $sql = str_replace("\r\n", "\n", $sql); + runquery($sql,$db_prefix,$mysqli); + showjsmessage('初始化数据 ... 成功 '); + + + //测试数据 + if ($_POST['demo_data'] == '1'){ + $sql .= file_get_contents("data/{$_charset}_add.sql"); + } + //新增一个标识文件,用来屏蔽重新安装 + $fp = @fopen('lock','wb+'); + @fclose($fp); + exit(""); + exit(); +} +//execute sql +function runquery($sql, $db_prefix, $mysqli) { +// global $lang, $tablepre, $db; + if(!isset($sql) || empty($sql)) return; + $sql = str_replace("\r", "\n", str_replace('#__', $db_prefix, $sql)); + $ret = array(); + $num = 0; + foreach(explode(";\n", trim($sql)) as $query) { + $ret[$num] = ''; + $queries = explode("\n", trim($query)); + foreach($queries as $query) { + $ret[$num] .= (isset($query[0]) && $query[0] == '#') || (isset($query[1]) && isset($query[1]) && $query[0].$query[1] == '--') ? '' : $query; + } + $num++; + } + unset($sql); + foreach($ret as $query) { + $query = trim($query); + if($query) { + if(substr($query, 0, 12) == 'CREATE TABLE') { + $line = explode('`',$query); + $data_name = $line[1]; + showjsmessage('数据表 '.$data_name.' ... 创建成功'); + $mysqli->query(droptable($data_name)); + $mysqli->query($query); + unset($line,$data_name); + } else { + $mysqli->query($query); + } + } + } +} +//抛出JS信息 +function showjsmessage($message) { + echo ''."\r\n"; + flush(); + ob_flush(); +} +//写入config文件 +function write_config($url) { + extract($GLOBALS, EXTR_SKIP); + $config = 'data/database.php'; + $configfile = @file_get_contents($config); + $configfile = trim($configfile); + $configfile = substr($configfile, -2) == '?>' ? substr($configfile, 0, -2) : $configfile; + $charset = 'UTF-8'; + $db_host = $_POST['db_host']; + $db_port = $_POST['db_port']; + $db_user = $_POST['db_user']; + $db_pwd = $_POST['db_pwd']; + $db_name = $_POST['db_name']; + $db_prefix = $_POST['db_prefix']; + $admin = $_POST['admin']; + $password = $_POST['password']; + $db_type = 'mysql'; + $cookie_pre = strtoupper(substr(md5(random(6).substr($_SERVER['HTTP_USER_AGENT'].md5($_SERVER['SERVER_ADDR'].$db_host.$db_user.$db_pwd.$db_name.substr(time(), 0, 6)), 8, 6).random(5)),0,4)).'_'; + $configfile = str_replace("===url===", $url, $configfile); + $configfile = str_replace("===db_prefix===", $db_prefix, $configfile); + $configfile = str_replace("===db_charset===", $charset, $configfile); + $configfile = str_replace("===db_host===", $db_host, $configfile); + $configfile = str_replace("===db_user===", $db_user, $configfile); + $configfile = str_replace("===db_pwd===", $db_pwd, $configfile); + $configfile = str_replace("===db_name===", $db_name, $configfile); + $configfile = str_replace("===db_port===", $db_port, $configfile); + @file_put_contents('../../config/database.php', $configfile); +} \ No newline at end of file diff --git a/public/install/js/jquery.icheck.min.js b/public/install/js/jquery.icheck.min.js new file mode 100644 index 0000000..ca12a18 --- /dev/null +++ b/public/install/js/jquery.icheck.min.js @@ -0,0 +1,11 @@ +/*! + * iCheck v0.9.1 jQuery plugin, http://git.io/uhUPMA + */ +(function(f){function C(a,c,d){var b=a[0],e=/er/.test(d)?k:/bl/.test(d)?u:j;active=d==E?{checked:b[j],disabled:b[u],indeterminate:"true"==a.attr(k)||"false"==a.attr(v)}:b[e];if(/^(ch|di|in)/.test(d)&&!active)p(a,e);else if(/^(un|en|de)/.test(d)&&active)w(a,e);else if(d==E)for(var e in active)active[e]?p(a,e,!0):w(a,e,!0);else if(!c||"toggle"==d){if(!c)a[r]("ifClicked");active?b[l]!==x&&w(a,e):p(a,e)}}function p(a,c,d){var b=a[0],e=a.parent(),g=c==j,H=c==k,m=H?v:g?I:"enabled",r=h(b,m+y(b[l])),L=h(b, +c+y(b[l]));if(!0!==b[c]){if(!d&&c==j&&b[l]==x&&b.name){var p=a.closest("form"),s='input[name="'+b.name+'"]',s=p.length?p.find(s):f(s);s.each(function(){this!==b&&f.data(this,n)&&w(f(this),c)})}H?(b[c]=!0,b[j]&&w(a,j,"force")):(d||(b[c]=!0),g&&b[k]&&w(a,k,!1));J(a,g,c,d)}b[u]&&h(b,z,!0)&&e.find("."+F).css(z,"default");e[t](L||h(b,c));e[A](r||h(b,m)||"")}function w(a,c,d){var b=a[0],e=a.parent(),g=c==j,f=c==k,m=f?v:g?I:"enabled",n=h(b,m+y(b[l])),p=h(b,c+y(b[l]));if(!1!==b[c]){if(f||!d||"force"==d)b[c]= +!1;J(a,g,m,d)}!b[u]&&h(b,z,!0)&&e.find("."+F).css(z,"pointer");e[A](p||h(b,c)||"");e[t](n||h(b,m))}function K(a,c){if(f.data(a,n)){var d=f(a);d.parent().html(d.attr("style",f.data(a,n).s||"")[r](c||""));d.off(".i").unwrap();f(D+'[for="'+a.id+'"]').add(d.closest(D)).off(".i")}}function h(a,c,d){if(f.data(a,n))return f.data(a,n).o[c+(d?"":"Class")]}function y(a){return a.charAt(0).toUpperCase()+a.slice(1)}function J(a,c,d,b){if(!b){if(c)a[r]("ifToggled");a[r]("ifChanged")[r]("if"+y(d))}}var n="iCheck", +F=n+"-helper",x="radio",j="checked",I="un"+j,u="disabled",v="determinate",k="in"+v,E="update",l="type",t="addClass",A="removeClass",r="trigger",D="label",z="cursor",G=/ipad|iphone|ipod|android|blackberry|windows phone|opera mini/i.test(navigator.userAgent);f.fn[n]=function(a,c){var d=":checkbox, :"+x,b=f(),e=function(a){a.each(function(){var a=f(this);b=a.is(d)?b.add(a):b.add(a.find(d))})};if(/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(a))return a=a.toLowerCase(), +e(this),b.each(function(){"destroy"==a?K(this,"ifDestroyed"):C(f(this),!0,a);f.isFunction(c)&&c()});if("object"==typeof a||!a){var g=f.extend({checkedClass:j,disabledClass:u,indeterminateClass:k,labelHover:!0},a),h=g.handle,m=g.hoverClass||"hover",y=g.focusClass||"focus",v=g.activeClass||"active",z=!!g.labelHover,s=g.labelHoverClass||"hover",B=(""+g.increaseArea).replace("%","")|0;if("checkbox"==h||h==x)d=":"+h;-50>B&&(B=-50);e(this);return b.each(function(){K(this);var a=f(this),b=this,c=b.id,d= +-B+"%",e=100+2*B+"%",e={position:"absolute",top:d,left:d,display:"block",width:e,height:e,margin:0,padding:0,background:"#fff",border:0,opacity:0},d=G?{position:"absolute",visibility:"hidden"}:B?e:{position:"absolute",opacity:0},h="checkbox"==b[l]?g.checkboxClass||"icheckbox":g.radioClass||"i"+x,k=f(D+'[for="'+c+'"]').add(a.closest(D)),q=a.wrap('
')[r]("ifCreated").parent().append(g.insert),e=f('').css(e).appendTo(q);a.data(n,{o:g,s:a.attr("style")}).css(d); +g.inheritClass&&q[t](b.className);g.inheritID&&c&&q.attr("id",n+"-"+c);"static"==q.css("position")&&q.css("position","relative");C(a,!0,E);if(k.length)k.on("click.i mouseenter.i mouseleave.i touchbegin.i touchend.i",function(c){var d=c[l],e=f(this);if(!b[u])if("click"==d?C(a,!1,!0):z&&(/ve|nd/.test(d)?(q[A](m),e[A](s)):(q[t](m),e[t](s))),G)c.stopPropagation();else return!1});a.on("click.i focus.i blur.i keyup.i keydown.i keypress.i",function(c){var d=c[l];c=c.keyCode;if("click"==d)return!1;if("keydown"== +d&&32==c)return b[l]==x&&b[j]||(b[j]?w(a,j):p(a,j)),!1;if("keyup"==d&&b[l]==x)!b[j]&&p(a,j);else if(/us|ur/.test(d))q["blur"==d?A:t](y)});e.on("click mousedown mouseup mouseover mouseout touchbegin.i touchend.i",function(d){var c=d[l],e=/wn|up/.test(c)?v:m;if(!b[u]){if("click"==c)C(a,!1,!0);else{if(/wn|er|in/.test(c))q[t](e);else q[A](e+" "+v);if(k.length&&z&&e==m)k[/ut|nd/.test(c)?A:t](s)}if(G)d.stopPropagation();else return!1}})})}return this}})(jQuery); \ No newline at end of file diff --git a/public/install/js/jquery.js b/public/install/js/jquery.js new file mode 100644 index 0000000..bac623e --- /dev/null +++ b/public/install/js/jquery.js @@ -0,0 +1,2 @@ +/*! jQuery v1.8.2 jquery.com | jquery.org/license */ +(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new activeXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
t
",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&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 p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(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 bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(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 bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
","
"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.activeXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.activeXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); \ No newline at end of file diff --git a/public/install/js/jquery.mousewheel.js b/public/install/js/jquery.mousewheel.js new file mode 100644 index 0000000..38b6095 --- /dev/null +++ b/public/install/js/jquery.mousewheel.js @@ -0,0 +1,84 @@ +/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers. + * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix. + * Thanks to: Seamus Leahy for adding deltaX and deltaY + * + * Version: 3.0.6 + * + * Requires: 1.2.2+ + */ + +(function($) { + +var types = ['DOMMouseScroll', 'mousewheel']; + +if ($.event.fixHooks) { + for ( var i=types.length; i; ) { + $.event.fixHooks[ types[--i] ] = $.event.mouseHooks; + } +} + +$.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i=types.length; i; ) { + this.addEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i=types.length; i; ) { + this.removeEventListener( types[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } +}; + +$.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } +}); + + +function handler(event) { + var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; } + if ( orgEvent.detail ) { delta = -orgEvent.detail/3; } + + // New school multidimensional scroll (touchpads) deltas + deltaY = delta; + + // Gecko + if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaY = 0; + deltaX = -1*delta; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; } + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); +} + +})(jQuery); diff --git a/public/install/js/jquery.validation.min.js b/public/install/js/jquery.validation.min.js new file mode 100644 index 0000000..7bceec7 --- /dev/null +++ b/public/install/js/jquery.validation.min.js @@ -0,0 +1,16 @@ +/*! jQuery Validation Plugin - v1.11.1 - 3/22/2013\n* https://github.com/jzaefferer/jquery-validation +* Copyright (c) 2013 Jörn Zaefferer; Licensed MIT */(function(t){t.extend(t.fn,{validate:function(e){if(!this.length)return e&&e.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing."),void 0;var i=t.data(this[0],"validator");return i?i:(i=new t.validator(e,this[0]),t.data(this[0],"validator",i),i.settings.onsubmit&&(this.validateDelegate(":submit","click",function(e){i.settings.submitHandler&&(i.submitButton=e.target),t(e.target).hasClass("cancel")&&(i.cancelSubmit=!0),void 0!==t(e.target).attr("formnovalidate")&&(i.cancelSubmit=!0)}),this.submit(function(e){function s(){var s;return i.settings.submitHandler?(i.submitButton&&(s=t("").attr("name",i.submitButton.name).val(t(i.submitButton).val()).appendTo(i.currentForm)),i.settings.submitHandler.call(i,i.currentForm,e),i.submitButton&&s.remove(),!1):!0}return i.settings.debug&&e.preventDefault(),i.cancelSubmit?(i.cancelSubmit=!1,s()):i.form()?i.pendingRequest?(i.formSubmitted=!0,!1):s():(i.focusInvalid(),!1)})),i)},valid:function(){if(t(this[0]).is("form"))return this.validate().form();var e=!0,i=t(this[0].form).validate();return this.each(function(){e=e&&i.element(this)}),e},removeAttrs:function(e){var i={},s=this;return t.each(e.split(/\s/),function(t,e){i[e]=s.attr(e),s.removeAttr(e)}),i},rules:function(e,i){var s=this[0];if(e){var r=t.data(s.form,"validator").settings,n=r.rules,a=t.validator.staticRules(s);switch(e){case"add":t.extend(a,t.validator.normalizeRule(i)),delete a.messages,n[s.name]=a,i.messages&&(r.messages[s.name]=t.extend(r.messages[s.name],i.messages));break;case"remove":if(!i)return delete n[s.name],a;var u={};return t.each(i.split(/\s/),function(t,e){u[e]=a[e],delete a[e]}),u}}var o=t.validator.normalizeRules(t.extend({},t.validator.classRules(s),t.validator.attributeRules(s),t.validator.dataRules(s),t.validator.staticRules(s)),s);if(o.required){var l=o.required;delete o.required,o=t.extend({required:l},o)}return o}}),t.extend(t.expr[":"],{blank:function(e){return!t.trim(""+t(e).val())},filled:function(e){return!!t.trim(""+t(e).val())},unchecked:function(e){return!t(e).prop("checked")}}),t.validator=function(e,i){this.settings=t.extend(!0,{},t.validator.defaults,e),this.currentForm=i,this.init()},t.validator.format=function(e,i){return 1===arguments.length?function(){var i=t.makeArray(arguments);return i.unshift(e),t.validator.format.apply(this,i)}:(arguments.length>2&&i.constructor!==Array&&(i=t.makeArray(arguments).slice(1)),i.constructor!==Array&&(i=[i]),t.each(i,function(t,i){e=e.replace(RegExp("\\{"+t+"\\}","g"),function(){return i})}),e)},t.extend(t.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:!0,errorContainer:t([]),errorLabelContainer:t([]),onsubmit:!0,ignoreTitle:!1,onfocusin:function(t){this.lastactive=t,this.settings.focusCleanup&&!this.blockFocusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,t,this.settings.errorClass,this.settings.validClass),this.addWrapper(this.errorsFor(t)).hide())},onfocusout:function(t){this.checkable(t)||!(t.name in this.submitted)&&this.optional(t)||this.element(t)},onkeyup:function(t,e){(9!==e.which||""!==this.elementValue(t))&&(t.name in this.submitted||t===this.lastElement)&&this.element(t)},onclick:function(t){t.name in this.submitted?this.element(t):t.parentNode.name in this.submitted&&this.element(t.parentNode)},highlight:function(e,i,s){"radio"===e.type?this.findByName(e.name).addClass(i).removeClass(s):t(e).addClass(i).removeClass(s)},unhighlight:function(e,i,s){"radio"===e.type?this.findByName(e.name).removeClass(i).addClass(s):t(e).removeClass(i).addClass(s)}},setDefaults:function(e){t.extend(t.validator.defaults,e)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",accept:"Please enter a value with a valid extension.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",maxlength:t.validator.format("Please enter no more than {0} characters."),minlength:t.validator.format("Please enter at least {0} characters."),rangelength:t.validator.format("Please enter a value between {0} and {1} characters long."),range:t.validator.format("Please enter a value between {0} and {1}."),max:t.validator.format("Please enter a value less than or equal to {0}."),min:t.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:!1,prototype:{init:function(){function e(e){var i=t.data(this[0].form,"validator"),s="on"+e.type.replace(/^validate/,"");i.settings[s]&&i.settings[s].call(i,this[0],e)}this.labelContainer=t(this.settings.errorLabelContainer),this.errorContext=this.labelContainer.length&&this.labelContainer||t(this.currentForm),this.containers=t(this.settings.errorContainer).add(this.settings.errorLabelContainer),this.submitted={},this.valueCache={},this.pendingRequest=0,this.pending={},this.invalid={},this.reset();var i=this.groups={};t.each(this.settings.groups,function(e,s){"string"==typeof s&&(s=s.split(/\s/)),t.each(s,function(t,s){i[s]=e})});var s=this.settings.rules;t.each(s,function(e,i){s[e]=t.validator.normalizeRule(i)}),t(this.currentForm).validateDelegate(":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'] ,[type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'] ","focusin focusout keyup",e).validateDelegate("[type='radio'], [type='checkbox'], select, option","click",e),this.settings.invalidHandler&&t(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){return this.checkForm(),t.extend(this.submitted,this.errorMap),this.invalid=t.extend({},this.errorMap),this.valid()||t(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var t=0,e=this.currentElements=this.elements();e[t];t++)this.check(e[t]);return this.valid()},element:function(e){e=this.validationTargetFor(this.clean(e)),this.lastElement=e,this.prepareElement(e),this.currentElements=t(e);var i=this.check(e)!==!1;return i?delete this.invalid[e.name]:this.invalid[e.name]=!0,this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),i},showErrors:function(e){if(e){t.extend(this.errorMap,e),this.errorList=[];for(var i in e)this.errorList.push({message:e[i],element:this.findByName(i)[0]});this.successList=t.grep(this.successList,function(t){return!(t.name in e)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){t.fn.resetForm&&t(this.currentForm).resetForm(),this.submitted={},this.lastElement=null,this.prepareForm(),this.hideErrors(),this.elements().removeClass(this.settings.errorClass).removeData("previousValue")},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(t){var e=0;for(var i in t)e++;return e},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return 0===this.size()},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{t(this.findLastactive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(e){}},findLastactive:function(){var e=this.lastactive;return e&&1===t.grep(this.errorList,function(t){return t.element.name===e.name}).length&&e},elements:function(){var e=this,i={};return t(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){return!this.name&&e.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.name in i||!e.objectLength(t(this).rules())?!1:(i[this.name]=!0,!0)})},clean:function(e){return t(e)[0]},errors:function(){var e=this.settings.errorClass.replace(" ",".");return t(this.settings.errorElement+"."+e,this.errorContext)},reset:function(){this.successList=[],this.errorList=[],this.errorMap={},this.toShow=t([]),this.toHide=t([]),this.currentElements=t([])},prepareForm:function(){this.reset(),this.toHide=this.errors().add(this.containers)},prepareElement:function(t){this.reset(),this.toHide=this.errorsFor(t)},elementValue:function(e){var i=t(e).attr("type"),s=t(e).val();return"radio"===i||"checkbox"===i?t("input[name='"+t(e).attr("name")+"']:checked").val():"string"==typeof s?s.replace(/\r/g,""):s},check:function(e){e=this.validationTargetFor(this.clean(e));var i,s=t(e).rules(),r=!1,n=this.elementValue(e);for(var a in s){var u={method:a,parameters:s[a]};try{if(i=t.validator.methods[a].call(this,n,e,u.parameters),"dependency-mismatch"===i){r=!0;continue}if(r=!1,"pending"===i)return this.toHide=this.toHide.not(this.errorsFor(e)),void 0;if(!i)return this.formatAndAdd(e,u),!1}catch(o){throw this.settings.debug&&window.console&&console.log("Exception occurred when checking element "+e.id+", check the '"+u.method+"' method.",o),o}}return r?void 0:(this.objectLength(s)&&this.successList.push(e),!0)},customDataMessage:function(e,i){return t(e).data("msg-"+i.toLowerCase())||e.attributes&&t(e).attr("data-msg-"+i.toLowerCase())},customMessage:function(t,e){var i=this.settings.messages[t];return i&&(i.constructor===String?i:i[e])},findDefined:function(){for(var t=0;arguments.length>t;t++)if(void 0!==arguments[t])return arguments[t];return void 0},defaultMessage:function(e,i){return this.findDefined(this.customMessage(e.name,i),this.customDataMessage(e,i),!this.settings.ignoreTitle&&e.title||void 0,t.validator.messages[i],"Warning: No message defined for "+e.name+"")},formatAndAdd:function(e,i){var s=this.defaultMessage(e,i.method),r=/\$?\{(\d+)\}/g;"function"==typeof s?s=s.call(this,i.parameters,e):r.test(s)&&(s=t.validator.format(s.replace(r,"{$1}"),i.parameters)),this.errorList.push({message:s,element:e}),this.errorMap[e.name]=s,this.submitted[e.name]=s},addWrapper:function(t){return this.settings.wrapper&&(t=t.add(t.parent(this.settings.wrapper))),t},defaultShowErrors:function(){var t,e;for(t=0;this.errorList[t];t++){var i=this.errorList[t];this.settings.highlight&&this.settings.highlight.call(this,i.element,this.settings.errorClass,this.settings.validClass),this.showLabel(i.element,i.message)}if(this.errorList.length&&(this.toShow=this.toShow.add(this.containers)),this.settings.success)for(t=0;this.successList[t];t++)this.showLabel(this.successList[t]);if(this.settings.unhighlight)for(t=0,e=this.validElements();e[t];t++)this.settings.unhighlight.call(this,e[t],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow),this.hideErrors(),this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return t(this.errorList).map(function(){return this.element})},showLabel:function(e,i){var s=this.errorsFor(e);s.length?(s.removeClass(this.settings.validClass).addClass(this.settings.errorClass),s.html(i)):(s=t("<"+this.settings.errorElement+">").attr("for",this.idOrName(e)).addClass(this.settings.errorClass).html(i||""),this.settings.wrapper&&(s=s.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.append(s).length||(this.settings.errorPlacement?this.settings.errorPlacement(s,t(e)):s.insertAfter(e))),!i&&this.settings.success&&(s.text(""),"string"==typeof this.settings.success?s.addClass(this.settings.success):this.settings.success(s,e)),this.toShow=this.toShow.add(s)},errorsFor:function(e){var i=this.idOrName(e);return this.errors().filter(function(){return t(this).attr("for")===i})},idOrName:function(t){return this.groups[t.name]||(this.checkable(t)?t.name:t.id||t.name)},validationTargetFor:function(t){return this.checkable(t)&&(t=this.findByName(t.name).not(this.settings.ignore)[0]),t},checkable:function(t){return/radio|checkbox/i.test(t.type)},findByName:function(e){return t(this.currentForm).find("[name='"+e+"']")},getLength:function(e,i){switch(i.nodeName.toLowerCase()){case"select":return t("option:selected",i).length;case"input":if(this.checkable(i))return this.findByName(i.name).filter(":checked").length}return e.length},depend:function(t,e){return this.dependTypes[typeof t]?this.dependTypes[typeof t](t,e):!0},dependTypes:{"boolean":function(t){return t},string:function(e,i){return!!t(e,i.form).length},"function":function(t,e){return t(e)}},optional:function(e){var i=this.elementValue(e);return!t.validator.methods.required.call(this,i,e)&&"dependency-mismatch"},startRequest:function(t){this.pending[t.name]||(this.pendingRequest++,this.pending[t.name]=!0)},stopRequest:function(e,i){this.pendingRequest--,0>this.pendingRequest&&(this.pendingRequest=0),delete this.pending[e.name],i&&0===this.pendingRequest&&this.formSubmitted&&this.form()?(t(this.currentForm).submit(),this.formSubmitted=!1):!i&&0===this.pendingRequest&&this.formSubmitted&&(t(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(e){return t.data(e,"previousValue")||t.data(e,"previousValue",{old:null,valid:!0,message:this.defaultMessage(e,"remote")})}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(e,i){e.constructor===String?this.classRuleSettings[e]=i:t.extend(this.classRuleSettings,e)},classRules:function(e){var i={},s=t(e).attr("class");return s&&t.each(s.split(" "),function(){this in t.validator.classRuleSettings&&t.extend(i,t.validator.classRuleSettings[this])}),i},attributeRules:function(e){var i={},s=t(e),r=s[0].getAttribute("type");for(var n in t.validator.methods){var a;"required"===n?(a=s.get(0).getAttribute(n),""===a&&(a=!0),a=!!a):a=s.attr(n),/min|max/.test(n)&&(null===r||/number|range|text/.test(r))&&(a=Number(a)),a?i[n]=a:r===n&&"range"!==r&&(i[n]=!0)}return i.maxlength&&/-1|2147483647|524288/.test(i.maxlength)&&delete i.maxlength,i},dataRules:function(e){var i,s,r={},n=t(e);for(i in t.validator.methods)s=n.data("rule-"+i.toLowerCase()),void 0!==s&&(r[i]=s);return r},staticRules:function(e){var i={},s=t.data(e.form,"validator");return s.settings.rules&&(i=t.validator.normalizeRule(s.settings.rules[e.name])||{}),i},normalizeRules:function(e,i){return t.each(e,function(s,r){if(r===!1)return delete e[s],void 0;if(r.param||r.depends){var n=!0;switch(typeof r.depends){case"string":n=!!t(r.depends,i.form).length;break;case"function":n=r.depends.call(i,i)}n?e[s]=void 0!==r.param?r.param:!0:delete e[s]}}),t.each(e,function(s,r){e[s]=t.isFunction(r)?r(i):r}),t.each(["minlength","maxlength"],function(){e[this]&&(e[this]=Number(e[this]))}),t.each(["rangelength","range"],function(){var i;e[this]&&(t.isArray(e[this])?e[this]=[Number(e[this][0]),Number(e[this][1])]:"string"==typeof e[this]&&(i=e[this].split(/[\s,]+/),e[this]=[Number(i[0]),Number(i[1])]))}),t.validator.autoCreateRanges&&(e.min&&e.max&&(e.range=[e.min,e.max],delete e.min,delete e.max),e.minlength&&e.maxlength&&(e.rangelength=[e.minlength,e.maxlength],delete e.minlength,delete e.maxlength)),e},normalizeRule:function(e){if("string"==typeof e){var i={};t.each(e.split(/\s/),function(){i[this]=!0}),e=i}return e},addMethod:function(e,i,s){t.validator.methods[e]=i,t.validator.messages[e]=void 0!==s?s:t.validator.messages[e],3>i.length&&t.validator.addClassRules(e,t.validator.normalizeRule(e))},methods:{required:function(e,i,s){if(!this.depend(s,i))return"dependency-mismatch";if("select"===i.nodeName.toLowerCase()){var r=t(i).val();return r&&r.length>0}return this.checkable(i)?this.getLength(e,i)>0:t.trim(e).length>0},email:function(t,e){return this.optional(e)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i.test(t)},url:function(t,e){return this.optional(e)||/^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(t)},date:function(t,e){return this.optional(e)||!/Invalid|NaN/.test(""+new Date(t))},dateISO:function(t,e){return this.optional(e)||/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/.test(t)},number:function(t,e){return this.optional(e)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(t)},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},digits:function(t,e){return this.optional(e)||/^\d+$/.test(t)},creditcard:function(t,e){if(this.optional(e))return"dependency-mismatch";if(/[^0-9 \-]+/.test(t))return!1;var i=0,s=0,r=!1;t=t.replace(/\D/g,"");for(var n=t.length-1;n>=0;n--){var a=t.charAt(n);s=parseInt(a,10),r&&(s*=2)>9&&(s-=9),i+=s,r=!r}return 0===i%10},minlength:function(e,i,s){var r=t.isArray(e)?e.length:this.getLength(t.trim(e),i);return this.optional(i)||r>=s},maxlength:function(e,i,s){var r=t.isArray(e)?e.length:this.getLength(t.trim(e),i);return this.optional(i)||s>=r},rangelength:function(e,i,s){var r=t.isArray(e)?e.length:this.getLength(t.trim(e),i);return this.optional(i)||r>=s[0]&&s[1]>=r},min:function(t,e,i){return this.optional(e)||t>=i},max:function(t,e,i){return this.optional(e)||i>=t},range:function(t,e,i){return this.optional(e)||t>=i[0]&&i[1]>=t},equalTo:function(e,i,s){var r=t(s);return this.settings.onfocusout&&r.unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){t(i).valid()}),e===r.val()},remote:function(e,i,s){if(this.optional(i))return"dependency-mismatch";var r=this.previousValue(i);if(this.settings.messages[i.name]||(this.settings.messages[i.name]={}),r.originalMessage=this.settings.messages[i.name].remote,this.settings.messages[i.name].remote=r.message,s="string"==typeof s&&{url:s}||s,r.old===e)return r.valid;r.old=e;var n=this;this.startRequest(i);var a={};return a[i.name]=e,t.ajax(t.extend(!0,{url:s,mode:"abort",port:"validate"+i.name,dataType:"json",data:a,success:function(s){n.settings.messages[i.name].remote=r.originalMessage;var a=s===!0||"true"===s;if(a){var u=n.formSubmitted;n.prepareElement(i),n.formSubmitted=u,n.successList.push(i),delete n.invalid[i.name],n.showErrors()}else{var o={},l=s||n.defaultMessage(i,"remote");o[i.name]=r.message=t.isFunction(l)?l(e):l,n.invalid[i.name]=!0,n.showErrors(o)}r.valid=a,n.stopRequest(i,a)}},s)),"pending"}}}),t.format=t.validator.format})(jQuery),function(t){var e={};if(t.ajaxPrefilter)t.ajaxPrefilter(function(t,i,s){var r=t.port;"abort"===t.mode&&(e[r]&&e[r].abort(),e[r]=s)});else{var i=t.ajax;t.ajax=function(s){var r=("mode"in s?s:t.ajaxSettings).mode,n=("port"in s?s:t.ajaxSettings).port;return"abort"===r?(e[n]&&e[n].abort(),e[n]=i.apply(this,arguments),e[n]):i.apply(this,arguments)}}}(jQuery),function(t){t.extend(t.fn,{validateDelegate:function(e,i,s){return this.bind(i,function(i){var r=t(i.target);return r.is(e)?s.apply(r,arguments):void 0})}})}(jQuery); + + + jQuery.validator.addMethod("letters_name", function(value, element) { + return this.optional(element) || (/^[A-Za-z0-9\u4e00-\u9fa5_-]+$/i.test(value) && !/^\d+$/.test(value)); + }, "Letters only please"); + jQuery.validator.addMethod("lettersmin", function(value, element) { + return this.optional(element) || ($.trim(value.replace(/[^\u0000-\u00ff]/g,"aa")).length>=3); + }, "Letters min please"); + jQuery.validator.addMethod("lettersmax", function(value, element) { + return this.optional(element) || ($.trim(value.replace(/[^\u0000-\u00ff]/g,"aa")).length<=15); + }, "Letters max please"); + jQuery.validator.addMethod("mobile", function(value, element) { + return this.optional(element) || /^0?(13|15|17|18|14)[0-9]{9}$/.test(value); + }, "请输入正确的手机号"); \ No newline at end of file diff --git a/public/install/js/perfect-scrollbar.min.js b/public/install/js/perfect-scrollbar.min.js new file mode 100644 index 0000000..c7c46b1 --- /dev/null +++ b/public/install/js/perfect-scrollbar.min.js @@ -0,0 +1,4 @@ +/*! perfect-scrollbar - v0.5.6 +* http://noraesae.github.com/perfect-scrollbar/ +* Copyright (c) 2014 Hyunje Alex Jun; Licensed MIT */ +(function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?e(require("jquery")):e(jQuery)})(function(e){"use strict";function t(e){return"string"==typeof e?parseInt(e,10):~~e}var o={wheelSpeed:1,wheelPropagation:!1,minScrollbarLength:null,maxScrollbarLength:null,useBothWheelAxes:!1,useKeyboard:!0,suppressScrollX:!1,suppressScrollY:!1,scrollXMarginOffset:0,scrollYMarginOffset:0,includePadding:!1},n=0,r=function(){var e=n++;return function(t){var o=".perfect-scrollbar-"+e;return t===void 0?o:t+o}};e.fn.perfectScrollbar=function(n,l){return this.each(function(){function i(e,o){var n=e+o,r=x-k;W=0>n?0:n>r?r:n;var l=t(W*(C-x)/(x-k));S.scrollTop(l)}function a(e,o){var n=e+o,r=P-E;X=0>n?0:n>r?r:n;var l=t(X*(D-P)/(P-E));S.scrollLeft(l)}function c(e){return L.minScrollbarLength&&(e=Math.max(e,L.minScrollbarLength)),L.maxScrollbarLength&&(e=Math.min(e,L.maxScrollbarLength)),e}function s(){var e={width:P,display:M?"inherit":"none"};e.left=I?S.scrollLeft()+P-D:S.scrollLeft(),q?e.bottom=R-S.scrollTop():e.top=B+S.scrollTop(),K.css(e);var t={top:S.scrollTop(),height:x,display:Y?"inherit":"none"};F?t.right=I?D-S.scrollLeft()-z-Q.outerWidth():z-S.scrollLeft():t.left=I?S.scrollLeft()+2*P-D-G-Q.outerWidth():G+S.scrollLeft(),U.css(t),O.css({left:X,width:E-H}),Q.css({top:W,height:k-J})}function d(){S.removeClass("ps-active-x"),S.removeClass("ps-active-y"),P=L.includePadding?S.innerWidth():S.width(),x=L.includePadding?S.innerHeight():S.height(),D=S.prop("scrollWidth"),C=S.prop("scrollHeight"),!L.suppressScrollX&&D>P+L.scrollXMarginOffset?(M=!0,E=c(t(P*P/D)),X=t(S.scrollLeft()*(P-E)/(D-P))):(M=!1,E=0,X=0,S.scrollLeft(0)),!L.suppressScrollY&&C>x+L.scrollYMarginOffset?(Y=!0,k=c(t(x*x/C)),W=t(S.scrollTop()*(x-k)/(C-x))):(Y=!1,k=0,W=0,S.scrollTop(0)),X>=P-E&&(X=P-E),W>=x-k&&(W=x-k),s(),M&&S.addClass("ps-active-x"),Y&&S.addClass("ps-active-y")}function u(){var t,o,n=!1;O.bind(j("mousedown"),function(e){o=e.pageX,t=O.position().left,K.addClass("in-scrolling"),n=!0,e.stopPropagation(),e.preventDefault()}),e(A).bind(j("mousemove"),function(e){n&&(a(t,e.pageX-o),d(),e.stopPropagation(),e.preventDefault())}),e(A).bind(j("mouseup"),function(){n&&(n=!1,K.removeClass("in-scrolling"))}),t=o=null}function p(){var t,o,n=!1;Q.bind(j("mousedown"),function(e){o=e.pageY,t=Q.position().top,n=!0,U.addClass("in-scrolling"),e.stopPropagation(),e.preventDefault()}),e(A).bind(j("mousemove"),function(e){n&&(i(t,e.pageY-o),d(),e.stopPropagation(),e.preventDefault())}),e(A).bind(j("mouseup"),function(){n&&(n=!1,U.removeClass("in-scrolling"))}),t=o=null}function f(e,t){var o=S.scrollTop();if(0===e){if(!Y)return!1;if(0===o&&t>0||o>=C-x&&0>t)return!L.wheelPropagation}var n=S.scrollLeft();if(0===t){if(!M)return!1;if(0===n&&0>e||n>=D-P&&e>0)return!L.wheelPropagation}return!0}function v(){function e(e){var t=e.originalEvent.deltaX,o=-1*e.originalEvent.deltaY;return(t===void 0||o===void 0)&&(t=-1*e.originalEvent.wheelDeltaX/6,o=e.originalEvent.wheelDeltaY/6),e.originalEvent.deltaMode&&1===e.originalEvent.deltaMode&&(t*=10,o*=10),t!==t&&o!==o&&(t=0,o=e.originalEvent.wheelDelta),[t,o]}function t(t){var n=e(t),r=n[0],l=n[1];o=!1,L.useBothWheelAxes?Y&&!M?(l?S.scrollTop(S.scrollTop()-l*L.wheelSpeed):S.scrollTop(S.scrollTop()+r*L.wheelSpeed),o=!0):M&&!Y&&(r?S.scrollLeft(S.scrollLeft()+r*L.wheelSpeed):S.scrollLeft(S.scrollLeft()-l*L.wheelSpeed),o=!0):(S.scrollTop(S.scrollTop()-l*L.wheelSpeed),S.scrollLeft(S.scrollLeft()+r*L.wheelSpeed)),d(),o=o||f(r,l),o&&(t.stopPropagation(),t.preventDefault())}var o=!1;window.onwheel!==void 0?S.bind(j("wheel"),t):window.onmousewheel!==void 0&&S.bind(j("mousewheel"),t)}function g(){var t=!1;S.bind(j("mouseenter"),function(){t=!0}),S.bind(j("mouseleave"),function(){t=!1});var o=!1;e(A).bind(j("keydown"),function(n){if((!n.isDefaultPrevented||!n.isDefaultPrevented())&&t){for(var r=document.activeElement?document.activeElement:A.activeElement;r.shadowRoot;)r=r.shadowRoot.activeElement;if(!e(r).is(":input,[contenteditable]")){var l=0,i=0;switch(n.which){case 37:l=-30;break;case 38:i=30;break;case 39:l=30;break;case 40:i=-30;break;case 33:i=90;break;case 32:case 34:i=-90;break;case 35:i=n.ctrlKey?-C:-x;break;case 36:i=n.ctrlKey?S.scrollTop():x;break;default:return}S.scrollTop(S.scrollTop()-i),S.scrollLeft(S.scrollLeft()+l),o=f(l,i),o&&n.preventDefault()}}})}function b(){function e(e){e.stopPropagation()}Q.bind(j("click"),e),U.bind(j("click"),function(e){var o=t(k/2),n=e.pageY-U.offset().top-o,r=x-k,l=n/r;0>l?l=0:l>1&&(l=1),S.scrollTop((C-x)*l)}),O.bind(j("click"),e),K.bind(j("click"),function(e){var o=t(E/2),n=e.pageX-K.offset().left-o,r=P-E,l=n/r;0>l?l=0:l>1&&(l=1),S.scrollLeft((D-P)*l)})}function h(){function t(){var e=window.getSelection?window.getSelection():document.getSlection?document.getSlection():{rangeCount:0};return 0===e.rangeCount?null:e.getRangeAt(0).commonAncestorContainer}function o(){r||(r=setInterval(function(){S.scrollTop(S.scrollTop()+l.top),S.scrollLeft(S.scrollLeft()+l.left),d()},50))}function n(){r&&(clearInterval(r),r=null),K.removeClass("in-scrolling"),U.removeClass("in-scrolling")}var r=null,l={top:0,left:0},i=!1;e(A).bind(j("selectionchange"),function(){e.contains(S[0],t())?i=!0:(i=!1,n())}),e(window).bind(j("mouseup"),function(){i&&(i=!1,n())}),e(window).bind(j("mousemove"),function(e){if(i){var t={x:e.pageX,y:e.pageY},r=S.offset(),a={left:r.left,right:r.left+S.outerWidth(),top:r.top,bottom:r.top+S.outerHeight()};t.xa.right-3?(l.left=5,K.addClass("in-scrolling")):l.left=0,t.ya.top+3-t.y?-5:-20,U.addClass("in-scrolling")):t.y>a.bottom-3?(l.top=5>t.y-a.bottom+3?5:20,U.addClass("in-scrolling")):l.top=0,0===l.top&&0===l.left?n():o()}})}function w(t,o){function n(e,t){S.scrollTop(S.scrollTop()-t),S.scrollLeft(S.scrollLeft()-e),d()}function r(){b=!0}function l(){b=!1}function i(e){return e.originalEvent.targetTouches?e.originalEvent.targetTouches[0]:e.originalEvent}function a(e){var t=e.originalEvent;return t.targetTouches&&1===t.targetTouches.length?!0:t.pointerType&&"mouse"!==t.pointerType?!0:!1}function c(e){if(a(e)){h=!0;var t=i(e);p.pageX=t.pageX,p.pageY=t.pageY,f=(new Date).getTime(),null!==g&&clearInterval(g),e.stopPropagation()}}function s(e){if(!b&&h&&a(e)){var t=i(e),o={pageX:t.pageX,pageY:t.pageY},r=o.pageX-p.pageX,l=o.pageY-p.pageY;n(r,l),p=o;var c=(new Date).getTime(),s=c-f;s>0&&(v.x=r/s,v.y=l/s,f=c),e.stopPropagation(),e.preventDefault()}}function u(){!b&&h&&(h=!1,clearInterval(g),g=setInterval(function(){return.01>Math.abs(v.x)&&.01>Math.abs(v.y)?(clearInterval(g),void 0):(n(30*v.x,30*v.y),v.x*=.8,v.y*=.8,void 0)},10))}var p={},f=0,v={},g=null,b=!1,h=!1;t&&(e(window).bind(j("touchstart"),r),e(window).bind(j("touchend"),l),S.bind(j("touchstart"),c),S.bind(j("touchmove"),s),S.bind(j("touchend"),u)),o&&(window.PointerEvent?(e(window).bind(j("pointerdown"),r),e(window).bind(j("pointerup"),l),S.bind(j("pointerdown"),c),S.bind(j("pointermove"),s),S.bind(j("pointerup"),u)):window.MSPointerEvent&&(e(window).bind(j("MSPointerDown"),r),e(window).bind(j("MSPointerUp"),l),S.bind(j("MSPointerDown"),c),S.bind(j("MSPointerMove"),s),S.bind(j("MSPointerUp"),u)))}function m(){S.bind(j("scroll"),function(){d()})}function T(){S.unbind(j()),e(window).unbind(j()),e(A).unbind(j()),S.data("perfect-scrollbar",null),S.data("perfect-scrollbar-update",null),S.data("perfect-scrollbar-destroy",null),O.remove(),Q.remove(),K.remove(),U.remove(),K=U=O=Q=M=Y=P=x=D=C=E=X=R=q=B=k=W=z=F=G=I=j=null}function y(){d(),m(),u(),p(),b(),h(),v(),(N||V)&&w(N,V),L.useKeyboard&&g(),S.data("perfect-scrollbar",S),S.data("perfect-scrollbar-update",d),S.data("perfect-scrollbar-destroy",T)}var L=e.extend(!0,{},o),S=e(this);if("object"==typeof n?e.extend(!0,L,n):l=n,"update"===l)return S.data("perfect-scrollbar-update")&&S.data("perfect-scrollbar-update")(),S;if("destroy"===l)return S.data("perfect-scrollbar-destroy")&&S.data("perfect-scrollbar-destroy")(),S;if(S.data("perfect-scrollbar"))return S.data("perfect-scrollbar");S.addClass("ps-container");var P,x,D,C,M,E,X,Y,k,W,I="rtl"===S.css("direction"),j=r(),A=this.ownerDocument||document,K=e("
").appendTo(S),O=e("
").appendTo(K),R=t(K.css("bottom")),q=R===R,B=q?null:t(K.css("top")),H=t(K.css("borderLeftWidth"))+t(K.css("borderRightWidth")),U=e("
").appendTo(S),Q=e("
").appendTo(U),z=t(U.css("right")),F=z===z,G=F?null:t(U.css("left")),J=t(U.css("borderTopWidth"))+t(U.css("borderBottomWidth")),N="ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch,V=null!==window.navigator.msMaxTouchPoints;return y(),S})}}); \ No newline at end of file diff --git a/public/install/step_0.php b/public/install/step_0.php new file mode 100644 index 0000000..a7b5330 --- /dev/null +++ b/public/install/step_0.php @@ -0,0 +1,55 @@ + + + + + <?php echo $html_title; ?> + + + + + + + + +
+
+
+

系统安装协议

+

欢迎使用Timely在线客服系统,Timely在线客服系统采用了ThinkPHP5.1、Layui、Swoole,是一款轻量级、高速度的PHP在线客服系统。 + 您在使用中如有任何问题都可以登录Timely官方网站获取帮助。官方网址为 http://www.cnavd.com。

+ +

I. 协议许可的权利

+
    +
  1. Timely遵循Apache Lisense 2.0开源协议发布,并提供免费使用。
  2. +
  3. Apache Licence是著名的非盈利开源组织Apache采用的协议。该协议和BSD类似,鼓励代码共享和尊重原作者的著作权,允许代码修改,再作为开源或商业软件发布。需要满足的条件:
  4. +
  5. 1、需要给用户一份Apache Licence ;
  6. +
  7. 2、如果你修改了代码,需要在被修改的文件中说明;
  8. +
  9. 3、在延伸的代码中(修改和有源代码衍生的代码中)需要带有原来代码中的协议,商标,专利声明和其他原来作者规定需要包含的说明;
  10. +
  11. 4、如果再发布的产品中包含一个Notice文件,则在Notice文件中需要带有本协议内容。你可以在Notice中增加自己的许可,但不可以表现为对Apache Licence构成更改。
  12. +
  13. 您可以在本软件基础上进行修改、再编辑、甚至应用于商业项目,但您必须保留本软件相关标识。
  14. +
+

II. 免责声明

+
    +
  1. 1、使用Timely构建的网站的任何信息内容以及导致的任何版权纠纷和法律争议及后果,Timely官方不承担任何责任。
  2. +
  3. 2、 您一旦安装使用Timely,即被视为完全理解并接受本协议的各项条款,在享有上述条款授予的权力的同时,受到相关的约束和限制。
  4. + +
+

+ +

+

Timely研发团队

+

2019年12月1日

+
+
+ +
+ + + + diff --git a/public/install/step_1.php b/public/install/step_1.php new file mode 100644 index 0000000..732034e --- /dev/null +++ b/public/install/step_1.php @@ -0,0 +1,98 @@ + + + + +<?php echo $html_title;?> + + + + + + +
+
+
+

Step.1

+

开始安装

+
检测服务器环境及文件目录权限
+
+
+
+
+
+
+
+
检查安装环境选择安装方式创建数据库安装
+
+
+
+
+ + + + + + + + + + + + + + + +
+ 环境检查 +
项目程序所需最佳配置推荐当前服务器
+ + + + + + + + $v){?> + + + + + + +
+ 目录、文件权限检查 +
目录文件所需状态当前状态
可写
+ + + + + + + + $v){?> + + + + + + +
+ 函数检查 +
目录文件所需状态当前状态
()支持
+
+ + + + + diff --git a/public/install/step_2.php b/public/install/step_2.php new file mode 100644 index 0000000..e1e91ce --- /dev/null +++ b/public/install/step_2.php @@ -0,0 +1,64 @@ + + + + +<?php echo $html_title;?> + + + + + + + + +
+
+
+

Step.2

+

选择安装方式

+
根据需要选择系统模块完全或手动安装
+
+
+
+
+
+
+
+
检查安装环境选择安装方式创建数据库安装
+
+
+
+ +
+ +
+ +
+
+ + + diff --git a/public/install/step_3.php b/public/install/step_3.php new file mode 100644 index 0000000..1b4ccd5 --- /dev/null +++ b/public/install/step_3.php @@ -0,0 +1,124 @@ + + + + +<?php echo $html_title;?> + + + + + + + + +
+
+
+

Step.3

+

创建数据库

+
填写数据库及站点相关信息
+
+
+
+
+
+
+
+
检查安装环境选择安装方式创建数据库安装
+
+
+
+ + +
+
+ 数据库信息 +
+ + + + 数据库服务器地址,一般为localhost
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + + 同一数据库运行多个程序时,请修改前缀
+
+ + + + 数据库默认端口一般为3306
+ +
+ + id="demo_data" value="1" checked> +

安装演示数据

+ + +
+ +
+ +
+ +
+ +
+
+ + + diff --git a/public/install/step_4.php b/public/install/step_4.php new file mode 100644 index 0000000..7967bff --- /dev/null +++ b/public/install/step_4.php @@ -0,0 +1,50 @@ + + + + +<?php echo $html_title;?> + + + + + + + + + + +
+
+
+

Step.4

+

安装数据库

+
正在执行数据库安装
+
+
+
+
+
+
+
+
检查安装环境选择安装方式创建数据库安装
+
+
+
+
+
+ +
+ + + diff --git a/public/install/step_5.php b/public/install/step_5.php new file mode 100644 index 0000000..b421756 --- /dev/null +++ b/public/install/step_5.php @@ -0,0 +1,44 @@ + + + + +<?php echo $html_title;?> + + + + + + + + +
+
+

程序已成功安装

+
选择您要进入的页面
+
+
+
+
    +
  • +
    +
    后台
    +
    系统后台
    +
  • +
+
+
+

用户名:admin 密码:123456

+
+
+ +
+
+ + + +