├── static
├── icons
│ ├── border.png
│ ├── bn_srh_1.png
│ ├── footerbg.png
│ └── icon_128.png
├── css
│ ├── base.css
│ ├── options.css
│ └── sweet-alert.min.css
└── js
│ ├── options.js
│ ├── contentscript.js
│ ├── sweet-alert.min.js
│ └── jquery.js
├── .gitignore
├── manifest.json
├── README.md
└── options.html
/static/icons/border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/suxiaogang/doubanXbaidu/HEAD/static/icons/border.png
--------------------------------------------------------------------------------
/static/icons/bn_srh_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/suxiaogang/doubanXbaidu/HEAD/static/icons/bn_srh_1.png
--------------------------------------------------------------------------------
/static/icons/footerbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/suxiaogang/doubanXbaidu/HEAD/static/icons/footerbg.png
--------------------------------------------------------------------------------
/static/icons/icon_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/suxiaogang/doubanXbaidu/HEAD/static/icons/icon_128.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # ignore all bin directories
2 | # matches "bin" in any subfolder
3 | # generated files
4 | bin/
5 | gen/
6 |
7 | # ignore all target directories
8 | # Maven
9 | log/
10 | target/
11 | target/
12 |
13 | # Java class files
14 | *.class
15 | # ignore all files ending with ~
16 | *~
17 |
18 | # Mac
19 | .DS_Store
20 |
21 | # Eclipse project files
22 | .classpath
23 | .project
24 | .settings
25 |
26 | # PDT-specific
27 | .buildpath
28 |
29 | # Intellij project files
30 | *.iml
31 | *.ipr
32 | *.iws
33 | .idea/
--------------------------------------------------------------------------------
/static/css/base.css:
--------------------------------------------------------------------------------
1 | input[type="text"]{
2 | vertical-align: top;
3 | display: inline-block;
4 | height: 26px;
5 | line-height: 26px;
6 | font-size: 12px;
7 | width: 77%;
8 | box-sizing: border-box;
9 | padding: 3px 10px;
10 | outline: 0px;
11 | border-radius: 3px;
12 | border-width: 1px;
13 | border-style: solid;
14 | border-color: rgb(221, 221, 221);
15 | border-image: initial;
16 | }
17 |
18 | #query-keywords:focus{
19 | outline: 0 none;
20 | }
21 |
22 | #baidu-search{
23 | margin:12px 6px -20px 2px;
24 | }
25 |
26 | #query-keywords{
27 | height: 100%;
28 | width: 285px;
29 | }
30 |
31 | #searchIcon{
32 | margin-left:260px;
33 | vertical-align: middle;
34 | }
35 | .bdresult a{
36 | border-radius:1px;
37 | padding-left: 4px;
38 | padding-right: 4px;
39 | -webkit-transition:all .4s
40 | }
41 |
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "manifest_version": 2,
3 | "name": "豆瓣+百度网盘™",
4 | "description": "在豆瓣电影,音乐,读书条目页面显示百度网盘搜索结果",
5 | "version": "2.2",
6 | "icons": {
7 | "16": "static/icons/icon_128.png",
8 | "48": "static/icons/icon_128.png",
9 | "128": "static/icons/icon_128.png"
10 | },
11 | "content_scripts": [
12 | {
13 | "matches": [
14 | "http://*.movie.douban.com/subject/*",
15 | "http://*.book.douban.com/subject/*",
16 | "http://*.music.douban.com/subject/*",
17 | "https://*.movie.douban.com/subject/*",
18 | "https://*.book.douban.com/subject/*",
19 | "https://*.music.douban.com/subject/*"
20 | ],
21 | "css": ["static/css/base.css", "static/css/sweet-alert.min.css"],
22 | "js": ["static/js/jquery.js", "static/js/sweet-alert.min.js", "static/js/contentscript.js"]
23 | }
24 | ],
25 | "options_page": "options.html",
26 | "web_accessible_resources": [
27 | "static/icons/icon_128.png",
28 | "static/icons/bn_srh_1.png",
29 | "options.html"
30 | ],
31 | "permissions": [
32 | "storage", "http://*.baidu.com/*", "http://*.bing.com/*", "https://*.baidu.com/*", "https://*.bing.com/*", "http://*.google.com/*", "https://*.google.com/*"
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | #####在豆瓣 书/影/音 条目页面即时显示百度网盘搜索结果
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | ####更新记录
10 | ```
11 | 2017-02-17 v2.1
12 | 一些bug修复和样式调整
13 |
14 | 2016-03-10 v2.0
15 | 修复豆瓣https导致搜索结果不显示的问题
16 |
17 | 2015-02-09 v1.9
18 | 增加对Bing搜索的支持,现在可以从选项页中选择搜索来源
19 |
20 | 2015-02-05 v1.8
21 | 修复因百度屏蔽对百度网盘搜索结果收录导致页面不显示内容的bug(目前调用Google搜索API)
22 |
23 | 2014-05-09 v1.7
24 | 修复CSS样式影响豆瓣条目页面的bug
25 |
26 | 2014-03-09 v1.6
27 | 修复因百度改版导致无法显示搜索结果的bug和其他问题
28 |
29 | 2013-11-09 v1.5
30 | 修复bug,优化加载速度
31 |
32 | 2013-09-16 v1.4
33 | 紧急修复不能正常显示搜索结果的bug
34 |
35 | 2013-09-07 v1.3
36 | 增加搜索框,点击"+"号可在条目页面内搜索任意关键字
37 | 其他bug修复,优化
38 |
39 | 2013-09-02 v1.2
40 | 更换图标为du熊
41 | 移除工具栏按钮,改为'选项'页
42 | 修复条目下讨论页面内依旧显示搜索结果的bug
43 | 体积更小,速度更快
44 |
45 | 2013-08-25 v1.1
46 | 修改搜索关键字判断错误的bug
47 | ```
48 |
49 | ####截图
50 |
51 |
52 |
53 | ####感谢
54 |
55 | * 图标来自[ABKer](http://dribbble.com/shots/1003774-baidu)
56 | * [jQuery 1.7](http://jquery.com/)
57 | * [bootstrap 2.3](http://getbootstrap.com/2.3.2/)
58 |
59 | ####TODO
60 |
61 | * 图书条目页面加入新浪爱问的搜索结果
62 | * 电影条目页面加入第三方视频网站超链
63 | * 音乐条目页面加入其他靠谱的网盘搜索结果
64 |
65 | ######反馈
66 |
67 | + [微博](http://weibo.com/47660666)
68 | + [豆瓣](http://www.douban.com/people/gangsta/)
69 | + [V2EX](http://www.v2ex.com/member/gangsta)
70 |
71 | ##### Copyright and license
72 |
73 | #
74 |
75 | Licensed under the Apache License, Version 2.0 (the "License");
76 | you may not use this work except in compliance with the License.
77 | You may obtain a copy of the License in the LICENSE file, or at:
78 |
79 | [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
80 |
81 | Unless required by applicable law or agreed to in writing, software
82 | distributed under the License is distributed on an "AS IS" BASIS,
83 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
84 | See the License for the specific language governing permissions and
85 | limitations under the License.
86 |
--------------------------------------------------------------------------------
/static/js/options.js:
--------------------------------------------------------------------------------
1 | function closeWindow() {
2 | window.close();
3 | }
4 |
5 | function douyou() {
6 | window.open('http://www.douban.com/doumail/write?to=gangsta','newwindow','height=600,width=1000,top=20,left=100,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');
7 | }
8 |
9 | function weibo() {
10 | var _url = "http://t.cn/z8XPRJh";
11 | var title = "灰常好用的Chrome浏览器扩展,可以通过Google搜索豆瓣条目在百度网盘的资源哦~";
12 | window.open('http://service.weibo.com/share/share.php?url=' + _url + '&title='+ title +'&type=button&language=zh_cn&appkey=Fptz1&searchPic=true&style=simple');
13 | }
14 |
15 | function github() {
16 | var _url = "https://github.com/Suxiaogang/doubanXbaidu";
17 | window.open(_url);
18 | }
19 |
20 | function toggleWechat(){
21 | $("#qr").slideToggle("normal");
22 | }
23 |
24 | function toggleUL() {
25 | $('.nav-tabs li').click(function() {
26 | var index = $(this).index();
27 | $('.nav-tabs').find("li").removeClass('active').addClass('off');
28 | $(this).removeClass('off').addClass('active');
29 | });
30 | }
31 |
32 | var doubanXbaiduData;
33 |
34 | $(document).ready(function(){
35 | $(".close").click(closeWindow);
36 | $("#avatar").click(douyou);
37 | $("#weibo").click(weibo);
38 | $("#github").click(github);
39 | $("#toggleWechat").click(toggleWechat);//
40 | //切换显示
41 | toggleUL();
42 | var version = chrome.runtime.getManifest().version;
43 | $(".current_version").text(version);
44 |
45 | chrome.storage.local.get('dbEngine', function (result) {
46 | var dbe = result.dbEngine;
47 | if(dbe == undefined) {
48 | chrome.storage.local.set({'dbEngine': 'Google'});
49 | } else {
50 | $('input:radio[name="engine"][value='+dbe+']').prop("checked", true);
51 | }
52 | });
53 |
54 | $('.alipay').on('click', function () {
55 | event.preventDefault();
56 | swal({title: "", text: "请扫描微信支付二维码", imageUrl: "http://ww2.sinaimg.cn/large/5fd37818jw1ex6kba7xq2j20ba0b6q4e.jpg", imageSize: "280x280"});
57 | });
58 |
59 | $('.btn-primary').on('click', function () {
60 | var engine = $('input:radio[name="engine"]:checked').val();
61 | event.preventDefault();
62 | chrome.storage.local.set({'dbEngine': engine});
63 | swal({title: "", text:"您的设置已经保存!", type:"success", timer: 2500});
64 | });
65 |
66 | var $tab_li = $('.pill-tabs li');
67 | $tab_li.click(function(){
68 | $(this).addClass('active').siblings().removeClass('active');
69 | var index = $tab_li.index(this);
70 | $('#send_email_feedback > div').eq(index).show().siblings().hide();
71 | });
72 |
73 | });
--------------------------------------------------------------------------------
/options.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 选项
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
×
18 |
19 |
24 |
25 |
26 |
27 |
28 |
搜索引擎选择:
29 |
33 |
注意 : 因为中国大陆长城防火墙(Great FireWall)的限制,Google等网站在中国大陆默认不能被正常访问
34 | 选择Google作为默认搜索引擎时,请确保您的Chrome浏览器已经通过VPN/ShadowSocks等辅助工具可以正常访问Google
35 |
36 |
37 |
38 |
39 |
40 |
41 |
这是一款在豆瓣电影,音乐,读书条目页面实时显示相关资源在百度网盘搜索结果的Chrome浏览器扩展
42 |
轻量级:大小只有不到200k
43 |
绝无 任何广告和植入代码,并且源码开放
44 |
45 |
55 |
56 |
57 |
想对开发者捐助一点您的心意表(mǎi)示(bēi)感(kā)谢(fēi)?
58 |
59 | 请使用微信扫描二维码赞助作者
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
94 |
95 |
96 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/static/css/options.css:
--------------------------------------------------------------------------------
1 | a{
2 | color:#AFAFAF;
3 | }
4 | a:hover {
5 | text-decoration: none;
6 | }
7 | a:focus,a:active{
8 | text-decoration: none;
9 | outline:0 !important;
10 | }
11 | .btn-primary:focus, .btn-primary:active {outline:0 !important;}
12 | * {
13 | margin: 0;
14 | padding: 0;
15 | }
16 | .not{
17 | display: none;
18 | }
19 | html {
20 | position: relative;
21 | min-height: 100%;
22 | }
23 | body {
24 | /* Margin bottom by footer height */
25 | margin-bottom: 60px;
26 | background-color: #EDEFF0;
27 | font-size:12px;
28 | }
29 | .pill-tabs {
30 | border-bottom: none;
31 | display:block;
32 | min-height:40px;
33 | list-style:none;
34 | }
35 | .pill-tabs li{
36 | float:left;
37 | border-radius: 3px;
38 | background-color:#DDD;
39 | color:#555;
40 | margin-right:10px;
41 | font-size:14px;
42 | }
43 | .pill-tabs li a{
44 | margin:2px 10px;
45 | padding:3px 5px;
46 | display: inline-block;
47 | color:#555;
48 | }
49 | .pill-tabs li.active{
50 | background-color:#4096EE;
51 | color:#FFF;
52 | }
53 | .pill-tabs li a:hover{
54 | color:#FFF;
55 | }
56 | .page-content{
57 | display:block;
58 | min-height:400px;
59 | background-color: #fff;
60 | border-radius: 5px;
61 | padding:20px 50px 50px 50px;
62 | margin:50px 0px;
63 | z-index:100;
64 | color:#555;
65 | }
66 | #send_email_feedback{
67 | background: #fff;
68 | padding: 20px;
69 | }
70 | #send_email_feedback li{
71 | margin:10px;
72 | }
73 | #send_email_feedback li a{
74 | color:#000;
75 | padding:3px 5px 3px 5px;
76 | border-radius: 3px;
77 | -webkit-transition: 0.5s;
78 | background-color:rgba(64, 150, 238, 0.12);
79 | }
80 | #send_email_feedback li a:active{
81 | text-decoration: none;
82 | }
83 | #send_email_feedback li a:hover{
84 | color:#FFF;
85 | background-color:#4096EE;
86 | }
87 | .close{
88 | margin-bottom:30px;
89 | }
90 | .slide-nav{
91 | -webkit-transition: 0.5s;
92 | }
93 | h5{
94 | margin:20px 0px 20px 0px;
95 | font-weight:bold;
96 | }
97 | #send_email_feedback_wrap{
98 | background: url(../icons/border.png) 8px 0 repeat;
99 | padding:5px;
100 | box-shadow: 0 0 10px rgba(0,0,0,0.3);
101 | border-radius: 5px;
102 | color: #555;text-shadow:none;
103 | }
104 | .btn-primary {
105 | min-height:20px;
106 | color: #357EBD;
107 | font-size: 12px;
108 | margin: 50px 0px 20px 0px;
109 | background-color: rgba(0, 0, 0, 0);
110 | border: 1px solid #357EBD;
111 | border-radius: 5px;
112 | padding: 3px 20px;
113 | }
114 | /* 單選框 */
115 | .abgne-menu-20140109-1, .abgne-menu-20140109-1 li {
116 | list-style: none;
117 | display:inline-block;
118 | }
119 | .abgne-menu-20140109-1 label {
120 | cursor: pointer;
121 | display: block;
122 | width: 70px;
123 | position: relative;
124 | }
125 | .abgne-menu-20140109-1 label::after {
126 | content:"";
127 | display: inline-block;
128 | width: 20px;
129 | height: 20px;
130 | line-height: 20px;
131 | border-radius: 50%;
132 | padding: 3px;
133 | color: #FFF;
134 | background: #E5E5E5;
135 | text-align: center;
136 | position: absolute;
137 | right: 0;
138 | }
139 | .abgne-menu-20140109-1 input[type="radio"] {
140 | display: none;
141 | }
142 | .abgne-menu-20140109-1 input[type="radio"]:checked + label::after {
143 | content:"";
144 | background: #000;
145 | -webkit-transition: all .5s;
146 | }
147 | /***footer***/
148 | .footer {
149 | position: absolute;
150 | bottom: 0;
151 | width: 100%;
152 | /* Set the fixed height of the footer here */
153 | font-size:12px;
154 | background-color: #999;
155 | background-image: url("chrome-extension://__MSG_@@extension_id__/static/icons/footerbg.png");
156 | }
157 |
158 | .footer p{
159 | margin-top:20px;
160 | color:#C5C5C5;
161 | }
162 | .footer p a{
163 | color:#C5C5C5;
164 | margin-left:3px;
165 | margin-right:3px;
166 | }
167 | .footer p a:hover{
168 | color:#888;
169 | }
170 | .footer .fa-heart{
171 | color:red;
172 | }
173 | #avatar {
174 | height:30px;
175 | margin-top:-5px;
176 | margin-right:15px;
177 | border-radius: 50%;
178 | padding: 2px;
179 | background: rgb(82, 146, 103);
180 | }
181 | #avatar:hover{
182 | -webkit-transition:All 0.5s ease;
183 | -webkit-transform:rotate(360deg);
184 | cursor:pointer;
185 | }
186 | #qr{
187 | display:none;
188 | }
189 | #weibo{
190 | margin-left:2px;
191 | margin-bottom:4px;
192 | -webkit-transition: all .6s;
193 | }
194 | #weibo:hover{
195 | cursor:pointer;
196 | }
197 | .alipay{
198 | width:120px;
199 | height:120px;
200 | opacity:1;
201 | margin:20px;
202 | }
203 | .alipay:hover{
204 | -webkit-transition: 0.5s;
205 | cursor:pointer;
206 | opacity:0.5;
207 | }
208 | /*CSS 3*/
209 | .animated {
210 | -webkit-animation-duration: 0.4s;
211 | animation-duration: 0.4s;
212 | -webkit-animation-fill-mode: both;
213 | animation-fill-mode: both;
214 | }
215 | @-webkit-keyframes fadeInUp {
216 | 0% {
217 | opacity: 0;
218 | -webkit-transform: translate3d(0, 100%, 0);
219 | transform: translate3d(0, 100%, 0);
220 | }
221 |
222 | 100% {
223 | opacity: 1;
224 | -webkit-transform: none;
225 | transform: none;
226 | }
227 | }
228 |
229 | @keyframes fadeInUp {
230 | 0% {
231 | opacity: 0;
232 | -webkit-transform: translate3d(0, 100%, 0);
233 | -ms-transform: translate3d(0, 100%, 0);
234 | transform: translate3d(0, 100%, 0);
235 | }
236 |
237 | 100% {
238 | opacity: 1;
239 | -webkit-transform: none;
240 | -ms-transform: none;
241 | transform: none;
242 | }
243 | }
244 |
245 | .fadeInUp {
246 | -webkit-animation-name: fadeInUp;
247 | animation-name: fadeInUp;
248 | }
--------------------------------------------------------------------------------
/static/js/contentscript.js:
--------------------------------------------------------------------------------
1 | /*
2 | * @Author: sam_su
3 | * @Date: 2014-05-09 10:20
4 | * @Update: 2017-02-21
5 | */
6 |
7 | //过滤掉不显示注入结果的页面.
8 |
9 | var currentURL = document.URL;
10 | var do_not_inject_page = new Array(
11 | "discussion","doulist","collections","wishes","review","mupload","all_photos",
12 | "new_review","comments","group_collectors","offers","new_offer","doings","questions","photos","cinema");
13 |
14 | var flag = true;
15 | for (var i = 0; i < do_not_inject_page.length; i++) {
16 | if(currentURL.indexOf(do_not_inject_page[i]) != -1){
17 | flag = false;
18 | break;
19 | }
20 | }
21 |
22 | if(flag){
23 | chrome.storage.local.get('dbEngine', function (result) {
24 | var dbe = result.dbEngine;
25 | if(dbe == undefined) {
26 | chrome.storage.local.set({'dbEngine': 'Google'});
27 | } else {
28 | inject(dbe);
29 | }
30 | });
31 | }
32 |
33 | function getRandomArrayElements(arr, count) {
34 | var shuffled = arr.slice(0), i = arr.length, min = i - count, temp, index;
35 | while (i-- > min) {
36 | index = Math.floor((i + 1) * Math.random());
37 | temp = shuffled[index];
38 | shuffled[index] = shuffled[i];
39 | shuffled[i] = temp;
40 | }
41 | return shuffled.slice(min);
42 | }
43 |
44 | function inject(engine){
45 | //alert(engine);
46 | var title = $('html head title').text();
47 | var keyword = title.replace( '(豆瓣)', '' ).trim();
48 | var dck = encodeURIComponent(keyword);
49 | var imgURL = chrome.extension.getURL("static/icons/icon_128.png");
50 | var imgSearch = chrome.extension.getURL("static/icons/bn_srh_1.png");
51 | var optionURL = chrome.extension.getURL('options.html');
52 | var html_title = ''
53 | + '
'
54 | + ' '
55 | + '' + keyword + ' 的搜索结果 (来源:'+ engine +') '
56 | /*+ '全部 '*/
57 | + '+ '
58 |
59 | + ''
60 | + '
'
61 | + '
'
62 | + '
'
63 |
64 | + ' ';
65 | var html_body_start = '';
66 |
67 | //var url='http://www.baidu.com/s?wd='+dck+'+site%3Apan.baidu.com';
68 | var url = '';
69 | if(engine == "Google"){
70 | url = 'https://www.googleapis.com/customsearch/v1element?key=AIzaSyCVAXiUzRYsML1Pv6RwSG1gunmMikTzQqY&rsz=filtered_cse&num=20&hl=en&prettyPrint=true&source=gcsc&gss=.com&sig=ee93f9aae9c9e9dba5eea831d506e69a&cx=018177143380893153305:yk0qpgydx_e&q='+dck;
71 | $.ajax({
72 | url:url,
73 | dataType: "json",
74 | success: function(data){
75 | var results = data.results;
76 | var pickNum = results.length > 5 ? 5 : results.length;
77 | var arrayNew = getRandomArrayElements(results, pickNum);
78 | if (results.length == 0) {
79 | $("ul.bdresult").append('未能找到' + keyword + '的相关结果 ');
80 | } else {
81 | for(var i = 0; i < pickNum; i ++){
82 | var content = arrayNew[i].contentNoFormatting;
83 | var tempTitle = arrayNew[i].titleNoFormatting.replace("|百度云网盘-分享无限制", "").replace("_免费高速下载", "").replace("|百度云网盘-分享无限制", "");//
84 | var tempURL = arrayNew[i].unescapedUrl;
85 | //搜索结果不为空时,加载显示...
86 | if (tempTitle != "") {
87 | $("ul.bdresult").append(''+ (i+1) +' ' + tempTitle + ' ');
88 | $("ul.bdresult").append('' + content + ' ');
89 | } else if (tempTitle == "" && i == 1) {
90 | $("ul.bdresult").append('哇哦~,可能是该资源过于冷门,什么都没找到呀... ');
91 | return;
92 | } else {
93 | $("ul.bdresult").append('未找到更多搜索结果 ');
94 | return;
95 | }
96 | };
97 | }
98 |
99 | },
100 | error: function(responseData, textStatus, errorThrown) {
101 | $("ul.bdresult").append('未能找到' + keyword + '的相关结果 ');
102 | }
103 | });
104 | } else if(engine == "Bing"){
105 | url = 'https://cn.bing.com/search?q='+dck+'+site%3apan.baidu.com';
106 | $.ajax({
107 | url:url,
108 | dataType: "html",
109 | success: function(data){
110 | for(var i = 0; i < 5; i ++){
111 | var contentX = $('#b_results > li:eq('+i+') a', data);
112 | var tempURL = contentX.attr('href');
113 | var tempTitle = contentX.text();
114 | var contentY = $('#b_results > li:eq('+i+') p', data);
115 | var content = contentY.text();
116 |
117 | //搜索结果不为空时,加载显示...
118 | if (tempTitle != "") {
119 | tempTitle = tempTitle.replace("免费高速下载|百度云 网盘-分享无限制", "").replace("免费高速下载", "").replace("|百度云 网盘-分享无限制", "");//
120 | $("ul.bdresult").append(''+ (i+1) +' ' + tempTitle + ' ');
121 | $("ul.bdresult").append('' + content + ' ');
122 | } else if (tempTitle == "" && i == 1) {
123 | $("ul.bdresult").append('哇哦~,可能是该资源过于冷门,什么都没找到呀... ');
124 | return;
125 | } else {
126 | $("ul.bdresult").append('未找到更多搜索结果 ');
127 | return;
128 | }
129 | }
130 | },
131 | error: function(responseData, textStatus, errorThrown) {
132 | $("ul.bdresult").append('未能找到' + keyword + '的相关结果 ');
133 | }
134 | });
135 | }
136 |
137 | var html_body_end = ' ';
138 |
139 | $('.aside').prepend( html_title + html_body_start + html_body_end);
140 | $('.bdresult li:last').css('border-bottom', 'none');
141 |
142 | var toggle_more_button = document.getElementById("toggleIcon");
143 | toggle_more_button.addEventListener("click", function() {
144 | var origsrc = $(this).html();
145 | var str = "";
146 | if (origsrc == "+") {
147 | str = "-";
148 | } else {
149 | str = "+";
150 | }
151 | $(this).html(str);
152 | $('#baidu-search').fadeToggle("fast");
153 | }, false);
154 |
155 | var submit_search = document.getElementById("searchIcon");
156 | submit_search.addEventListener("click", function() {
157 | var queryWords = $('#query-keywords').val();
158 | if(queryWords.trim() == ""){
159 | //alert("请输入搜索关键字哦^_^");
160 | sweetAlert("Oops...", "请输入关键字哦~", "error");
161 | }else{
162 | var url_final = '';
163 | if(engine == "Google"){
164 | url_final = 'https://www.google.com/search?q='+ queryWords +'+site:pan.baidu.com';
165 | } else if(engine == "Bing"){
166 | url_final = 'https://cn.bing.com/search?q='+dck+'+site%3apan.baidu.com';
167 | }
168 | window.open(url_final);
169 | }
170 | }, false);
171 |
172 | }
173 |
--------------------------------------------------------------------------------
/static/css/sweet-alert.min.css:
--------------------------------------------------------------------------------
1 | .sweet-overlay{background-color:rgba(0,0,0,.4);position:fixed;left:0;right:0;top:0;bottom:0;display:none;z-index:10000}.sweet-alert{background-color:#fff;font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;width:478px;padding:17px;border-radius:5px;text-align:center;position:fixed;left:50%;top:50%;margin-left:-256px;margin-top:-200px;overflow:hidden;display:none;z-index:99999}@media all and (max-width:540px){.sweet-alert{width:auto;margin-left:0;margin-right:0;left:15px;right:15px}}.sweet-alert h2{color:#575757;font-size:30px;text-align:center;font-weight:600;text-transform:none;position:relative;margin:25px 0;padding:0;line-height:40px;display:block}.sweet-alert p{color:#797979;font-size:16px;font-weight:300;position:relative;text-align:inherit;float:none;margin:0;padding:0;line-height:normal}.sweet-alert button{background-color:#AEDEF4;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}.sweet-alert button:focus{outline:0;box-shadow:0 0 2px rgba(128,179,235,.5),inset 0 0 0 1px rgba(0,0,0,.05)}.sweet-alert button:hover{background-color:#a1d9f2}.sweet-alert button:active{background-color:#81ccee}.sweet-alert button.cancel{background-color:#D0D0D0}.sweet-alert button.cancel:hover{background-color:#c8c8c8}.sweet-alert button.cancel:active{background-color:#b6b6b6}.sweet-alert button.cancel:focus{box-shadow:rgba(197,205,211,.8) 0 0 2px,rgba(0,0,0,.0470588) 0 0 0 1px inset!important}.sweet-alert button::-moz-focus-inner{border:0}.sweet-alert[data-has-cancel-button=false] button{box-shadow:none!important}.sweet-alert .icon{width:80px;height:80px;border:4px solid gray;border-radius:50%;margin:20px auto;padding:0;position:relative;box-sizing:content-box}.sweet-alert .icon.error{border-color:#F27474}.sweet-alert .icon.error .x-mark{position:relative;display:block}.sweet-alert .icon.error .line{position:absolute;height:5px;width:47px;background-color:#F27474;display:block;top:37px;border-radius:2px}.sweet-alert .icon.error .line.left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.sweet-alert .icon.error .line.right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}.sweet-alert .icon.warning{border-color:#F8BB86}.sweet-alert .icon.warning .body{position:absolute;width:5px;height:47px;left:50%;top:10px;border-radius:2px;margin-left:-2px;background-color:#F8BB86}.sweet-alert .icon.warning .dot{position:absolute;width:7px;height:7px;border-radius:50%;margin-left:-3px;left:50%;bottom:10px;background-color:#F8BB86}.sweet-alert .icon.info{border-color:#C9DAE1}.sweet-alert .icon.info::before{content:"";position:absolute;width:5px;height:29px;left:50%;bottom:17px;border-radius:2px;margin-left:-2px;background-color:#C9DAE1}.sweet-alert .icon.info::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;margin-left:-3px;top:19px;background-color:#C9DAE1}.sweet-alert .icon.success{border-color:#A5DC86}.sweet-alert .icon.success::after,.sweet-alert .icon.success::before{content:'';position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg)}.sweet-alert .icon.success::before{border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.sweet-alert .icon.success::after{border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 60px;transform-origin:0 60px}.sweet-alert .icon.success .placeholder{width:80px;height:80px;border:4px solid rgba(165,220,134,.2);border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.sweet-alert .icon.success .fix{width:5px;height:90px;background-color:#fff;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .icon.success .line{height:5px;background-color:#A5DC86;display:block;border-radius:2px;position:absolute;z-index:2}.sweet-alert .icon.success .line.tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.sweet-alert .icon.success .line.long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.sweet-alert .icon.custom{background-size:contain;border-radius:0;border:none;background-position:center center;background-repeat:no-repeat}@-webkit-keyframes showSweetAlert{0%{transform:scale(0.7);-webkit-transform:scale(0.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(0.95);-webkit-tranform:scale(0.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes showSweetAlert{0%{transform:scale(0.7);-webkit-transform:scale(0.7)}45%{transform:scale(1.05);-webkit-transform:scale(1.05)}80%{transform:scale(0.95);-webkit-tranform:scale(0.95)}100%{transform:scale(1);-webkit-transform:scale(1)}}@-webkit-keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(0.5);-webkit-transform:scale(0.5)}}@keyframes hideSweetAlert{0%{transform:scale(1);-webkit-transform:scale(1)}100%{transform:scale(0.5);-webkit-transform:scale(0.5)}}.showSweetAlert{-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s}.showSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}.hideSweetAlert{-webkit-animation:hideSweetAlert .2s;animation:hideSweetAlert .2s}.hideSweetAlert[data-animation=none]{-webkit-animation:none;animation:none}@-webkit-keyframes animateSuccessTip{0%,54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%,54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}100%{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%,65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%,65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}100%{width:47px;right:8px;top:38px}}@-webkit-keyframes rotatePlaceholder{0%,5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}100%,12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%,5%{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}100%,12%{transform:rotate(-405deg);-webkit-transform:rotate(-405deg)}}.animateSuccessTip{-webkit-animation:animateSuccessTip .75s;animation:animateSuccessTip .75s}.animateSuccessLong{-webkit-animation:animateSuccessLong .75s;animation:animateSuccessLong .75s}.icon.success.animate::after{-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}@-webkit-keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{transform:rotateX(100deg);-webkit-transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0deg);-webkit-transform:rotateX(0deg);opacity:1}}.animateErrorIcon{-webkit-animation:animateErrorIcon .5s;animation:animateErrorIcon .5s}@-webkit-keyframes animateXMark{0%,50%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%,50%{transform:scale(0.4);-webkit-transform:scale(0.4);margin-top:26px;opacity:0}80%{transform:scale(1.15);-webkit-transform:scale(1.15);margin-top:-6px}100%{transform:scale(1);-webkit-transform:scale(1);margin-top:0;opacity:1}}.animateXMark{-webkit-animation:animateXMark .5s;animation:animateXMark .5s}@-webkit-keyframes pulseWarning{0%{border-color:#F8D486}100%{border-color:#F8BB86}}@keyframes pulseWarning{0%{border-color:#F8D486}100%{border-color:#F8BB86}}.pulseWarning{-webkit-animation:pulseWarning .75s infinite alternate;animation:pulseWarning .75s infinite alternate}@-webkit-keyframes pulseWarningIns{0%{background-color:#F8D486}100%{background-color:#F8BB86}}@keyframes pulseWarningIns{0%{background-color:#F8D486}100%{background-color:#F8BB86}}.pulseWarningIns{-webkit-animation:pulseWarningIns .75s infinite alternate;animation:pulseWarningIns .75s infinite alternate}
--------------------------------------------------------------------------------
/static/js/sweet-alert.min.js:
--------------------------------------------------------------------------------
1 | !function(e,t,n){function o(){function o(e){var t=p;return"undefined"!=typeof t[e]?t[e]:h[e]}function l(t){var o=t||e.event,r=o.keyCode||o.which;if(-1!==[9,13,32,27].indexOf(r)){for(var a=o.target||o.srcElement,i=-1,l=0;lx;x++){var C=b[x];g[C]=o(C)}g.confirmButtonText=g.showCancelButton?"Confirm":h.confirmButtonText,g.confirmButtonText=o("confirmButtonText"),g.doneFunction=arguments[1]||null;break;default:return m('Unexpected type of argument! Expected "string" or "object", got '+typeof arguments[0]),!1}r(g),u(),c();for(var A=S(),T=function(t){var n=t||e.event,o=n.target||n.srcElement,r=-1!==o.className.indexOf("confirm"),i=k(A,"visible"),l=g.doneFunction&&"true"===A.getAttribute("data-has-done-function");switch(n.type){case"mouseover":r&&(o.style.backgroundColor=a(g.confirmButtonColor,-.04));break;case"mouseout":r&&(o.style.backgroundColor=g.confirmButtonColor);break;case"mousedown":r&&(o.style.backgroundColor=a(g.confirmButtonColor,-.14));break;case"mouseup":r&&(o.style.backgroundColor=a(g.confirmButtonColor,-.04));break;case"focus":var s=A.querySelector("button.confirm"),c=A.querySelector("button.cancel");r?c.style.boxShadow="none":s.style.boxShadow="none";break;case"click":if(r&&l&&i)g.doneFunction(!0),g.closeOnConfirm&&e.sweetAlert.close();else if(l&&i){var u=String(g.doneFunction).replace(/\s/g,""),f="function("===u.substring(0,9)&&")"!==u.substring(9,10);f&&g.doneFunction(!1),g.closeOnCancel&&e.sweetAlert.close()}else e.sweetAlert.close()}},E=A.querySelectorAll("button"),q=0;q"),o.innerHTML=e.html?e.text:T(e.text||"").split("\n").join(" "),e.text&&q(o),e.customClass)C(t,e.customClass),t.setAttribute("data-custom-class",e.customClass);else{var i=t.getAttribute("data-custom-class");A(t,i),t.setAttribute("data-custom-class","")}if(I(t.querySelectorAll(".icon")),e.type&&!f()){for(var l=!1,c=0;co;o++)n=parseInt(e.substr(2*o,2),16),n=Math.round(Math.min(Math.max(0,n+n*t),255)).toString(16),r+=("00"+n).substr(n.length);return r}function i(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);return e}function l(e){var t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return t?parseInt(t[1],16)+", "+parseInt(t[2],16)+", "+parseInt(t[3],16):null}function s(e,t){var n=l(t);e.style.boxShadow="0 0 2px rgba("+n+", 0.8), inset 0 0 0 1px rgba(0, 0, 0, 0.05)"}function c(){var n=S();D(x(),10),q(n),C(n,"showSweetAlert"),A(n,"hideSweetAlert"),p=t.activeElement;var o=n.querySelector("button.confirm");o.focus(),setTimeout(function(){C(n,"visible")},500);var r=n.getAttribute("data-timer");"null"!==r&&""!==r&&(n.timeout=setTimeout(function(){e.sweetAlert.close()},r))}function u(){var e=S();e.style.marginTop=M(S())}function f(){return e.attachEvent&&!e.addEventListener?!0:!1}function m(t){e.console&&e.console.log("SweetAlert: "+t)}var p,d,y,v,g=".sweet-alert",b=".sweet-overlay",w=["error","warning","info","success"],h={title:"",text:"",type:null,allowOutsideClick:!1,showCancelButton:!1,closeOnConfirm:!0,closeOnCancel:!0,confirmButtonText:"OK",confirmButtonColor:"#AEDEF4",cancelButtonText:"Cancel",imageUrl:null,imageSize:null,timer:null,customClass:"",html:!1,animation:!0,allowEscapeKey:!0},S=function(){var e=t.querySelector(g);return e||(sweetAlertInitialize(),e=S()),e},x=function(){return t.querySelector(b)},k=function(e,t){return new RegExp(" "+t+" ").test(" "+e.className+" ")},C=function(e,t){k(e,t)||(e.className+=" "+t)},A=function(e,t){var n=" "+e.className.replace(/[\t\r\n]/g," ")+" ";if(k(e,t)){for(;n.indexOf(" "+t+" ")>=0;)n=n.replace(" "+t+" "," ");e.className=n.replace(/^\s+|\s+$/g,"")}},T=function(e){var n=t.createElement("div");return n.appendChild(t.createTextNode(e)),n.innerHTML},E=function(e){e.style.opacity="",e.style.display="block"},q=function(e){if(e&&!e.length)return E(e);for(var t=0;t0?setTimeout(o,t):e.style.display="none"};o()},L=function(n){if("function"==typeof MouseEvent){var o=new MouseEvent("click",{view:e,bubbles:!1,cancelable:!0});n.dispatchEvent(o)}else if(t.createEvent){var r=t.createEvent("MouseEvents");r.initEvent("click",!1,!1),n.dispatchEvent(r)}else t.createEventObject?n.fireEvent("onclick"):"function"==typeof n.onclick&&n.onclick()},z=function(t){"function"==typeof t.stopPropagation?(t.stopPropagation(),t.preventDefault()):e.event&&e.event.hasOwnProperty("cancelBubble")&&(e.event.cancelBubble=!0)};e.sweetAlertInitialize=function(){var e='
',n=t.createElement("div");for(n.innerHTML=e;n.firstChild;)t.body.appendChild(n.firstChild)},e.sweetAlert=e.swal=function(){var e=arguments;if(null!==S())o.apply(this,e);else var t=setInterval(function(){null!==S()&&(clearInterval(t),o.apply(this,e))},100)},e.sweetAlert.setDefaults=e.swal.setDefaults=function(e){if(!e)throw new Error("userParams is required");if("object"!=typeof e)throw new Error("userParams has to be a object");i(h,e)},e.sweetAlert.close=e.swal.close=function(){var o=S();H(x(),5),H(o,5),A(o,"showSweetAlert"),C(o,"hideSweetAlert"),A(o,"visible");var r=o.querySelector(".icon.success");A(r,"animate"),A(r.querySelector(".tip"),"animateSuccessTip"),A(r.querySelector(".long"),"animateSuccessLong");var a=o.querySelector(".icon.error");A(a,"animateErrorIcon"),A(a.querySelector(".x-mark"),"animateXMark");var i=o.querySelector(".icon.warning");A(i,"pulseWarning"),A(i.querySelector(".body"),"pulseWarningIns"),A(i.querySelector(".dot"),"pulseWarningIns"),e.onkeydown=y,t.onclick=d,p&&p.focus(),v=n,clearTimeout(o.timeout)}}(window,document);
--------------------------------------------------------------------------------
/static/js/jquery.js:
--------------------------------------------------------------------------------
1 | /*! jQuery v1.7 jquery.com | jquery.org/license */
2 | (function(a,b){function cA(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cx(a){if(!cm[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cn||(cn=c.createElement("iframe"),cn.frameBorder=cn.width=cn.height=0),b.appendChild(cn);if(!co||!cn.createElement)co=(cn.contentWindow||cn.contentDocument).document,co.write((c.compatMode==="CSS1Compat"?"":"")+""),co.close();d=co.createElement(a),co.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cn)}cm[a]=e}return cm[a]}function cw(a,b){var c={};f.each(cs.concat.apply([],cs.slice(0,b)),function(){c[this]=a});return c}function cv(){ct=b}function cu(){setTimeout(cv,0);return ct=f.now()}function cl(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ck(){try{return new a.XMLHttpRequest}catch(b){}}function ce(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bB(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function br(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bi,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bq(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bp(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bp)}function bp(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bo(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bn(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bm(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(){return!0}function M(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.add(a);return this},eq:function(a){return 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(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return a!=null&&m.test(a)&&!isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;ca ",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,unknownElems:!!a.getElementsByTagName("nav").length,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",enctype:!!c.createElement("form").enctype,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.lastChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-999px",top:"-999px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;f(function(){var a,b,d,e,g,h,i=1,j="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",l="visibility:hidden;border:0;",n="style='"+j+"border:5px solid #000;padding:0;'",p=""+"";m=c.getElementsByTagName("body")[0];!m||(a=c.createElement("div"),a.style.cssText=l+"width:0;height:0;position:static;top:0;margin-top:"+i+"px",m.insertBefore(a,m.firstChild),o=c.createElement("div"),o.style.cssText=j+l,o.innerHTML=p,a.appendChild(o),b=o.firstChild,d=b.firstChild,g=b.nextSibling.firstChild.firstChild,h={doesNotAddBorder:d.offsetTop!==5,doesAddBorderForTableAndCells:g.offsetTop===5},d.style.position="fixed",d.style.top="20px",h.fixedPosition=d.offsetTop===20||d.offsetTop===15,d.style.position=d.style.top="",b.style.overflow="hidden",b.style.position="relative",h.subtractsBorderForOverflowNotVisible=d.offsetTop===-5,h.doesNotIncludeMarginInBodyOffset=m.offsetTop!==i,m.removeChild(a),o=a=null,f.extend(k,h))}),o.innerHTML="",n.removeChild(o),o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[f.expando]:a[f.expando]&&f.expando,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[f.expando]=n=++f.uuid:n=f.expando),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[f.expando]:f.expando;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)?b=b:b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" "));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];if(!arguments.length){if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}return b}e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.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,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!a||j===3||j===8||j===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g},removeAttr:function(a,b){var c,d,e,g,h=0;if(a.nodeType===1){d=(b||"").split(p),g=d.length;for(;h=0}})});var z=/\.(.*)$/,A=/^(?:textarea|input|select)$/i,B=/\./g,C=/ /g,D=/[^\w\s.|`]/g,E=/^([^\.]*)?(?:\.(.+))?$/,F=/\bhover(\.\S+)?/,G=/^key/,H=/^(?:mouse|contextmenu)|click/,I=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,J=function(a){var b=I.exec(a);b&&
3 | (b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},K=function(a,b){return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||a.id===b[2])&&(!b[3]||b[3].test(a.className))},L=function(a){return f.event.special.hover?a:a.replace(F,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=L(c).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"",(g||!e)&&c.preventDefault();if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,n=null;for(m=e.parentNode;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l=0:t===b&&(t=o[s]=r.quick?K(m,r.quick):f(m).is(s)),t&&q.push(r);q.length&&j.push({elem:m,matches:q})}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),G.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),H.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c ",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML=" ",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="
";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",Z=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,_=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,ba=/<([\w:]+)/,bb=/",""],legend:[1,""," "],thead:[1,""],tr:[2,""],td:[3,""],col:[2,""],area:[1,""," "],_default:[0,"",""]},bk=X(c);bj.optgroup=bj.option,bj.tbody=bj.tfoot=bj.colgroup=bj.caption=bj.thead,bj.th=bj.td,f.support.htmlSerialize||(bj._default=[1,"div","
"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(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){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after"
4 | ,arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Z,""):null;if(typeof a=="string"&&!bd.test(a)&&(f.support.leadingWhitespace||!$.test(a))&&!bj[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(_,"<$1>$2>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bn(a,d),e=bo(a),g=bo(d);for(h=0;e[h];++h)g[h]&&bn(e[h],g[h])}if(b){bm(a,d);if(c){e=bo(a),g=bo(d);for(h=0;e[h];++h)bm(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bc.test(k))k=b.createTextNode(k);else{k=k.replace(_,"<$1>$2>");var l=(ba.exec(k)||["",""])[1].toLowerCase(),m=bj[l]||bj._default,n=m[0],o=b.createElement("div");b===c?bk.appendChild(o):X(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=bb.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&$.test(k)&&o.insertBefore(b.createTextNode($.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bt.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bs,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bs.test(g)?g.replace(bs,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bB(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bC=function(a,c){var d,e,g;c=c.replace(bu,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bD=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bv.test(f)&&bw.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bB=bC||bD,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bF=/%20/g,bG=/\[\]$/,bH=/\r?\n/g,bI=/#.*$/,bJ=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bK=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bL=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bM=/^(?:GET|HEAD)$/,bN=/^\/\//,bO=/\?/,bP=/