From f4d3307769ab04bf45a7b36d038610965557da22 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Fri, 16 Jan 2015 17:50:07 +0800 Subject: [PATCH 01/88] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E8=8B=A5=E5=B9=B2?= =?UTF-8?q?=E7=BB=84=E6=97=B6=E9=97=B4=E6=95=B0=E6=8D=AE=E7=9A=84=E4=BA=A4?= =?UTF-8?q?=E9=9B=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/getDay_class_demo/README.md | 66 ++++++++++++++++++++++++++++++++ php/getDay_class_demo/work29.php | 55 ++++++++++++++++++++++++++ 2 files changed, 121 insertions(+) create mode 100644 php/getDay_class_demo/README.md create mode 100644 php/getDay_class_demo/work29.php diff --git a/php/getDay_class_demo/README.md b/php/getDay_class_demo/README.md new file mode 100644 index 0000000..2a20ca6 --- /dev/null +++ b/php/getDay_class_demo/README.md @@ -0,0 +1,66 @@ +###获取 若干组数据的起始结束日期 的交集部分### + +######待完善 判断参数是否为数组 元素是否为空####### + + + +// 声明测试数组 +$arr['credit_1'][] = '2015/01/15'; +$arr['credit_1'][] = '2015/02/15'; + + +$arr['credit_2'][] = '2015/01/02'; +$arr['credit_2'][] = '2015/01/22'; + +$arr['credit_3'][] = '2015/01/20'; +$arr['credit_3'][] = '2015/02/18'; + +$arr['credit_4'][] = '2015/01/05'; +$arr['credit_4'][] = '2015/03/06'; + +/* 打印结果如下 +array(4) { + ["credit_1"]=> + array(2) { + [0]=> + string(10) "2015/01/01" + [1]=> + string(10) "2015/02/16" + } + ["credit_2"]=> + array(2) { + [0]=> + string(10) "2014/12/01" + [1]=> + string(9) "2015/01/8" + } + ["credit_3"]=> + array(2) { + [0]=> + string(10) "2015/01/06" + [1]=> + string(10) "2015/02/18" + } + ["credit_4"]=> + array(2) { + [0]=> + string(10) "2015/01/05" + [1]=> + string(10) "2015/03/06" + } +} +*/ +------------------------------------------------------------------------- +调用 getDay 类 + +$l = new getDay; +echo $l->doGetDay($arr); + +------------------------------------------------------------------------- +显示结果如下 + + +最佳还款日期为: +2015-01-20 +2015-01-21 +2015-01-22 \ No newline at end of file diff --git a/php/getDay_class_demo/work29.php b/php/getDay_class_demo/work29.php new file mode 100644 index 0000000..af65607 --- /dev/null +++ b/php/getDay_class_demo/work29.php @@ -0,0 +1,55 @@ +'; + // 声明变量用于记录 日期数组名称 + $num = 0; + foreach ($array as $value) { + // 拼接数组名称 + $time ='time_'.$num; + // 循环储存 每一组日期对应的具体天数 + $$time = $this->_prDates($value[0],$value[1]); + // 拼接参数字符串 + $param .= '$'.$time.','; + $num++; + } + // 去掉末尾的逗号 + $param = rtrim($param,','); + // 拼接用于执行的代码 + $param = '$over=array_intersect('.$param.');'; + // 执行交集函数代码 产生结果数组为 $over + eval($param); + // 循环拼接提示文字 + foreach($over as $day) + { + $days .= $day.'
'; + } + return $days; + } + // 获取具体日期 + function _prDates($start, $end) { + // 开始日期 + $dt_start = strtotime($start); + // 结束日期 + $dt_end = strtotime($end); + // 将日期存入数组 + do { + $arr[]=date('Y-m-d', $dt_start); + } while (($dt_start += 86400) <= $dt_end); + // 返回结果 + return $arr; + } +} From 96caf0e401450f822e9646b0425c6a09f87d5406 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Fri, 16 Jan 2015 17:53:52 +0800 Subject: [PATCH 02/88] readme.md --- php/getDay_class_demo/README.md | 92 ++++++++++++++++----------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/php/getDay_class_demo/README.md b/php/getDay_class_demo/README.md index 2a20ca6..69fce40 100644 --- a/php/getDay_class_demo/README.md +++ b/php/getDay_class_demo/README.md @@ -4,63 +4,63 @@ -// 声明测试数组 -$arr['credit_1'][] = '2015/01/15'; -$arr['credit_1'][] = '2015/02/15'; +// 声明测试数组
+$arr['credit_1'][] = '2015/01/15';
+$arr['credit_1'][] = '2015/02/15';
-$arr['credit_2'][] = '2015/01/02'; -$arr['credit_2'][] = '2015/01/22'; +$arr['credit_2'][] = '2015/01/02';
+$arr['credit_2'][] = '2015/01/22';
-$arr['credit_3'][] = '2015/01/20'; -$arr['credit_3'][] = '2015/02/18'; +$arr['credit_3'][] = '2015/01/20';
+$arr['credit_3'][] = '2015/02/18';
-$arr['credit_4'][] = '2015/01/05'; -$arr['credit_4'][] = '2015/03/06'; +$arr['credit_4'][] = '2015/01/05';
+$arr['credit_4'][] = '2015/03/06';
-/* 打印结果如下 -array(4) { - ["credit_1"]=> - array(2) { - [0]=> - string(10) "2015/01/01" - [1]=> - string(10) "2015/02/16" - } - ["credit_2"]=> - array(2) { - [0]=> - string(10) "2014/12/01" - [1]=> - string(9) "2015/01/8" - } - ["credit_3"]=> - array(2) { - [0]=> - string(10) "2015/01/06" - [1]=> - string(10) "2015/02/18" - } - ["credit_4"]=> - array(2) { - [0]=> - string(10) "2015/01/05" - [1]=> - string(10) "2015/03/06" - } -} +/* 打印结果如下
+array(4) {
+ ["credit_1"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/01"
+ [1]=>
+ string(10) "2015/02/16"
+ }
+ ["credit_2"]=>
+ array(2) {
+ [0]=>
+ string(10) "2014/12/01"
+ [1]=>
+ string(9) "2015/01/8"
+ }
+ ["credit_3"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/06"
+ [1]=>
+ string(10) "2015/02/18"
+ }
+ ["credit_4"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/05"
+ [1]=>
+ string(10) "2015/03/06"
+ }
+}
*/ ------------------------------------------------------------------------- 调用 getDay 类 -$l = new getDay; -echo $l->doGetDay($arr); +$l = new getDay;
+echo $l->doGetDay($arr);
------------------------------------------------------------------------- 显示结果如下 -最佳还款日期为: -2015-01-20 -2015-01-21 -2015-01-22 \ No newline at end of file +最佳还款日期为:
+2015-01-20
+2015-01-21
+2015-01-22
\ No newline at end of file From 38c3ad1c5f89426f8488dee32f938d9e7f05ba11 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Fri, 16 Jan 2015 17:57:35 +0800 Subject: [PATCH 03/88] update readme.md --- php/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/php/readme.md b/php/readme.md index 86821c3..20a9218 100644 --- a/php/readme.md +++ b/php/readme.md @@ -5,3 +5,4 @@ jiathis_demo -- js的jiathis分享插件demo
qrcode_demo -- php二维码生成插件demo
common_function.php -- 公共函数汇总
pic_switch_demo -- js的图片轮转demo
+getDay_class_demo -- 获取 若干组数据的起始结束日期 的交集部分demo
From b0110b2c1e50b1354aea8f465ded8163a88d611a Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Fri, 16 Jan 2015 18:03:13 +0800 Subject: [PATCH 04/88] readme.md --- php/getDay_class_demo/README.md | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/php/getDay_class_demo/README.md b/php/getDay_class_demo/README.md index 69fce40..4969ff6 100644 --- a/php/getDay_class_demo/README.md +++ b/php/getDay_class_demo/README.md @@ -15,39 +15,30 @@ $arr['credit_2'][] = '2015/01/22';
$arr['credit_3'][] = '2015/01/20';
$arr['credit_3'][] = '2015/02/18';
-$arr['credit_4'][] = '2015/01/05';
-$arr['credit_4'][] = '2015/03/06';
/* 打印结果如下
array(4) {
["credit_1"]=>
array(2) {
[0]=>
- string(10) "2015/01/01"
+ string(10) "2015/01/15"
[1]=>
- string(10) "2015/02/16"
+ string(10) "2015/02/15"
}
["credit_2"]=>
array(2) {
[0]=>
- string(10) "2014/12/01"
+ string(10) "2015/01/02"
[1]=>
- string(9) "2015/01/8"
+ string(9) "2015/01/22"
}
["credit_3"]=>
array(2) {
[0]=>
- string(10) "2015/01/06"
+ string(10) "2015/01/20"
[1]=>
string(10) "2015/02/18"
}
- ["credit_4"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/05"
- [1]=>
- string(10) "2015/03/06"
- }
}
*/ ------------------------------------------------------------------------- From c37ff8a3bb3ef90f152b9c71e02f0df79613a176 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:07:32 +0800 Subject: [PATCH 05/88] php --- php/getDay_class_demo/README.md | 57 -------------------------------- php/getDay_class_demo/work29.php | 55 ------------------------------ 2 files changed, 112 deletions(-) delete mode 100644 php/getDay_class_demo/README.md delete mode 100644 php/getDay_class_demo/work29.php diff --git a/php/getDay_class_demo/README.md b/php/getDay_class_demo/README.md deleted file mode 100644 index 4969ff6..0000000 --- a/php/getDay_class_demo/README.md +++ /dev/null @@ -1,57 +0,0 @@ -###获取 若干组数据的起始结束日期 的交集部分### - -######待完善 判断参数是否为数组 元素是否为空####### - - - -// 声明测试数组
-$arr['credit_1'][] = '2015/01/15';
-$arr['credit_1'][] = '2015/02/15';
- - -$arr['credit_2'][] = '2015/01/02';
-$arr['credit_2'][] = '2015/01/22';
- -$arr['credit_3'][] = '2015/01/20';
-$arr['credit_3'][] = '2015/02/18';
- - -/* 打印结果如下
-array(4) {
- ["credit_1"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/15"
- [1]=>
- string(10) "2015/02/15"
- }
- ["credit_2"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/02"
- [1]=>
- string(9) "2015/01/22"
- }
- ["credit_3"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/20"
- [1]=>
- string(10) "2015/02/18"
- }
-}
-*/ -------------------------------------------------------------------------- -调用 getDay 类 - -$l = new getDay;
-echo $l->doGetDay($arr);
- -------------------------------------------------------------------------- -显示结果如下 - - -最佳还款日期为:
-2015-01-20
-2015-01-21
-2015-01-22
\ No newline at end of file diff --git a/php/getDay_class_demo/work29.php b/php/getDay_class_demo/work29.php deleted file mode 100644 index af65607..0000000 --- a/php/getDay_class_demo/work29.php +++ /dev/null @@ -1,55 +0,0 @@ -'; - // 声明变量用于记录 日期数组名称 - $num = 0; - foreach ($array as $value) { - // 拼接数组名称 - $time ='time_'.$num; - // 循环储存 每一组日期对应的具体天数 - $$time = $this->_prDates($value[0],$value[1]); - // 拼接参数字符串 - $param .= '$'.$time.','; - $num++; - } - // 去掉末尾的逗号 - $param = rtrim($param,','); - // 拼接用于执行的代码 - $param = '$over=array_intersect('.$param.');'; - // 执行交集函数代码 产生结果数组为 $over - eval($param); - // 循环拼接提示文字 - foreach($over as $day) - { - $days .= $day.'
'; - } - return $days; - } - // 获取具体日期 - function _prDates($start, $end) { - // 开始日期 - $dt_start = strtotime($start); - // 结束日期 - $dt_end = strtotime($end); - // 将日期存入数组 - do { - $arr[]=date('Y-m-d', $dt_start); - } while (($dt_start += 86400) <= $dt_end); - // 返回结果 - return $arr; - } -} From b46f48101efffa8f586ccbe7ed164724616408c2 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:10:25 +0800 Subject: [PATCH 06/88] README.md --- php/readme.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/php/readme.md b/php/readme.md index 20a9218..81c3378 100644 --- a/php/readme.md +++ b/php/readme.md @@ -1,8 +1,8 @@ -ckeditor_demo -- 在线编辑器的demo
-excel_demo -- php操作excel-demo(导出excel和读取excel)
-email_demo -- php发送email-demo
-jiathis_demo -- js的jiathis分享插件demo
-qrcode_demo -- php二维码生成插件demo
-common_function.php -- 公共函数汇总
-pic_switch_demo -- js的图片轮转demo
-getDay_class_demo -- 获取 若干组数据的起始结束日期 的交集部分demo
+ckeditor_demo -- 在线编辑器的demo
+excel_demo -- php操作excel-demo(导出excel和读取excel)
+email_demo -- php发送email-demo
+jiathis_demo -- js的jiathis分享插件demo
+qrcode_demo -- php二维码生成插件demo
+common_function.php -- 公共函数汇总
+pic_switch_demo -- js的图片轮转demo
+任务系列之---选择日期中间值 -- 任务系列之---选择日期中间值demo
From 877b2f4e7397e2c907802afadc76a03c09248342 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:38:05 +0800 Subject: [PATCH 07/88] readme.md --- php/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/readme.md b/php/readme.md index 81c3378..1bd9e33 100644 --- a/php/readme.md +++ b/php/readme.md @@ -5,4 +5,4 @@ jiathis_demo -- js的jiathis分享插件demo
qrcode_demo -- php二维码生成插件demo
common_function.php -- 公共函数汇总
pic_switch_demo -- js的图片轮转demo
-任务系列之---选择日期中间值 -- 任务系列之---选择日期中间值demo
+任务系列之-选择日期中间值 -- 任务系列之---选择日期中间值demo
From 2602b92a61888968b4059b415daaf21ba17e8303 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:39:01 +0800 Subject: [PATCH 08/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BCdemo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../getDay_class_demo/README.md" | 57 ++++++++++++++ .../getDay_class_demo/work29.php" | 74 +++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" create mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" new file mode 100644 index 0000000..4969ff6 --- /dev/null +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" @@ -0,0 +1,57 @@ +###获取 若干组数据的起始结束日期 的交集部分### + +######待完善 判断参数是否为数组 元素是否为空####### + + + +// 声明测试数组
+$arr['credit_1'][] = '2015/01/15';
+$arr['credit_1'][] = '2015/02/15';
+ + +$arr['credit_2'][] = '2015/01/02';
+$arr['credit_2'][] = '2015/01/22';
+ +$arr['credit_3'][] = '2015/01/20';
+$arr['credit_3'][] = '2015/02/18';
+ + +/* 打印结果如下
+array(4) {
+ ["credit_1"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/15"
+ [1]=>
+ string(10) "2015/02/15"
+ }
+ ["credit_2"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/02"
+ [1]=>
+ string(9) "2015/01/22"
+ }
+ ["credit_3"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/20"
+ [1]=>
+ string(10) "2015/02/18"
+ }
+}
+*/ +------------------------------------------------------------------------- +调用 getDay 类 + +$l = new getDay;
+echo $l->doGetDay($arr);
+ +------------------------------------------------------------------------- +显示结果如下 + + +最佳还款日期为:
+2015-01-20
+2015-01-21
+2015-01-22
\ No newline at end of file diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" new file mode 100644 index 0000000..a81933c --- /dev/null +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" @@ -0,0 +1,74 @@ +array('start_date'=>'2000-01-01','end_date;=>'2000-01-31'),'date2'=>array(...)) + * + * @return String or Array 返回具体时期提示文字 或者 返回具体日期数组(可选) + * + */ + function doGetDay($array){ + // 用于储存用来执行的参数字符串 + $param = ''; + // 提示文字 + $days = '最佳还款日期为:'.'
'; + // 声明变量用于记录 日期数组名称 + $num = 0; + foreach ($array as $value) + { + // 拼接数组名称 + $time ='time_'.$num; + // 循环储存 每一组日期对应的具体天数 + $$time = $this->_prDates($value[0],$value[1]); + // 拼接参数字符串 + $param .= '$'.$time.','; + $num++; + } + // 去掉末尾的逗号 + $param = rtrim($param,','); + // 拼接用于执行的代码 + $param = '$over=array_intersect('.$param.');'; + // 执行交集函数代码 产生结果数组为 $over + eval($param); + // 循环拼接提示文字 + foreach($over as $day) + { + $days .= $day.'
'; + } + // 返回具体日期 + return $days; + // 返回具体日期数组 (可选) + // return $over + } + /** + * 获取具体日期 + * + * @param $start : 开始时期 + * $end : 结束日期 + */ + function _prDates($start, $end) { + // 开始日期 + $dt_start = strtotime($start); + // 结束日期 + $dt_end = strtotime($end); + // 将日期存入数组 + do + { + $arr[] = date('Y-m-d', $dt_start); + } while(($dt_start += 86400) <= $dt_end); + // 返回结果 + return $arr; + } +} From fc24a1a612504ed892ba15969a0a6df378fe0d43 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:42:02 +0800 Subject: [PATCH 09/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/readme.md b/php/readme.md index 1bd9e33..b897e4e 100644 --- a/php/readme.md +++ b/php/readme.md @@ -5,4 +5,4 @@ jiathis_demo -- js的jiathis分享插件demo
qrcode_demo -- php二维码生成插件demo
common_function.php -- 公共函数汇总
pic_switch_demo -- js的图片轮转demo
-任务系列之-选择日期中间值 -- 任务系列之---选择日期中间值demo
+任务系列之选择日期中间值demo -- 任务系列之选择日期中间值
From a7441b1cc8ae72b7b83da76c995195a62941ce9e Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:46:05 +0800 Subject: [PATCH 10/88] readme.md --- .../readme.md" | 1 + 1 file changed, 1 insertion(+) create mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/readme.md" diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/readme.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/readme.md" new file mode 100644 index 0000000..e083949 --- /dev/null +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/readme.md" @@ -0,0 +1 @@ +#####demo保存在以各自人名命名文件夹内##### \ No newline at end of file From 5c251e5cb8acd80351a66d62bcc30624ca19d6c7 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:50:52 +0800 Subject: [PATCH 11/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BCdemo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../getDay_class_demo/README.md" | 57 -------------- .../getDay_class_demo/work29.php" | 74 ------------------- 2 files changed, 131 deletions(-) delete mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" delete mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" deleted file mode 100644 index 4969ff6..0000000 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/README.md" +++ /dev/null @@ -1,57 +0,0 @@ -###获取 若干组数据的起始结束日期 的交集部分### - -######待完善 判断参数是否为数组 元素是否为空####### - - - -// 声明测试数组
-$arr['credit_1'][] = '2015/01/15';
-$arr['credit_1'][] = '2015/02/15';
- - -$arr['credit_2'][] = '2015/01/02';
-$arr['credit_2'][] = '2015/01/22';
- -$arr['credit_3'][] = '2015/01/20';
-$arr['credit_3'][] = '2015/02/18';
- - -/* 打印结果如下
-array(4) {
- ["credit_1"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/15"
- [1]=>
- string(10) "2015/02/15"
- }
- ["credit_2"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/02"
- [1]=>
- string(9) "2015/01/22"
- }
- ["credit_3"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/20"
- [1]=>
- string(10) "2015/02/18"
- }
-}
-*/ -------------------------------------------------------------------------- -调用 getDay 类 - -$l = new getDay;
-echo $l->doGetDay($arr);
- -------------------------------------------------------------------------- -显示结果如下 - - -最佳还款日期为:
-2015-01-20
-2015-01-21
-2015-01-22
\ No newline at end of file diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" deleted file mode 100644 index a81933c..0000000 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/getDay_class_demo/work29.php" +++ /dev/null @@ -1,74 +0,0 @@ -array('start_date'=>'2000-01-01','end_date;=>'2000-01-31'),'date2'=>array(...)) - * - * @return String or Array 返回具体时期提示文字 或者 返回具体日期数组(可选) - * - */ - function doGetDay($array){ - // 用于储存用来执行的参数字符串 - $param = ''; - // 提示文字 - $days = '最佳还款日期为:'.'
'; - // 声明变量用于记录 日期数组名称 - $num = 0; - foreach ($array as $value) - { - // 拼接数组名称 - $time ='time_'.$num; - // 循环储存 每一组日期对应的具体天数 - $$time = $this->_prDates($value[0],$value[1]); - // 拼接参数字符串 - $param .= '$'.$time.','; - $num++; - } - // 去掉末尾的逗号 - $param = rtrim($param,','); - // 拼接用于执行的代码 - $param = '$over=array_intersect('.$param.');'; - // 执行交集函数代码 产生结果数组为 $over - eval($param); - // 循环拼接提示文字 - foreach($over as $day) - { - $days .= $day.'
'; - } - // 返回具体日期 - return $days; - // 返回具体日期数组 (可选) - // return $over - } - /** - * 获取具体日期 - * - * @param $start : 开始时期 - * $end : 结束日期 - */ - function _prDates($start, $end) { - // 开始日期 - $dt_start = strtotime($start); - // 结束日期 - $dt_end = strtotime($end); - // 将日期存入数组 - do - { - $arr[] = date('Y-m-d', $dt_start); - } while(($dt_start += 86400) <= $dt_end); - // 返回结果 - return $arr; - } -} From a8b7b0966ccdabaaf7a3c55e386b3df31f93eb13 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 11:59:01 +0800 Subject: [PATCH 12/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 57 ++++++++++++++ .../work29.php" | 76 +++++++++++++++++++ 2 files changed, 133 insertions(+) create mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" create mode 100644 "php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" new file mode 100644 index 0000000..4969ff6 --- /dev/null +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" @@ -0,0 +1,57 @@ +###获取 若干组数据的起始结束日期 的交集部分### + +######待完善 判断参数是否为数组 元素是否为空####### + + + +// 声明测试数组
+$arr['credit_1'][] = '2015/01/15';
+$arr['credit_1'][] = '2015/02/15';
+ + +$arr['credit_2'][] = '2015/01/02';
+$arr['credit_2'][] = '2015/01/22';
+ +$arr['credit_3'][] = '2015/01/20';
+$arr['credit_3'][] = '2015/02/18';
+ + +/* 打印结果如下
+array(4) {
+ ["credit_1"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/15"
+ [1]=>
+ string(10) "2015/02/15"
+ }
+ ["credit_2"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/02"
+ [1]=>
+ string(9) "2015/01/22"
+ }
+ ["credit_3"]=>
+ array(2) {
+ [0]=>
+ string(10) "2015/01/20"
+ [1]=>
+ string(10) "2015/02/18"
+ }
+}
+*/ +------------------------------------------------------------------------- +调用 getDay 类 + +$l = new getDay;
+echo $l->doGetDay($arr);
+ +------------------------------------------------------------------------- +显示结果如下 + + +最佳还款日期为:
+2015-01-20
+2015-01-21
+2015-01-22
\ No newline at end of file diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" new file mode 100644 index 0000000..ae5485c --- /dev/null +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" @@ -0,0 +1,76 @@ +array('start_date'=>'2000-01-01','end_date;=>'2000-01-31'),'date2'=>array(...)) + * + * @return String or Array 返回具体时期提示文字 或者 返回具体日期数组(可选) + * + */ + function doGetDay($array) + { + // 用于储存用来执行的参数字符串 + $param = ''; + // 提示文字 + $days = '最佳还款日期为:'.'
'; + // 声明变量用于记录 日期数组名称 + $num = 0; + foreach ($array as $value) + { + // 拼接数组名称 + $time ='time_'.$num; + // 循环储存 每一组日期对应的具体天数 + $$time = $this->_prDates($value[0],$value[1]); + // 拼接参数字符串 + $param .= '$'.$time.','; + $num++; + } + // 去掉末尾的逗号 + $param = rtrim($param,','); + // 拼接用于执行的代码 + $param = '$over=array_intersect('.$param.');'; + // 执行交集函数代码 产生结果数组为 $over + eval($param); + // 循环拼接提示文字 + foreach($over as $day) + { + $days .= $day.'
'; + } + // 返回具体日期 + return $days; + // 返回具体日期数组 (可选) + // return $over + } + /** + * 获取具体日期 + * + * @param $start : 开始时期 + * $end : 结束日期 + */ + function _prDates($start, $end) + { + // 开始日期 + $dt_start = strtotime($start); + // 结束日期 + $dt_end = strtotime($end); + // 将日期存入数组 + do + { + $arr[] = date('Y-m-d', $dt_start); + } while(($dt_start += 86400) <= $dt_end); + // 返回结果 + return $arr; + } +} From f378e5d29b924836d85383303e9b0f5ca4e23d52 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 12:58:50 +0800 Subject: [PATCH 13/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../\346\235\250\351\233\250\345\272\232/work29.php" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" index ae5485c..41bb7ca 100644 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" @@ -10,11 +10,11 @@ */ class getDay { - /** + /** * 获取日期中间值 * * @param $array Array 入参为分组后二维数组格式的具体日期 如: - * array('date1'=>array('start_date'=>'2000-01-01','end_date;=>'2000-01-31'),'date2'=>array(...)) + * array('date1'=>array('start_date'=>'2000-01-01','end_date'=>'2000-01-31'),'date2'=>array(...)) * * @return String or Array 返回具体时期提示文字 或者 返回具体日期数组(可选) * From 0f0fee5cee28ac6dca703f6e213187bc606632e9 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 13:04:00 +0800 Subject: [PATCH 14/88] =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=B8=AD=E9=97=B4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../work29.php" | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" index 41bb7ca..cf0cfc4 100644 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/work29.php" @@ -19,47 +19,47 @@ class getDay * @return String or Array 返回具体时期提示文字 或者 返回具体日期数组(可选) * */ - function doGetDay($array) + function doGetDay($array) { - // 用于储存用来执行的参数字符串 - $param = ''; - // 提示文字 - $days = '最佳还款日期为:'.'
'; - // 声明变量用于记录 日期数组名称 - $num = 0; - foreach ($array as $value) - { - // 拼接数组名称 - $time ='time_'.$num; - // 循环储存 每一组日期对应的具体天数 - $$time = $this->_prDates($value[0],$value[1]); - // 拼接参数字符串 - $param .= '$'.$time.','; - $num++; - } - // 去掉末尾的逗号 - $param = rtrim($param,','); - // 拼接用于执行的代码 - $param = '$over=array_intersect('.$param.');'; - // 执行交集函数代码 产生结果数组为 $over - eval($param); - // 循环拼接提示文字 - foreach($over as $day) - { - $days .= $day.'
'; - } - // 返回具体日期 - return $days; - // 返回具体日期数组 (可选) - // return $over - } - /** + // 用于储存用来执行的参数字符串 + $param = ''; + // 提示文字 + $days = '最佳还款日期为:'.'
'; + // 声明变量用于记录 日期数组名称 + $num = 0; + foreach ($array as $value) + { + // 拼接数组名称 + $time ='time_'.$num; + // 循环储存 每一组日期对应的具体天数 + $$time = $this->_prDates($value[0],$value[1]); + // 拼接参数字符串 + $param .= '$'.$time.','; + $num++; + } + // 去掉末尾的逗号 + $param = rtrim($param,','); + // 拼接用于执行的代码 + $param = '$over=array_intersect('.$param.');'; + // 执行交集函数代码 产生结果数组为 $over + eval($param); + // 循环拼接提示文字 + foreach($over as $day) + { + $days .= $day.'
'; + } + // 返回具体日期 + return $days; + // 返回具体日期数组 (可选) + // return $over + } + /** * 获取具体日期 * * @param $start : 开始时期 * $end : 结束日期 */ - function _prDates($start, $end) + function _prDates($start, $end) { // 开始日期 $dt_start = strtotime($start); @@ -72,5 +72,5 @@ function _prDates($start, $end) } while(($dt_start += 86400) <= $dt_end); // 返回结果 return $arr; - } + } } From 7150e08bca32bcd1f0ce0669a3f951dfd0666dfa Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 13:16:05 +0800 Subject: [PATCH 15/88] readme.md --- .../README.md" | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" index 4969ff6..f6823e0 100644 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" @@ -1,6 +1,6 @@ -###获取 若干组数据的起始结束日期 的交集部分### +###获取若干组数据的起始结束日期的交集部分### -######待完善 判断参数是否为数组 元素是否为空####### +######待完善:判断参数是否为数组 元素是否为空####### @@ -18,30 +18,30 @@ $arr['credit_3'][] = '2015/02/18';
/* 打印结果如下
array(4) {
- ["credit_1"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/15"
- [1]=>
- string(10) "2015/02/15"
- }
- ["credit_2"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/02"
- [1]=>
- string(9) "2015/01/22"
- }
- ["credit_3"]=>
- array(2) {
- [0]=>
- string(10) "2015/01/20"
- [1]=>
- string(10) "2015/02/18"
- }
+  ["credit_1"]=>
+  array(2) {
+   [0]=>
+   string(10) "2015/01/15"
+  [1]=>
+   string(10) "2015/02/15"
+  }
+  ["credit_2"]=>
+  array(2) {
+   [0]=>
+   string(10) "2015/01/02"
+  [1]=>
+   string(9) "2015/01/22"
+  }
+  ["credit_3"]=>
+   array(2) {
+   [0]=>
+   string(10) "2015/01/20"
+  [1]=>
+   string(10) "2015/02/18"
+  }
}
*/ -------------------------------------------------------------------------- + 调用 getDay 类 $l = new getDay;
From 7336f927115ac6d1232a1455e8e7c3f06f6112b6 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 13:17:40 +0800 Subject: [PATCH 16/88] readme.md --- .../\346\235\250\351\233\250\345\272\232/README.md" | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" index f6823e0..9036ed1 100644 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" @@ -14,7 +14,7 @@ $arr['credit_2'][] = '2015/01/22';
$arr['credit_3'][] = '2015/01/20';
$arr['credit_3'][] = '2015/02/18';
- +------------------------------------------------------------------------- /* 打印结果如下
array(4) {
@@ -22,26 +22,26 @@ array(4) {
  array(2) {
   [0]=>
   string(10) "2015/01/15"
-  [1]=>
+   [1]=>
   string(10) "2015/02/15"
  }
  ["credit_2"]=>
  array(2) {
   [0]=>
   string(10) "2015/01/02"
-  [1]=>
+   [1]=>
   string(9) "2015/01/22"
  }
  ["credit_3"]=>
   array(2) {
   [0]=>
   string(10) "2015/01/20"
-  [1]=>
+   [1]=>
   string(10) "2015/02/18"
  }
}
*/ - +------------------------------------------------------------------------- 调用 getDay 类 $l = new getDay;
From 2618ef3b89db9fe69ca22344d86957fc33bd1796 Mon Sep 17 00:00:00 2001 From: yyg2014 <54yyg2008@163.com> Date: Mon, 19 Jan 2015 13:18:16 +0800 Subject: [PATCH 17/88] readme.md --- .../\346\235\250\351\233\250\345\272\232/README.md" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" index 9036ed1..4b0833b 100644 --- "a/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" +++ "b/php/\344\273\273\345\212\241\347\263\273\345\210\227\344\271\213---\351\200\211\346\213\251\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/\346\235\250\351\233\250\345\272\232/README.md" @@ -14,6 +14,7 @@ $arr['credit_2'][] = '2015/01/22';
$arr['credit_3'][] = '2015/01/20';
$arr['credit_3'][] = '2015/02/18';
+ ------------------------------------------------------------------------- /* 打印结果如下
@@ -41,6 +42,7 @@ array(4) {
  }
}
*/ + ------------------------------------------------------------------------- 调用 getDay 类 From 5e3680e240b1110429ffcba41288379f789308fd Mon Sep 17 00:00:00 2001 From: xueyutianlang Date: Mon, 9 Feb 2015 10:50:54 +0800 Subject: [PATCH 18/88] demo --- php/pic_lazyload_demo/js/index.html | 8 + php/pic_lazyload_demo/js/jquery-1.11.0.min.js | 4 + php/pic_lazyload_demo/js/jquery.lazyload.js | 164 ++++++++++++++++++ php/pic_lazyload_demo/js/loading.gif | Bin 0 -> 1093 bytes php/pic_lazyload_demo/lazyload.md | 26 +++ php/pic_lazyload_demo/pic_lazyload.html | 99 +++++++++++ php/pic_lazyload_demo/picture/1.jpg | Bin 0 -> 130006 bytes php/pic_lazyload_demo/picture/2.jpg | Bin 0 -> 81717 bytes php/pic_lazyload_demo/picture/3.jpg | Bin 0 -> 74911 bytes php/pic_lazyload_demo/picture/4.jpg | Bin 0 -> 79012 bytes php/pic_lazyload_demo/picture/5.jpg | Bin 0 -> 67833 bytes php/pic_lazyload_demo/picture/banner.jpg | Bin 0 -> 155236 bytes php/pic_lazyload_demo/picture/logo.jpg | Bin 0 -> 2045 bytes php/pic_lazyload_demo/picture/logo_bck.jpg | Bin 0 -> 633 bytes php/pic_lazyload_demo/picture/nav.jpg | Bin 0 -> 636 bytes php/readme.md | 2 +- 16 files changed, 302 insertions(+), 1 deletion(-) create mode 100755 php/pic_lazyload_demo/js/index.html create mode 100755 php/pic_lazyload_demo/js/jquery-1.11.0.min.js create mode 100755 php/pic_lazyload_demo/js/jquery.lazyload.js create mode 100755 php/pic_lazyload_demo/js/loading.gif create mode 100644 php/pic_lazyload_demo/lazyload.md create mode 100755 php/pic_lazyload_demo/pic_lazyload.html create mode 100755 php/pic_lazyload_demo/picture/1.jpg create mode 100755 php/pic_lazyload_demo/picture/2.jpg create mode 100755 php/pic_lazyload_demo/picture/3.jpg create mode 100755 php/pic_lazyload_demo/picture/4.jpg create mode 100755 php/pic_lazyload_demo/picture/5.jpg create mode 100755 php/pic_lazyload_demo/picture/banner.jpg create mode 100755 php/pic_lazyload_demo/picture/logo.jpg create mode 100755 php/pic_lazyload_demo/picture/logo_bck.jpg create mode 100755 php/pic_lazyload_demo/picture/nav.jpg diff --git a/php/pic_lazyload_demo/js/index.html b/php/pic_lazyload_demo/js/index.html new file mode 100755 index 0000000..e9c15c2 --- /dev/null +++ b/php/pic_lazyload_demo/js/index.html @@ -0,0 +1,8 @@ +复选: + + diff --git a/php/pic_lazyload_demo/js/jquery-1.11.0.min.js b/php/pic_lazyload_demo/js/jquery-1.11.0.min.js new file mode 100755 index 0000000..73f33fb --- /dev/null +++ b/php/pic_lazyload_demo/js/jquery-1.11.0.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:k&&!k.call("\ufeff\xa0")?function(a){return null==a?"":k.call(a)}:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s="sizzle"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A="undefined",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",M=L.replace("w","w#"),N="\\["+K+"*("+L+")"+K+"*(?:([*^$|!~]?=)"+K+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+M+")|)|)"+K+"*\\]",O=":("+L+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+N.replace(3,8)+")*)|.*)\\)|)",P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(O),U=new RegExp("^"+M+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L.replace("w","w*")+")"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=/'|\\/g,ab=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),bb=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||"string"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&"object"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute("id"))?q=p.replace(_,"\\$&"):b.setAttribute("id",q),q="[id='"+q+"'] ",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(",")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute("id")}}}return xb(a.replace(P,"$1"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(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 mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){k()},!1):g.attachEvent&&g.attachEvent("onunload",function(){k()})),c.attributes=gb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML="",a.querySelectorAll("[t^='']").length&&o.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||o.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll(":checked").length||o.push(":checked")}),gb(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&o.push("name"+K+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||o.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),o.push(",.*:")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,"div"),q.call(a,"[s!='']:x"),p.push("!=",O)}),o=o.length&&new RegExp(o.join("|")),p=p.length&&new RegExp(p.join("|")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,"='$1']"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||"").replace(ab,bb),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&w(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error("unsupported pseudo: "+a);return e[s]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,"$1"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||"")||db.error("unsupported lang: "+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(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 sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[" "],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:" "===a[j-2].type?"*":""})).replace(P,"$1"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q="0",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG("*",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+" "];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split("").sort(z).join("")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement("div"))}),gb(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||hb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||hb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute("disabled")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=a.document,A=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,B=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:A.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=z.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return y.find(a);this.length=1,this[0]=d}return this.context=z,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};B.prototype=n.fn,y=n(z);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!n(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.unique(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g,G={};function H(a){var b=G[a]={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G[a]||H(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&n.each(arguments,function(a,c){var d;while((d=n.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){if(a===!0?!--n.readyWait:!n.isReady){if(!z.body)return setTimeout(n.ready);n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(z,[n]),n.fn.trigger&&n(z).trigger("ready").off("ready"))}}});function J(){z.addEventListener?(z.removeEventListener("DOMContentLoaded",K,!1),a.removeEventListener("load",K,!1)):(z.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(z.addEventListener||"load"===event.type||"complete"===z.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===z.readyState)setTimeout(n.ready);else if(z.addEventListener)z.addEventListener("DOMContentLoaded",K,!1),a.addEventListener("load",K,!1);else{z.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&z.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!n.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}J(),n.ready()}}()}return I.promise(b)};var L="undefined",M;for(M in n(l))break;l.ownLast="0"!==M,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c=z.getElementsByTagName("body")[0];c&&(a=z.createElement("div"),a.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",b=z.createElement("div"),c.appendChild(a).appendChild(b),typeof b.style.zoom!==L&&(b.style.cssText="border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1",(l.inlineBlockNeedsLayout=3===b.offsetWidth)&&(c.style.zoom=1)),c.removeChild(a),a=b=null)}),function(){var a=z.createElement("div");if(null==l.deleteExpando){l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}}a=null}(),n.acceptData=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(n.acceptData(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f +}}function S(a,b,c){if(n.acceptData(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d]));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},X=/^(?:checkbox|radio)$/i;!function(){var a=z.createDocumentFragment(),b=z.createElement("div"),c=z.createElement("input");if(b.setAttribute("className","t"),b.innerHTML="
a",l.leadingWhitespace=3===b.firstChild.nodeType,l.tbody=!b.getElementsByTagName("tbody").length,l.htmlSerialize=!!b.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==z.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,a.appendChild(c),l.appendChecked=c.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,a.appendChild(b),b.innerHTML="",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){l.noCloneEvent=!1}),b.cloneNode(!0).click()),null==l.deleteExpando){l.deleteExpando=!0;try{delete b.test}catch(d){l.deleteExpando=!1}}a=b=c=null}(),function(){var b,c,d=z.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),l[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var Y=/^(?:input|select|textarea)$/i,Z=/^key/,$=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,ab=/^([^.]*)(?:\.(.+)|)$/;function bb(){return!0}function cb(){return!1}function db(){try{return z.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof n===L||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=ab.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=ab.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,m,o=[d||z],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||z,3!==d.nodeType&&8!==d.nodeType&&!_.test(p+n.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[n.expando]?b:new n.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),k=n.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!n.isWindow(d)){for(i=k.delegateType||p,_.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||z)&&o.push(l.defaultView||l.parentWindow||a)}m=0;while((h=o[m++])&&!b.isPropagationStopped())b.type=m>1?i:k.bindType||p,f=(n._data(h,"events")||{})[b.type]&&n._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&n.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&n.acceptData(d)&&g&&d[p]&&!n.isWindow(d)){l=d[g],l&&(d[g]=null),n.event.triggered=p;try{d[p]()}catch(r){}n.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((n.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?n(c,this).index(i)>=0:n.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ib=/^\s+/,jb=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,kb=/<([\w:]+)/,lb=/\s*$/g,sb={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:l.htmlSerialize?[0,"",""]:[1,"X
","
"]},tb=eb(z),ub=tb.appendChild(z.createElement("div"));sb.optgroup=sb.option,sb.tbody=sb.tfoot=sb.colgroup=sb.caption=sb.thead,sb.th=sb.td;function vb(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==L?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==L?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,vb(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function wb(a){X.test(a.type)&&(a.defaultChecked=a.checked)}function xb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function yb(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function zb(a){var b=qb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ab(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}function Bb(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Cb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(yb(b).text=a.text,zb(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&X.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}n.extend({clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!hb.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ub.innerHTML=a.outerHTML,ub.removeChild(f=ub.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=vb(f),h=vb(a),g=0;null!=(e=h[g]);++g)d[g]&&Cb(e,d[g]);if(b)if(c)for(h=h||vb(a),d=d||vb(f),g=0;null!=(e=h[g]);g++)Bb(e,d[g]);else Bb(a,f);return d=vb(f,"script"),d.length>0&&Ab(d,!i&&vb(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,m=a.length,o=eb(b),p=[],q=0;m>q;q++)if(f=a[q],f||0===f)if("object"===n.type(f))n.merge(p,f.nodeType?[f]:f);else if(mb.test(f)){h=h||o.appendChild(b.createElement("div")),i=(kb.exec(f)||["",""])[1].toLowerCase(),k=sb[i]||sb._default,h.innerHTML=k[1]+f.replace(jb,"<$1>")+k[2],e=k[0];while(e--)h=h.lastChild;if(!l.leadingWhitespace&&ib.test(f)&&p.push(b.createTextNode(ib.exec(f)[0])),!l.tbody){f="table"!==i||lb.test(f)?""!==k[1]||lb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)n.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}n.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),l.appendChecked||n.grep(vb(p,"input"),wb),q=0;while(f=p[q++])if((!d||-1===n.inArray(f,d))&&(g=n.contains(f.ownerDocument,f),h=vb(o.appendChild(f),"script"),g&&Ab(h),c)){e=0;while(f=h[e++])pb.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.deleteExpando,m=n.event.special;null!=(d=a[h]);h++)if((b||n.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k?delete d[i]:typeof d.removeAttribute!==L?d.removeAttribute(i):d[i]=null,c.push(f))}}}),n.fn.extend({text:function(a){return W(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||z).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(vb(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&Ab(vb(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(vb(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return W(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(gb,""):void 0;if(!("string"!=typeof a||nb.test(a)||!l.htmlSerialize&&hb.test(a)||!l.leadingWhitespace&&ib.test(a)||sb[(kb.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(jb,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(vb(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(vb(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,o=k-1,p=a[0],q=n.isFunction(p);if(q||k>1&&"string"==typeof p&&!l.checkClone&&ob.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(i=n.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=n.map(vb(i,"script"),yb),f=g.length;k>j;j++)d=i,j!==o&&(d=n.clone(d,!0,!0),f&&n.merge(g,vb(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,n.map(g,zb),j=0;f>j;j++)d=g[j],pb.test(d.type||"")&&!n._data(d,"globalEval")&&n.contains(h,d)&&(d.src?n._evalUrl&&n._evalUrl(d.src):n.globalEval((d.text||d.textContent||d.innerHTML||"").replace(rb,"")));i=c=null}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],g=n(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Db,Eb={};function Fb(b,c){var d=n(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:n.css(d[0],"display");return d.detach(),e}function Gb(a){var b=z,c=Eb[a];return c||(c=Fb(a,b),"none"!==c&&c||(Db=(Db||n("";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base new file mode 100755 index 0000000..0ea7d69 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base @@ -0,0 +1,7 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base new file mode 100755 index 0000000..d0e1ac5 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base @@ -0,0 +1,12 @@ +var langList = +[ + {name:'en', charset:'UTF-8'}, + {name:'zh-cn', charset:'gb2312'}, + {name:'zh-tw', charset:'GBK'} +]; + +var skinList = +[ + {name:'default', charset:'gb2312'}, + {name:'whyGreen', charset:'gb2312'} +]; \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/My97DatePicker.htm b/javascript/date_time_picker/My97DatePicker/My97DatePicker.htm new file mode 100755 index 0000000..a0815fb --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/My97DatePicker.htm @@ -0,0 +1,42 @@ + + + +My97DatePicker + + + + + + + + \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/WdatePicker.js b/javascript/date_time_picker/My97DatePicker/WdatePicker.js new file mode 100755 index 0000000..147b1b8 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/WdatePicker.js @@ -0,0 +1,34 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $dp,WdatePicker;(function(){var $={ + +$wdate:true, +$crossFrame:false, +$dpPath:"", +position:{}, +lang:"auto", +skin:"default", +dateFmt:"yyyy-MM-dd", +realDateFmt:"yyyy-MM-dd", +realTimeFmt:"HH:mm:ss", +realFullFmt:"%Date %Time", +minDate:"1900-01-01 00:00:00", +maxDate:"2099-12-31 23:59:59", +startDate:"", +alwaysUseStartDate:false, +yearOffset:1911, +isShowWeek:false, +highLineWeekDay:true, +isShowClear:true, +isShowToday:true, +isShowOthers:true, +readOnly:false, +errDealMode:0, +autoPickDate:null, +qsEnabled:true, + +disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=S;var V=window,N="document",H="documentElement",A="getElementsByTagName",T,_,R,G,Z;switch(navigator.appName){case"Microsoft Internet Explorer":R=true;break;case"Opera":Z=true;break;default:G=true;break}T=V;if($.$crossFrame){try{while(T.parent[N]!=T[N]&&T.parent[N][A]("frameset").length==0)T=T.parent}catch(P){}}_=J();if($.$wdate)K(_+"skin/WdatePicker.css");var L;if(T.$dp){try{L=(T.$dp.$("MY")=="lIkEmY97")}catch(P){L=P.number==-2146823277?true:false}}if(!T.$dp||L){$dp=Q({ff:G,ie:R,opera:Z,el:null,win:V,status:L?2:0,defMinDate:$.minDate,defMaxDate:$.maxDate,$:function(_){try{this.win[N]}catch($){return"lIkEmY97"}return(typeof _=="string")?this.win[N].getElementById(_):_},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var A in $){if(this.dt[A]===undefined)this.errMsg="invalid property:"+A;this.dt[A]+=$[A]}if(this.dt.refresh())return this.dt}return""},show:function(){if(this.dd)this.dd.style.display="block"},hide:function(){if(this.dd)this.dd.style.display="none"},attachEvent:C});if(!L)X(T,function(){S(null,true)})}else $dp=T.$dp;if(!V[N].docMD){C(V[N],"onmousedown",B);V[N].docMD=true}if(!T[N].docMD){C(T[N],"onmousedown",B);T[N].docMD=true}C(V,"onunload",function(){$dp.hide()});function Q(_){T.$dp=T.$dp||{};for(var $ in _)T.$dp[$]=_[$];return T.$dp}function C(A,$,_){if(R)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function J(){var _,A,$=document.getElementsByTagName("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function D(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=T.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var _="",D="",A="",H,G,B="";for(H=0;H_.scrollLeft||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function B(_){src=_?(_.srcElement||_.target):null;if($dp&&$dp.dd&&$dp.dd.style.display=="block"&&src!=$dp.el){var A=$dp.el,B=$dp.cal,$=$dp.el[$dp.elProp];if($!=null){$dp.$w.hideSel();if($!=""&&!$dp.readOnly)B.date.loadFromDate(B.splitDate($,B.dateFmt));if($==""||(B.isDate(B.date)&&B.isTime(B.date)&&B.checkValid(B.date))){B.mark(true);if($!="")B.update();else B.setRealValue("");$dp.hide()}else B.mark(false)}else $dp.hide()}}var O=[];function W(){$dp.status=2;F()}function F(){if(O.length>0){var $=O.shift();$.el={innerHTML:""};$.eCont=$dp.$($.eCont);$.autoPickDate=true;$.qsEnabled=false;I($)}}function S(C,$){$dp.win=V;C=C||{};if($){$dp.status=1;I({el:{innerHTML:""}},true)}else if(C.eCont){O.push(C);if($dp.status==2)F()}else{if($dp.status==0)$dp.status=1;if($dp.status!=2)return;var B,A=_();if(A){B=A.srcElement||A.target;A.cancelBubble=true}C.el=$dp.$(C.el||B);if(!C.el||C.el&&C.el.disabled||(C.el==$dp.el&&$dp.dd.style.display!="none"&&$dp.dd.style.left!="-1970px"))return;I(C)}function _(){if(G){func=_.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function I(G,A){for(var F in $)if(F.substring(0,1)!="$")$dp[F]=$[F];for(F in G)if($dp[F]===undefined)$dp.errMsg="invalid property:"+F;else $dp[F]=G[F];$dp.elProp=$dp.el&&$dp.el.nodeName=="INPUT"?"value":"innerHTML";if($dp.el[$dp.elProp]==null)return;if($dp.lang=="auto")$dp.lang=R?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang)){if($dp.dd&&!$dp.eCont)T[N].body.removeChild($dp.dd);if($.$dpPath=="")D(_);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/calendar.js b/javascript/date_time_picker/My97DatePicker/calendar.js new file mode 100755 index 0000000..0ea7d69 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/calendar.js @@ -0,0 +1,7 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/config.js b/javascript/date_time_picker/My97DatePicker/config.js new file mode 100755 index 0000000..d0e1ac5 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/config.js @@ -0,0 +1,12 @@ +var langList = +[ + {name:'en', charset:'UTF-8'}, + {name:'zh-cn', charset:'gb2312'}, + {name:'zh-tw', charset:'GBK'} +]; + +var skinList = +[ + {name:'default', charset:'gb2312'}, + {name:'whyGreen', charset:'gb2312'} +]; \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/entries b/javascript/date_time_picker/My97DatePicker/lang/.svn/entries new file mode 100644 index 0000000..ea00354 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/entries @@ -0,0 +1,130 @@ +10 + +dir +8665 +svn://192.168.9.224:3709/script/My97DatePicker/lang +svn://192.168.9.224:3709 + + + +2013-12-16T08:51:29.937790Z +5730 +hanshaobo + + + + + + + + + + + + + + +6cf78c6e-06f2-4fb7-8a74-f578e921f8ef + +zh-tw.js +file + + + + +2015-03-12T07:35:02.456531Z +a4c09728c9524193c5b8f48aee304076 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +382 + +zh-cn.js +file + + + + +2015-03-12T07:35:02.456531Z +e0f9bf5fcb5bc718d31b976504448855 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +383 + +en.js +file + + + + +2015-03-12T07:35:02.456531Z +572900ed3f7553d0ebbc3067cfa8f57a +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +415 + diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base new file mode 100755 index 0000000..6923a38 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Invalid date or the date out of range,redo or not?", +aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], +aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], +clearStr: "Clear", +todayStr: "Today", +okStr: "OK", +updateStr: "OK", +timeStr: "Time", +quickStr: "Quick Selection", +err_1: 'MinDate Cannot be bigger than MaxDate!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base new file mode 100755 index 0000000..76ce7df --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "ȷ", +updateStr: "ȷ", +timeStr: "ʱ", +quickStr: "ѡ", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base new file mode 100755 index 0000000..bd979f7 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶,ҪN?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "_", +updateStr: "_", +timeStr: "rg", +quickStr: "x", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/en.js b/javascript/date_time_picker/My97DatePicker/lang/en.js new file mode 100755 index 0000000..6923a38 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/en.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Invalid date or the date out of range,redo or not?", +aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], +aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], +clearStr: "Clear", +todayStr: "Today", +okStr: "OK", +updateStr: "OK", +timeStr: "Time", +quickStr: "Quick Selection", +err_1: 'MinDate Cannot be bigger than MaxDate!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/zh-cn.js b/javascript/date_time_picker/My97DatePicker/lang/zh-cn.js new file mode 100755 index 0000000..76ce7df --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/zh-cn.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "ȷ", +updateStr: "ȷ", +timeStr: "ʱ", +quickStr: "ѡ", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/zh-tw.js b/javascript/date_time_picker/My97DatePicker/lang/zh-tw.js new file mode 100755 index 0000000..bd979f7 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/lang/zh-tw.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶,ҪN?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "_", +updateStr: "_", +timeStr: "rg", +quickStr: "x", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/.svn/entries new file mode 100644 index 0000000..15d4ba5 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/.svn/entries @@ -0,0 +1,102 @@ +10 + +dir +8665 +svn://192.168.9.224:3709/script/My97DatePicker/skin +svn://192.168.9.224:3709 + + + +2013-12-16T08:51:29.937790Z +5730 +hanshaobo + + + + + + + + + + + + + + +6cf78c6e-06f2-4fb7-8a74-f578e921f8ef + +default +dir + +whyGreen +dir + +WdatePicker.css +file + + + + +2015-03-12T07:35:02.468531Z +53a188a6659467c66b46ded6f8e0484a +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +158 + +datePicker.gif +file + + + + +2015-03-12T07:35:02.468531Z +d6bfd22c5e8cdb08165658ea9cc40be7 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +1043 + diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base new file mode 100755 index 0000000..74a75e8 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base @@ -0,0 +1,10 @@ +.Wdate{ + border:#999 1px solid; + height:20px; + background:#fff url(datePicker.gif) no-repeat right; +} + +.WdateFmtErr{ + font-weight:bold; + color:red; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..d6bf40c9f290161c87230787a1056d977d36c821 GIT binary patch literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/WdatePicker.css b/javascript/date_time_picker/My97DatePicker/skin/WdatePicker.css new file mode 100755 index 0000000..74a75e8 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/WdatePicker.css @@ -0,0 +1,10 @@ +.Wdate{ + border:#999 1px solid; + height:20px; + background:#fff url(datePicker.gif) no-repeat right; +} + +.WdateFmtErr{ + font-weight:bold; + color:red; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/datePicker.gif b/javascript/date_time_picker/My97DatePicker/skin/datePicker.gif new file mode 100755 index 0000000000000000000000000000000000000000..d6bf40c9f290161c87230787a1056d977d36c821 GIT binary patch literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries new file mode 100644 index 0000000..d04e579 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries @@ -0,0 +1,96 @@ +10 + +dir +8665 +svn://192.168.9.224:3709/script/My97DatePicker/skin/default +svn://192.168.9.224:3709 + + + +2013-12-16T08:51:29.937790Z +5730 +hanshaobo + + + + + + + + + + + + + + +6cf78c6e-06f2-4fb7-8a74-f578e921f8ef + +img.gif +file + + + + +2015-03-12T07:35:02.460531Z +ed11a2b68742ccf22763d3e8f2454516 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +1578 + +datepicker.css +file + + + + +2015-03-12T07:35:02.460531Z +1650f9d02772e45f12be2c2347b86c92 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +4560 + diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base new file mode 100755 index 0000000..d516e22 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base @@ -0,0 +1,237 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:default + * Ƥ:My97 + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#FFFFFF; + border:#bbb 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } + +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + margin-bottom:2px; + padding:1px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + font-weight:bold; + color:blue; + border:#ccc 1px solid; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#ccc 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; + +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ +/* TR */ +.WdateDiv .MTitle{ + background-color:#BDEBEE; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + border:#c5d9e8 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#FF2F2F; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + color:#000; + background-color:#C0EBEF; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A9E4E9; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#6A6AFF; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} + +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + float:left; + margin-top:3px; + margin-right:30px; +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + border:#ccc 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + border:#ccc 1px solid; + padding:2px; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..053205d8201a3a59fb9870c6a4743fc3efd305fa GIT binary patch literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/datepicker.css b/javascript/date_time_picker/My97DatePicker/skin/default/datepicker.css new file mode 100755 index 0000000..d516e22 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/default/datepicker.css @@ -0,0 +1,237 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:default + * Ƥ:My97 + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#FFFFFF; + border:#bbb 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } + +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + margin-bottom:2px; + padding:1px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + font-weight:bold; + color:blue; + border:#ccc 1px solid; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#ccc 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; + +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ +/* TR */ +.WdateDiv .MTitle{ + background-color:#BDEBEE; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + border:#c5d9e8 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#FF2F2F; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + color:#000; + background-color:#C0EBEF; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A9E4E9; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#6A6AFF; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} + +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + float:left; + margin-top:3px; + margin-right:30px; +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + border:#ccc 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + border:#ccc 1px solid; + padding:2px; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/img.gif b/javascript/date_time_picker/My97DatePicker/skin/default/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..053205d8201a3a59fb9870c6a4743fc3efd305fa GIT binary patch literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries new file mode 100644 index 0000000..e761a1d --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries @@ -0,0 +1,130 @@ +10 + +dir +8665 +svn://192.168.9.224:3709/script/My97DatePicker/skin/whyGreen +svn://192.168.9.224:3709 + + + +2013-12-16T08:51:29.937790Z +5730 +hanshaobo + + + + + + + + + + + + + + +6cf78c6e-06f2-4fb7-8a74-f578e921f8ef + +bg.jpg +file + + + + +2015-03-12T07:35:02.464531Z +21ec42adb09c1d8a4c09248f8325e53c +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +307 + +img.gif +file + + + + +2015-03-12T07:35:02.464531Z +d0570f39ca217fbf02f461ef0096d657 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +1679 + +datepicker.css +file + + + + +2015-03-12T07:35:02.464531Z +29f06da41ea571e7248086c4ae5b2948 +2013-12-16T08:51:29.937790Z +5730 +hanshaobo +has-props + + + + + + + + + + + + + + + + + + + + +4763 + diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..75516a6380f3a18d246e090d47999698e4193d6c GIT binary patch literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base new file mode 100755 index 0000000..2052c87 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base @@ -0,0 +1,243 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:whyGreen + * Ƥ:why + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#fff; + border:#C5E1E4 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + padding:1px; + border:#c5d9e8 1px solid; + background:url(bg.jpg); + margin-bottom:2px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + color:#034c50; + background-color:transparent; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + border:#939393 1px solid; + font-weight:bold; + color:#034c50; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#A3C6C8 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; + color:#11777C; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ + /* TR */ +.WdateDiv .MTitle{ + color:#13777e; + background-color:#bdebee; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + color:#13777e; + background-color:#edfbfb; + border:#BEE9F0 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#74d2d9 ; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#ab1e1e; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + background-color:#74d2d9; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A7E2E7; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#0099CC; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; + color:#497F7F; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + color:#333; + border:#61CAD0 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + padding:2px; + border:#38B1B9 1px solid; + background-color:#CFEBEE; + color:#08575B; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..4003f20fb1197edf0433ff99759cb6399d0f99f9 GIT binary patch literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/bg.jpg b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/bg.jpg new file mode 100755 index 0000000000000000000000000000000000000000..75516a6380f3a18d246e090d47999698e4193d6c GIT binary patch literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I literal 0 HcmV?d00001 diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/datepicker.css b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/datepicker.css new file mode 100755 index 0000000..2052c87 --- /dev/null +++ b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/datepicker.css @@ -0,0 +1,243 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:whyGreen + * Ƥ:why + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#fff; + border:#C5E1E4 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + padding:1px; + border:#c5d9e8 1px solid; + background:url(bg.jpg); + margin-bottom:2px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + color:#034c50; + background-color:transparent; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + border:#939393 1px solid; + font-weight:bold; + color:#034c50; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#A3C6C8 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; + color:#11777C; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ + /* TR */ +.WdateDiv .MTitle{ + color:#13777e; + background-color:#bdebee; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + color:#13777e; + background-color:#edfbfb; + border:#BEE9F0 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#74d2d9 ; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#ab1e1e; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + background-color:#74d2d9; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A7E2E7; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#0099CC; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; + color:#497F7F; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + color:#333; + border:#61CAD0 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + padding:2px; + border:#38B1B9 1px solid; + background-color:#CFEBEE; + color:#08575B; +} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/img.gif b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..4003f20fb1197edf0433ff99759cb6399d0f99f9 GIT binary patch literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 literal 0 HcmV?d00001 From c6c4c781f1da3fee9dd69e5c7564b2d32a065207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 17:52:46 +0800 Subject: [PATCH 58/88] Update readme.md --- javascript/date_time_picker/readme.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 27e659c..6b0388e 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,2 +1,13 @@ ### 时间控件说明 +#注意事项 : +1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 +2.My97DatePicker.htm是必须文件,不可删除 +3.各目录及文件的用途: +4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 +5.config.js 语言和皮肤配置文件,无需引入 +6.calendar.js 日期库主文件,无需引入 +7.My97DatePicker.htm 临时页面文件,不可删除 +8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件 +9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包 +10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式 From ef46a15cad930da9113f9beff0c8d89387549295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 17:55:18 +0800 Subject: [PATCH 59/88] Update readme.md --- javascript/date_time_picker/readme.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 6b0388e..e6078f5 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,13 +1,13 @@ ### 时间控件说明 #注意事项 : -1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 -2.My97DatePicker.htm是必须文件,不可删除 -3.各目录及文件的用途: -4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 -5.config.js 语言和皮肤配置文件,无需引入 -6.calendar.js 日期库主文件,无需引入 -7.My97DatePicker.htm 临时页面文件,不可删除 -8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件 -9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包 -10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式 +1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名. +2.My97DatePicker.htm是必须文件,不可删除. +3.各目录及文件的用途. +4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名. +5.config.js 语言和皮肤配置文件,无需引入. +6.calendar.js 日期库主文件,无需引入. +7.My97DatePicker.htm 临时页面文件,不可删除. +8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件. +9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包. +10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式. From 9b6e1f8fe531c076632b1e11b7cb938d7b14a41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 17:59:08 +0800 Subject: [PATCH 60/88] Update readme.md --- javascript/date_time_picker/readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index e6078f5..b9f594a 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,9 +1,9 @@ ### 时间控件说明 #注意事项 : -1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名. -2.My97DatePicker.htm是必须文件,不可删除. -3.各目录及文件的用途. +1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名。 +2.My97DatePicker.htm是必须文件,不可删除。 +3.各目录及文件的用途。 4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名. 5.config.js 语言和皮肤配置文件,无需引入. 6.calendar.js 日期库主文件,无需引入. From 37e09104c804852c32c4393e84dc65d499bff09b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:00:09 +0800 Subject: [PATCH 61/88] Update readme.md --- javascript/date_time_picker/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index b9f594a..a2e4ba1 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -9,5 +9,5 @@ 6.calendar.js 日期库主文件,无需引入. 7.My97DatePicker.htm 临时页面文件,不可删除. 8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件. -9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包. +9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包。 10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式. From 9548e7945f544e34368c241999f4a7c844a0137e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:00:53 +0800 Subject: [PATCH 62/88] Update readme.md --- javascript/date_time_picker/readme.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index a2e4ba1..a6c38b6 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,13 +1,14 @@ ### 时间控件说明 -#注意事项 : -1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名。 -2.My97DatePicker.htm是必须文件,不可删除。 -3.各目录及文件的用途。 -4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名. -5.config.js 语言和皮肤配置文件,无需引入. -6.calendar.js 日期库主文件,无需引入. -7.My97DatePicker.htm 临时页面文件,不可删除. -8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件. -9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包。 -10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式. +#注意事项: +1.若想提前载入图片,则可使用threshold;threshold默认值为0(最优值);若想通过事件触发加载图片,可对event 进行设置。若两者同时设定则默认出现为预加载(占位)图片,点击对应图片才可实现加载。 + +2.默认图片实现效果,下载完成之后,直接显示出来。用户体验并不好,可设置effect属性,来控制显示图片的效果;例如 +effect:'fadeIn'.effect(特效),值有show(直接显示),fadeIn(淡入),slideDown(下拉)等,常用fadeI. +3.需要延时加载的img标签中src属性的值,必须与placeholder参数的值一样,否则会导致延时加载异常,当前屏不能得到真实图片路径,只显示占位图片; +5.lazyload与ajax冲突, 因此在使用了comment-ajax的页面, lazyload是失效的, 建议择其一而使用. +6.如果使用智能手机的话,经常去应用网站下载应用,他们通常使用一个横着的容器,放一些手机截图。使用 container 属性,能很轻松在容器中实现缓冲加载。首先,我们需要用css定义这个容器,然后用这个插件进行加载。 +``` +#container { height: 600px; overflow: scroll; } +``` +container: $("#container");container,值为某容器.lazyload默认在拉动浏览器滚动条时生效,这个参数可以让你在拉动某DIV的滚动条时依次加载其中的图片 From b52a90f71eb4f2391cd447b5a557035356ee53ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:02:33 +0800 Subject: [PATCH 63/88] Update readme.md --- javascript/date_time_picker/readme.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index a6c38b6..3e07dd3 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,14 +1,15 @@ ### 时间控件说明 -#注意事项: -1.若想提前载入图片,则可使用threshold;threshold默认值为0(最优值);若想通过事件触发加载图片,可对event 进行设置。若两者同时设定则默认出现为预加载(占位)图片,点击对应图片才可实现加载。 - -2.默认图片实现效果,下载完成之后,直接显示出来。用户体验并不好,可设置effect属性,来控制显示图片的效果;例如 -effect:'fadeIn'.effect(特效),值有show(直接显示),fadeIn(淡入),slideDown(下拉)等,常用fadeI. -3.需要延时加载的img标签中src属性的值,必须与placeholder参数的值一样,否则会导致延时加载异常,当前屏不能得到真实图片路径,只显示占位图片; -5.lazyload与ajax冲突, 因此在使用了comment-ajax的页面, lazyload是失效的, 建议择其一而使用. -6.如果使用智能手机的话,经常去应用网站下载应用,他们通常使用一个横着的容器,放一些手机截图。使用 container 属性,能很轻松在容器中实现缓冲加载。首先,我们需要用css定义这个容器,然后用这个插件进行加载。 -``` -#container { height: 600px; overflow: scroll; } -``` -container: $("#container");container,值为某容器.lazyload默认在拉动浏览器滚动条时生效,这个参数可以让你在拉动某DIV的滚动条时依次加载其中的图片 +.####注意事项: +1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 + +2.My97DatePicker.htm是必须文件,不可删除 + +3.各目录及文件的用途: +4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 +5.config.js 语言和皮肤配置文件,无需引入 +6.calendar.js 日期库主文件,无需引入 +7.My97DatePicker.htm 临时页面文件,不可删除 +8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件 +9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包 +10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式 From 45e79d2d7eda038e991e8d7f4206fb025c2e1aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:03:24 +0800 Subject: [PATCH 64/88] Update readme.md --- javascript/date_time_picker/readme.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 3e07dd3..f047dc8 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,15 +1,22 @@ ### 时间控件说明 -.####注意事项: +####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 2.My97DatePicker.htm是必须文件,不可删除 3.各目录及文件的用途: + 4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 + 5.config.js 语言和皮肤配置文件,无需引入 + 6.calendar.js 日期库主文件,无需引入 + 7.My97DatePicker.htm 临时页面文件,不可删除 + 8.目录lang 存放语言文件,你可以根据需要清理或添加语言文件 + 9.目录skin 存放皮肤的相关文件,你可以根据需要清理或添加皮肤文件包 + 10.当WdatePicker.js里的属性:$wdate=true时,在input里加上class="Wdate"就会在选择框右边出现日期图标,如果您不喜欢这个样式,可以把class="Wdate"去掉,另外也可以通过修改skin目录下的WdatePicker.css文件来修改样式 From d29435d83cf4642cc6ce4797f756ba405218a1f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:03:55 +0800 Subject: [PATCH 65/88] Update readme.md --- javascript/date_time_picker/readme.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index f047dc8..46c6582 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -2,9 +2,7 @@ ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 - 2.My97DatePicker.htm是必须文件,不可删除 - 3.各目录及文件的用途: 4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 From 516a4bdb3d636958b8e4fe9c4c9122062dd85aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Mon, 7 Sep 2015 18:04:32 +0800 Subject: [PATCH 66/88] Update readme.md --- javascript/date_time_picker/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 46c6582..f047dc8 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -2,7 +2,9 @@ ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 + 2.My97DatePicker.htm是必须文件,不可删除 + 3.各目录及文件的用途: 4.WdatePicker.js 配置文件,在调用的地方仅需使用该文件,可多个共存,以xx_WdatePicker.js方式命名 From 9bc66dae6921ae771da6434d94a88bb46df2552e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 09:48:51 +0800 Subject: [PATCH 67/88] Update readme.md --- javascript/date_time_picker/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index f047dc8..a186d9a 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,4 +1,6 @@ ### 时间控件说明 +####调用方式 +将这些文件down下来放在同一目录下,然后执行index.html,并能看到效果. ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 From 114fa99cbddbb120fb7a4acffa823c86c2fa6df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 09:53:20 +0800 Subject: [PATCH 68/88] Update readme.md --- javascript/date_time_picker/readme.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index a186d9a..7a15674 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,7 +1,11 @@ ### 时间控件说明 ####调用方式 将这些文件down下来放在同一目录下,然后执行index.html,并能看到效果. - +####调用实例说明 +1.首先写入input框: +//对账开始时间input框,设置默认值 + +2.触发js事件 ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 From fe0975ed191d3b787b94809dc11c6c9dbd0b5c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 09:54:06 +0800 Subject: [PATCH 69/88] Update readme.md --- javascript/date_time_picker/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 7a15674..350b332 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -3,8 +3,10 @@ 将这些文件down下来放在同一目录下,然后执行index.html,并能看到效果. ####调用实例说明 1.首先写入input框: +```php //对账开始时间input框,设置默认值 +``` 2.触发js事件 ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 From ce174bda595826f6390e517d19715c638911fec8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 09:55:14 +0800 Subject: [PATCH 70/88] Update readme.md --- javascript/date_time_picker/readme.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 350b332..72cbbc1 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -8,6 +8,25 @@ ``` 2.触发js事件 +```php +/* +*单击对账开始文本框弹出时间控件 +*起始时间:自定(可从文本框中获取) +*终止时间:当天 +*/ +$("#starttime").click(function(){ + var start = $('#starttime').val(); + var obj = { + el:'starttime', //所要显示日期的input框的id值 + isShowClear:false, //是否显示清空按钮 + readOnly:true, //输入框只读 + minDate:start, //日期控件的最小日期 + maxDate:now, //日期控件的最大日期 + dateFmt: 'yyyy-MM-dd' //默认设置,日期控件的显示格式,如2013-04-04 + }; + WdatePicker(obj); //调用控件 +}); +``` ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 From b53c1578e94931447ab74a47ed76fdfbfad373e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 09:57:53 +0800 Subject: [PATCH 71/88] Update readme.md --- javascript/date_time_picker/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 72cbbc1..9e81d6f 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -4,7 +4,7 @@ ####调用实例说明 1.首先写入input框: ```php -//对账开始时间input框,设置默认值 +//对账开始时间input框,设置默认值(默认值可以通过php程序传递过来) ``` 2.触发js事件 @@ -27,6 +27,7 @@ $("#starttime").click(function(){ WdatePicker(obj); //调用控件 }); ``` +3.经过js事件后,input框的value值被改变 ####注意事项: 1.My97DatePicker目录是一个整体,不可破坏里面的目录结构,也不可对里面的文件改名,可以改目录名 From e2b0a87a09d1b99bd97dd13fca2061f873453845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 10:00:26 +0800 Subject: [PATCH 72/88] Update readme.md --- javascript/date_time_picker/readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 9e81d6f..4e5a799 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,4 +1,7 @@ ### 时间控件说明 +index.html-----入口文件 +My97DatePicker/------日期插件,目录里的东西无需改动 +jquery-1.7.1.min.js-----所需加载的jquery文件 ####调用方式 将这些文件down下来放在同一目录下,然后执行index.html,并能看到效果. ####调用实例说明 From fcd874d2c796bcb71a586dbf0fbd3bd60765f7d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=81=E4=BA=9A=E8=B6=85?= <512383711@qq.com> Date: Tue, 8 Sep 2015 10:01:09 +0800 Subject: [PATCH 73/88] Update readme.md --- javascript/date_time_picker/readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/javascript/date_time_picker/readme.md b/javascript/date_time_picker/readme.md index 4e5a799..b4474da 100644 --- a/javascript/date_time_picker/readme.md +++ b/javascript/date_time_picker/readme.md @@ -1,6 +1,9 @@ ### 时间控件说明 +####文件说明 index.html-----入口文件 + My97DatePicker/------日期插件,目录里的东西无需改动 + jquery-1.7.1.min.js-----所需加载的jquery文件 ####调用方式 将这些文件down下来放在同一目录下,然后执行index.html,并能看到效果. From f55d9605f0bdf73c9b0e6c9ba460b91e7dd13c86 Mon Sep 17 00:00:00 2001 From: ningyachao <512383711@qq.com> Date: Tue, 8 Sep 2015 15:21:06 +0800 Subject: [PATCH 74/88] =?UTF-8?q?=E5=8E=BB=E6=8E=89.svn/=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- C++/README.md | 0 C/README.md | 0 QA/README.md | 0 README.md | 0 UI/README.md | 0 apache/readme.md | 0 apache/virtual_host/httpd.conf | 0 apache/virtual_host/readme.md | 0 dataStructure/README.md | 0 javascript/Validate Form.js | 0 javascript/ajax_cross_domain/readme.md | 0 javascript/common.js | 0 javascript/count_down/readme.md | 0 .../My97DatePicker/.svn/entries | 170 ------------------ .../prop-base/My97DatePicker.htm.svn-base | 5 - .../.svn/prop-base/WdatePicker.js.svn-base | 5 - .../.svn/prop-base/calendar.js.svn-base | 5 - .../.svn/prop-base/config.js.svn-base | 5 - .../text-base/My97DatePicker.htm.svn-base | 42 ----- .../.svn/text-base/WdatePicker.js.svn-base | 34 ---- .../.svn/text-base/calendar.js.svn-base | 7 - .../.svn/text-base/config.js.svn-base | 12 -- javascript/no_limit_category/readme.md | 0 javascript/pic_lazyload_demo/.lazyload.md.swp | Bin javascript/pic_lazyload_demo/readme.md | 0 javascript/popup_layer/readme.md | 0 javascript/readme.md | 0 javascript/three_level_select/readme.md | 0 mysql/my.cnf | 0 ...2\347\253\213\347\224\250\346\210\267.php" | 0 mysql/readme.md | 0 php/CodeIgniter_2.1.4/.gitignore | 0 php/CodeIgniter_2.1.4/.travis.yml | 0 php/CodeIgniter_2.1.4/application/.htaccess | 0 .../application/cache/.htaccess | 0 .../application/cache/index.html | 0 .../application/config/autoload.php | 0 .../application/config/config.php | 0 .../application/config/constants.php | 0 .../application/config/database.php | 0 .../application/config/doctypes.php | 0 .../application/config/foreign_chars.php | 0 .../application/config/hooks.php | 0 .../application/config/index.html | 0 .../application/config/migration.php | 0 .../application/config/mimes.php | 0 .../application/config/profiler.php | 0 .../application/config/routes.php | 0 .../application/config/smileys.php | 0 .../application/config/user_agents.php | 0 .../application/controllers/index.html | 0 .../application/controllers/welcome.php | 0 .../application/core/index.html | 0 .../application/errors/error_404.php | 0 .../application/errors/error_db.php | 0 .../application/errors/error_general.php | 0 .../application/errors/error_php.php | 0 .../application/errors/index.html | 0 .../application/helpers/index.html | 0 .../application/hooks/index.html | 0 php/CodeIgniter_2.1.4/application/index.html | 0 .../application/language/english/index.html | 0 .../application/libraries/index.html | 0 .../application/logs/index.html | 0 .../application/models/index.html | 0 .../application/third_party/index.html | 0 .../application/views/index.html | 0 .../application/views/welcome_message.php | 0 php/CodeIgniter_2.1.4/index.php | 0 php/CodeIgniter_2.1.4/license.txt | 0 php/CodeIgniter_2.1.4/system/.htaccess | 0 php/CodeIgniter_2.1.4/system/core/Common.php | 0 .../system/core/Controller.php | 0 php/CodeIgniter_2.1.4/system/core/Loader.php | 0 php/CodeIgniter_2.1.4/system/core/Utf8.php | 0 php/CodeIgniter_2.1.4/system/core/index.html | 0 .../system/database/DB_active_rec.php | 0 .../system/database/DB_cache.php | 0 .../system/database/DB_driver.php | 0 .../system/database/DB_forge.php | 0 .../system/database/DB_result.php | 0 .../system/database/DB_utility.php | 0 .../database/drivers/cubrid/cubrid_driver.php | 0 .../database/drivers/cubrid/cubrid_forge.php | 0 .../database/drivers/cubrid/cubrid_result.php | 0 .../drivers/cubrid/cubrid_utility.php | 0 .../system/database/drivers/cubrid/index.html | 0 .../system/database/drivers/index.html | 0 .../system/database/drivers/mssql/index.html | 0 .../database/drivers/mssql/mssql_driver.php | 0 .../database/drivers/mssql/mssql_forge.php | 0 .../database/drivers/mssql/mssql_result.php | 0 .../database/drivers/mssql/mssql_utility.php | 0 .../system/database/drivers/mysql/index.html | 0 .../database/drivers/mysql/mysql_driver.php | 0 .../database/drivers/mysql/mysql_forge.php | 0 .../database/drivers/mysql/mysql_result.php | 0 .../database/drivers/mysql/mysql_utility.php | 0 .../system/database/drivers/mysqli/index.html | 0 .../database/drivers/mysqli/mysqli_driver.php | 0 .../database/drivers/mysqli/mysqli_forge.php | 0 .../database/drivers/mysqli/mysqli_result.php | 0 .../drivers/mysqli/mysqli_utility.php | 0 .../system/database/drivers/oci8/index.html | 0 .../database/drivers/oci8/oci8_driver.php | 0 .../database/drivers/oci8/oci8_forge.php | 0 .../database/drivers/oci8/oci8_result.php | 0 .../database/drivers/oci8/oci8_utility.php | 0 .../system/database/drivers/odbc/index.html | 0 .../database/drivers/odbc/odbc_driver.php | 0 .../database/drivers/odbc/odbc_forge.php | 0 .../database/drivers/odbc/odbc_result.php | 0 .../database/drivers/odbc/odbc_utility.php | 0 .../system/database/drivers/pdo/index.html | 0 .../database/drivers/pdo/pdo_driver.php | 0 .../system/database/drivers/pdo/pdo_forge.php | 0 .../database/drivers/pdo/pdo_result.php | 0 .../database/drivers/pdo/pdo_utility.php | 0 .../database/drivers/postgre/index.html | 0 .../drivers/postgre/postgre_driver.php | 0 .../drivers/postgre/postgre_forge.php | 0 .../drivers/postgre/postgre_result.php | 0 .../drivers/postgre/postgre_utility.php | 0 .../system/database/drivers/sqlite/index.html | 0 .../database/drivers/sqlite/sqlite_driver.php | 0 .../database/drivers/sqlite/sqlite_forge.php | 0 .../database/drivers/sqlite/sqlite_result.php | 0 .../drivers/sqlite/sqlite_utility.php | 0 .../system/database/drivers/sqlsrv/index.html | 0 .../database/drivers/sqlsrv/sqlsrv_driver.php | 0 .../database/drivers/sqlsrv/sqlsrv_forge.php | 0 .../database/drivers/sqlsrv/sqlsrv_result.php | 0 .../drivers/sqlsrv/sqlsrv_utility.php | 0 .../system/database/index.html | 0 php/CodeIgniter_2.1.4/system/fonts/index.html | 0 php/CodeIgniter_2.1.4/system/fonts/texb.ttf | Bin .../system/helpers/array_helper.php | 0 .../system/helpers/captcha_helper.php | 0 .../system/helpers/cookie_helper.php | 0 .../system/helpers/date_helper.php | 0 .../system/helpers/directory_helper.php | 0 .../system/helpers/download_helper.php | 0 .../system/helpers/email_helper.php | 0 .../system/helpers/file_helper.php | 0 .../system/helpers/form_helper.php | 0 .../system/helpers/html_helper.php | 0 .../system/helpers/index.html | 0 .../system/helpers/inflector_helper.php | 0 .../system/helpers/language_helper.php | 0 .../system/helpers/number_helper.php | 0 .../system/helpers/path_helper.php | 0 .../system/helpers/security_helper.php | 0 .../system/helpers/smiley_helper.php | 0 .../system/helpers/string_helper.php | 0 .../system/helpers/text_helper.php | 0 .../system/helpers/typography_helper.php | 0 .../system/helpers/url_helper.php | 0 .../system/helpers/xml_helper.php | 0 php/CodeIgniter_2.1.4/system/index.html | 0 .../system/language/english/calendar_lang.php | 0 .../system/language/english/date_lang.php | 0 .../system/language/english/db_lang.php | 0 .../system/language/english/email_lang.php | 0 .../language/english/form_validation_lang.php | 0 .../system/language/english/ftp_lang.php | 0 .../system/language/english/imglib_lang.php | 0 .../system/language/english/index.html | 0 .../language/english/migration_lang.php | 0 .../system/language/english/number_lang.php | 0 .../system/language/english/profiler_lang.php | 0 .../language/english/unit_test_lang.php | 0 .../system/language/english/upload_lang.php | 0 .../system/language/index.html | 0 .../system/libraries/Cache/Cache.php | 0 .../libraries/Cache/drivers/Cache_apc.php | 0 .../libraries/Cache/drivers/Cache_dummy.php | 0 .../libraries/Cache/drivers/Cache_file.php | 0 .../Cache/drivers/Cache_memcached.php | 0 .../system/libraries/Calendar.php | 0 .../system/libraries/Cart.php | 0 .../system/libraries/Driver.php | 0 .../system/libraries/Email.php | 0 .../system/libraries/Encrypt.php | 0 .../system/libraries/Form_validation.php | 0 .../system/libraries/Ftp.php | 0 .../system/libraries/Image_lib.php | 0 .../system/libraries/Javascript.php | 0 .../system/libraries/Log.php | 0 .../system/libraries/Migration.php | 0 .../system/libraries/Pagination.php | 0 .../system/libraries/Parser.php | 0 .../system/libraries/Profiler.php | 0 .../system/libraries/Session.php | 0 .../system/libraries/Sha1.php | 0 .../system/libraries/Table.php | 0 .../system/libraries/Trackback.php | 0 .../system/libraries/Typography.php | 0 .../system/libraries/Unit_test.php | 0 .../system/libraries/Upload.php | 0 .../system/libraries/User_agent.php | 0 .../system/libraries/Xmlrpc.php | 0 .../system/libraries/Xmlrpcs.php | 0 .../system/libraries/Zip.php | 0 .../system/libraries/index.html | 0 .../system/libraries/javascript/Jquery.php | 0 .../user_guide/changelog.html | 0 .../user_guide/database/active_record.html | 0 .../user_guide/database/caching.html | 0 .../user_guide/database/call_function.html | 0 .../user_guide/database/configuration.html | 0 .../user_guide/database/connecting.html | 0 .../user_guide/database/examples.html | 0 .../user_guide/database/fields.html | 0 .../user_guide/database/forge.html | 0 .../user_guide/database/helpers.html | 0 .../user_guide/database/index.html | 0 .../user_guide/database/queries.html | 0 .../user_guide/database/results.html | 0 .../user_guide/database/table_data.html | 0 .../user_guide/database/transactions.html | 0 .../user_guide/database/utilities.html | 0 .../user_guide/doc_style/index.html | 0 .../user_guide/doc_style/template.html | 0 .../user_guide/general/alternative_php.html | 0 .../user_guide/general/ancillary_classes.html | 0 .../user_guide/general/autoloader.html | 0 .../user_guide/general/caching.html | 0 .../user_guide/general/cli.html | 0 .../user_guide/general/common_functions.html | 0 .../user_guide/general/controllers.html | 0 .../user_guide/general/core_classes.html | 0 .../user_guide/general/creating_drivers.html | 0 .../general/creating_libraries.html | 0 .../user_guide/general/credits.html | 0 .../user_guide/general/drivers.html | 0 .../user_guide/general/environments.html | 0 .../user_guide/general/errors.html | 0 .../user_guide/general/helpers.html | 0 .../user_guide/general/hooks.html | 0 .../user_guide/general/libraries.html | 0 .../user_guide/general/managing_apps.html | 0 .../user_guide/general/models.html | 0 .../user_guide/general/profiling.html | 0 .../user_guide/general/quick_reference.html | 0 .../user_guide/general/requirements.html | 0 .../user_guide/general/reserved_names.html | 0 .../user_guide/general/routing.html | 0 .../user_guide/general/security.html | 0 .../user_guide/general/styleguide.html | 0 .../user_guide/general/urls.html | 0 .../user_guide/general/views.html | 0 .../user_guide/helpers/array_helper.html | 0 .../user_guide/helpers/captcha_helper.html | 0 .../user_guide/helpers/cookie_helper.html | 0 .../user_guide/helpers/date_helper.html | 0 .../user_guide/helpers/directory_helper.html | 0 .../user_guide/helpers/download_helper.html | 0 .../user_guide/helpers/email_helper.html | 0 .../user_guide/helpers/file_helper.html | 0 .../user_guide/helpers/form_helper.html | 0 .../user_guide/helpers/html_helper.html | 0 .../user_guide/helpers/inflector_helper.html | 0 .../user_guide/helpers/language_helper.html | 0 .../user_guide/helpers/number_helper.html | 0 .../user_guide/helpers/path_helper.html | 0 .../user_guide/helpers/security_helper.html | 0 .../user_guide/helpers/smiley_helper.html | 0 .../user_guide/helpers/string_helper.html | 0 .../user_guide/helpers/text_helper.html | 0 .../user_guide/helpers/typography_helper.html | 0 .../user_guide/helpers/url_helper.html | 0 .../user_guide/helpers/xml_helper.html | 0 .../user_guide/images/appflowchart.gif | Bin .../user_guide/images/arrow.gif | Bin .../user_guide/images/ci_logo.jpg | Bin .../user_guide/images/ci_logo_flame.jpg | Bin .../user_guide/images/ci_quick_ref.png | Bin .../codeigniter_1.7.1_helper_reference.pdf | Bin .../codeigniter_1.7.1_helper_reference.png | Bin .../codeigniter_1.7.1_library_reference.pdf | Bin .../codeigniter_1.7.1_library_reference.png | Bin .../user_guide/images/file.gif | Bin .../user_guide/images/folder.gif | Bin .../user_guide/images/nav_bg_darker.jpg | Bin .../images/nav_separator_darker.jpg | Bin .../user_guide/images/nav_toggle_darker.jpg | Bin .../user_guide/images/smile.gif | Bin .../user_guide/images/transparent.gif | Bin php/CodeIgniter_2.1.4/user_guide/index.html | 0 .../user_guide/installation/downloads.html | 0 .../user_guide/installation/index.html | 0 .../installation/troubleshooting.html | 0 .../user_guide/installation/upgrade_120.html | 0 .../user_guide/installation/upgrade_130.html | 0 .../user_guide/installation/upgrade_131.html | 0 .../user_guide/installation/upgrade_132.html | 0 .../user_guide/installation/upgrade_133.html | 0 .../user_guide/installation/upgrade_140.html | 0 .../user_guide/installation/upgrade_141.html | 0 .../user_guide/installation/upgrade_150.html | 0 .../user_guide/installation/upgrade_152.html | 0 .../user_guide/installation/upgrade_153.html | 0 .../user_guide/installation/upgrade_154.html | 0 .../user_guide/installation/upgrade_160.html | 0 .../user_guide/installation/upgrade_161.html | 0 .../user_guide/installation/upgrade_162.html | 0 .../user_guide/installation/upgrade_163.html | 0 .../user_guide/installation/upgrade_170.html | 0 .../user_guide/installation/upgrade_171.html | 0 .../user_guide/installation/upgrade_172.html | 0 .../user_guide/installation/upgrade_200.html | 0 .../user_guide/installation/upgrade_201.html | 0 .../user_guide/installation/upgrade_202.html | 0 .../user_guide/installation/upgrade_203.html | 0 .../user_guide/installation/upgrade_210.html | 0 .../user_guide/installation/upgrade_211.html | 0 .../user_guide/installation/upgrade_212.html | 0 .../user_guide/installation/upgrade_213.html | 0 .../user_guide/installation/upgrade_214.html | 0 .../user_guide/installation/upgrade_b11.html | 0 .../user_guide/installation/upgrading.html | 0 .../user_guide/libraries/benchmark.html | 0 .../user_guide/libraries/caching.html | 0 .../user_guide/libraries/calendar.html | 0 .../user_guide/libraries/cart.html | 0 .../user_guide/libraries/config.html | 0 .../user_guide/libraries/email.html | 0 .../user_guide/libraries/encryption.html | 0 .../user_guide/libraries/file_uploading.html | 0 .../user_guide/libraries/form_validation.html | 0 .../user_guide/libraries/ftp.html | 0 .../user_guide/libraries/image_lib.html | 0 .../user_guide/libraries/input.html | 0 .../user_guide/libraries/javascript.html | 0 .../user_guide/libraries/language.html | 0 .../user_guide/libraries/loader.html | 0 .../user_guide/libraries/migration.html | 0 .../user_guide/libraries/output.html | 0 .../user_guide/libraries/pagination.html | 0 .../user_guide/libraries/parser.html | 0 .../user_guide/libraries/security.html | 0 .../user_guide/libraries/sessions.html | 0 .../user_guide/libraries/table.html | 0 .../user_guide/libraries/trackback.html | 0 .../user_guide/libraries/typography.html | 0 .../user_guide/libraries/unit_testing.html | 0 .../user_guide/libraries/uri.html | 0 .../user_guide/libraries/user_agent.html | 0 .../user_guide/libraries/xmlrpc.html | 0 .../user_guide/libraries/zip.html | 0 php/CodeIgniter_2.1.4/user_guide/license.html | 0 .../user_guide/nav/hacks.txt | 0 php/CodeIgniter_2.1.4/user_guide/nav/nav.js | 0 .../user_guide/nav/user_guide_menu.js | 0 .../user_guide/overview/appflow.html | 0 .../user_guide/overview/at_a_glance.html | 0 .../user_guide/overview/cheatsheets.html | 0 .../user_guide/overview/features.html | 0 .../user_guide/overview/getting_started.html | 0 .../user_guide/overview/goals.html | 0 .../user_guide/overview/index.html | 0 .../user_guide/overview/mvc.html | 0 php/CodeIgniter_2.1.4/user_guide/toc.html | 0 .../user_guide/tutorial/conclusion.html | 0 .../tutorial/create_news_items.html | 0 .../user_guide/tutorial/hard_coded_pages.html | 0 .../user_guide/tutorial/index.html | 0 .../user_guide/tutorial/news_section.html | 0 .../user_guide/tutorial/static_pages.html | 0 .../user_guide/userguide.css | 0 .../\350\257\264\346\230\216.doc" | 0 php/ckeditor_demo/ckeditor.php | 0 php/ckeditor_demo/ckeditor/CHANGES.md | 0 php/ckeditor_demo/ckeditor/LICENSE.md | 0 php/ckeditor_demo/ckeditor/README.md | 0 php/ckeditor_demo/ckeditor/adapters/jquery.js | 0 php/ckeditor_demo/ckeditor/build-config.js | 0 php/ckeditor_demo/ckeditor/ckeditor.js | 0 php/ckeditor_demo/ckeditor/config.js | 0 php/ckeditor_demo/ckeditor/contents.css | 0 php/ckeditor_demo/ckeditor/lang/af.js | 0 php/ckeditor_demo/ckeditor/lang/ar.js | 0 php/ckeditor_demo/ckeditor/lang/bg.js | 0 php/ckeditor_demo/ckeditor/lang/bn.js | 0 php/ckeditor_demo/ckeditor/lang/bs.js | 0 php/ckeditor_demo/ckeditor/lang/ca.js | 0 php/ckeditor_demo/ckeditor/lang/cs.js | 0 php/ckeditor_demo/ckeditor/lang/cy.js | 0 php/ckeditor_demo/ckeditor/lang/da.js | 0 php/ckeditor_demo/ckeditor/lang/de.js | 0 php/ckeditor_demo/ckeditor/lang/el.js | 0 php/ckeditor_demo/ckeditor/lang/en-au.js | 0 php/ckeditor_demo/ckeditor/lang/en-ca.js | 0 php/ckeditor_demo/ckeditor/lang/en-gb.js | 0 php/ckeditor_demo/ckeditor/lang/en.js | 0 php/ckeditor_demo/ckeditor/lang/eo.js | 0 php/ckeditor_demo/ckeditor/lang/es.js | 0 php/ckeditor_demo/ckeditor/lang/et.js | 0 php/ckeditor_demo/ckeditor/lang/eu.js | 0 php/ckeditor_demo/ckeditor/lang/fa.js | 0 php/ckeditor_demo/ckeditor/lang/fi.js | 0 php/ckeditor_demo/ckeditor/lang/fo.js | 0 php/ckeditor_demo/ckeditor/lang/fr-ca.js | 0 php/ckeditor_demo/ckeditor/lang/fr.js | 0 php/ckeditor_demo/ckeditor/lang/gl.js | 0 php/ckeditor_demo/ckeditor/lang/gu.js | 0 php/ckeditor_demo/ckeditor/lang/he.js | 0 php/ckeditor_demo/ckeditor/lang/hi.js | 0 php/ckeditor_demo/ckeditor/lang/hr.js | 0 php/ckeditor_demo/ckeditor/lang/hu.js | 0 php/ckeditor_demo/ckeditor/lang/id.js | 0 php/ckeditor_demo/ckeditor/lang/is.js | 0 php/ckeditor_demo/ckeditor/lang/it.js | 0 php/ckeditor_demo/ckeditor/lang/ja.js | 0 php/ckeditor_demo/ckeditor/lang/ka.js | 0 php/ckeditor_demo/ckeditor/lang/km.js | 0 php/ckeditor_demo/ckeditor/lang/ko.js | 0 php/ckeditor_demo/ckeditor/lang/ku.js | 0 php/ckeditor_demo/ckeditor/lang/lt.js | 0 php/ckeditor_demo/ckeditor/lang/lv.js | 0 php/ckeditor_demo/ckeditor/lang/mk.js | 0 php/ckeditor_demo/ckeditor/lang/mn.js | 0 php/ckeditor_demo/ckeditor/lang/ms.js | 0 php/ckeditor_demo/ckeditor/lang/nb.js | 0 php/ckeditor_demo/ckeditor/lang/nl.js | 0 php/ckeditor_demo/ckeditor/lang/no.js | 0 php/ckeditor_demo/ckeditor/lang/pl.js | 0 php/ckeditor_demo/ckeditor/lang/pt-br.js | 0 php/ckeditor_demo/ckeditor/lang/pt.js | 0 php/ckeditor_demo/ckeditor/lang/ro.js | 0 php/ckeditor_demo/ckeditor/lang/ru.js | 0 php/ckeditor_demo/ckeditor/lang/si.js | 0 php/ckeditor_demo/ckeditor/lang/sk.js | 0 php/ckeditor_demo/ckeditor/lang/sl.js | 0 php/ckeditor_demo/ckeditor/lang/sq.js | 0 php/ckeditor_demo/ckeditor/lang/sr-latn.js | 0 php/ckeditor_demo/ckeditor/lang/sr.js | 0 php/ckeditor_demo/ckeditor/lang/sv.js | 0 php/ckeditor_demo/ckeditor/lang/th.js | 0 php/ckeditor_demo/ckeditor/lang/tr.js | 0 php/ckeditor_demo/ckeditor/lang/ug.js | 0 php/ckeditor_demo/ckeditor/lang/uk.js | 0 php/ckeditor_demo/ckeditor/lang/vi.js | 0 php/ckeditor_demo/ckeditor/lang/zh-cn.js | 0 php/ckeditor_demo/ckeditor/lang/zh.js | 0 .../plugins/a11yhelp/dialogs/a11yhelp.js | 0 .../dialogs/lang/_translationstatus.txt | 0 .../plugins/a11yhelp/dialogs/lang/ar.js | 0 .../plugins/a11yhelp/dialogs/lang/bg.js | 0 .../plugins/a11yhelp/dialogs/lang/ca.js | 0 .../plugins/a11yhelp/dialogs/lang/cs.js | 0 .../plugins/a11yhelp/dialogs/lang/cy.js | 0 .../plugins/a11yhelp/dialogs/lang/da.js | 0 .../plugins/a11yhelp/dialogs/lang/de.js | 0 .../plugins/a11yhelp/dialogs/lang/el.js | 0 .../plugins/a11yhelp/dialogs/lang/en.js | 0 .../plugins/a11yhelp/dialogs/lang/eo.js | 0 .../plugins/a11yhelp/dialogs/lang/es.js | 0 .../plugins/a11yhelp/dialogs/lang/et.js | 0 .../plugins/a11yhelp/dialogs/lang/fa.js | 0 .../plugins/a11yhelp/dialogs/lang/fi.js | 0 .../plugins/a11yhelp/dialogs/lang/fr-ca.js | 0 .../plugins/a11yhelp/dialogs/lang/fr.js | 0 .../plugins/a11yhelp/dialogs/lang/gl.js | 0 .../plugins/a11yhelp/dialogs/lang/gu.js | 0 .../plugins/a11yhelp/dialogs/lang/he.js | 0 .../plugins/a11yhelp/dialogs/lang/hi.js | 0 .../plugins/a11yhelp/dialogs/lang/hr.js | 0 .../plugins/a11yhelp/dialogs/lang/hu.js | 0 .../plugins/a11yhelp/dialogs/lang/id.js | 0 .../plugins/a11yhelp/dialogs/lang/it.js | 0 .../plugins/a11yhelp/dialogs/lang/ja.js | 0 .../plugins/a11yhelp/dialogs/lang/km.js | 0 .../plugins/a11yhelp/dialogs/lang/ku.js | 0 .../plugins/a11yhelp/dialogs/lang/lt.js | 0 .../plugins/a11yhelp/dialogs/lang/lv.js | 0 .../plugins/a11yhelp/dialogs/lang/mk.js | 0 .../plugins/a11yhelp/dialogs/lang/mn.js | 0 .../plugins/a11yhelp/dialogs/lang/nb.js | 0 .../plugins/a11yhelp/dialogs/lang/nl.js | 0 .../plugins/a11yhelp/dialogs/lang/no.js | 0 .../plugins/a11yhelp/dialogs/lang/pl.js | 0 .../plugins/a11yhelp/dialogs/lang/pt-br.js | 0 .../plugins/a11yhelp/dialogs/lang/pt.js | 0 .../plugins/a11yhelp/dialogs/lang/ro.js | 0 .../plugins/a11yhelp/dialogs/lang/ru.js | 0 .../plugins/a11yhelp/dialogs/lang/si.js | 0 .../plugins/a11yhelp/dialogs/lang/sk.js | 0 .../plugins/a11yhelp/dialogs/lang/sl.js | 0 .../plugins/a11yhelp/dialogs/lang/sq.js | 0 .../plugins/a11yhelp/dialogs/lang/sr-latn.js | 0 .../plugins/a11yhelp/dialogs/lang/sr.js | 0 .../plugins/a11yhelp/dialogs/lang/sv.js | 0 .../plugins/a11yhelp/dialogs/lang/th.js | 0 .../plugins/a11yhelp/dialogs/lang/tr.js | 0 .../plugins/a11yhelp/dialogs/lang/ug.js | 0 .../plugins/a11yhelp/dialogs/lang/uk.js | 0 .../plugins/a11yhelp/dialogs/lang/vi.js | 0 .../plugins/a11yhelp/dialogs/lang/zh-cn.js | 0 .../ckeditor/plugins/about/dialogs/about.js | 0 .../about/dialogs/hidpi/logo_ckeditor.png | Bin .../plugins/about/dialogs/logo_ckeditor.png | Bin .../plugins/clipboard/dialogs/paste.js | 0 .../colordialog/dialogs/colordialog.js | 0 .../plugins/dialog/dialogDefinition.js | 0 .../ckeditor/plugins/div/dialogs/div.js | 0 .../plugins/fakeobjects/images/spacer.gif | Bin .../ckeditor/plugins/find/dialogs/find.js | 0 .../ckeditor/plugins/flash/dialogs/flash.js | 0 .../plugins/flash/images/placeholder.png | Bin .../ckeditor/plugins/forms/dialogs/button.js | 0 .../plugins/forms/dialogs/checkbox.js | 0 .../ckeditor/plugins/forms/dialogs/form.js | 0 .../plugins/forms/dialogs/hiddenfield.js | 0 .../ckeditor/plugins/forms/dialogs/radio.js | 0 .../ckeditor/plugins/forms/dialogs/select.js | 0 .../plugins/forms/dialogs/textarea.js | 0 .../plugins/forms/dialogs/textfield.js | 0 .../plugins/forms/images/hiddenfield.gif | Bin php/ckeditor_demo/ckeditor/plugins/icons.png | Bin .../ckeditor/plugins/icons_hidpi.png | Bin .../ckeditor/plugins/iframe/dialogs/iframe.js | 0 .../plugins/iframe/images/placeholder.png | Bin .../ckeditor/plugins/image/dialogs/image.js | 0 .../ckeditor/plugins/image/images/noimage.png | Bin .../ckeditor/plugins/link/dialogs/anchor.js | 0 .../ckeditor/plugins/link/dialogs/link.js | 0 .../ckeditor/plugins/link/images/anchor.png | Bin .../plugins/link/images/hidpi/anchor.png | Bin .../plugins/liststyle/dialogs/liststyle.js | 0 .../plugins/magicline/images/hidpi/icon.png | Bin .../plugins/magicline/images/icon.png | Bin .../plugins/pagebreak/images/pagebreak.gif | Bin .../plugins/pastefromword/filter/default.js | 0 .../ckeditor/plugins/preview/preview.html | 0 .../ckeditor/plugins/scayt/LICENSE.md | 0 .../ckeditor/plugins/scayt/README.md | 0 .../ckeditor/plugins/scayt/dialogs/options.js | 0 .../plugins/scayt/dialogs/toolbar.css | 0 .../showblocks/images/block_address.png | Bin .../showblocks/images/block_blockquote.png | Bin .../plugins/showblocks/images/block_div.png | Bin .../plugins/showblocks/images/block_h1.png | Bin .../plugins/showblocks/images/block_h2.png | Bin .../plugins/showblocks/images/block_h3.png | Bin .../plugins/showblocks/images/block_h4.png | Bin .../plugins/showblocks/images/block_h5.png | Bin .../plugins/showblocks/images/block_h6.png | Bin .../plugins/showblocks/images/block_p.png | Bin .../plugins/showblocks/images/block_pre.png | Bin .../ckeditor/plugins/smiley/dialogs/smiley.js | 0 .../plugins/smiley/images/angel_smile.gif | Bin .../plugins/smiley/images/angry_smile.gif | Bin .../plugins/smiley/images/broken_heart.gif | Bin .../plugins/smiley/images/confused_smile.gif | Bin .../plugins/smiley/images/cry_smile.gif | Bin .../plugins/smiley/images/devil_smile.gif | Bin .../smiley/images/embaressed_smile.gif | Bin .../smiley/images/embarrassed_smile.gif | Bin .../plugins/smiley/images/envelope.gif | Bin .../ckeditor/plugins/smiley/images/heart.gif | Bin .../ckeditor/plugins/smiley/images/kiss.gif | Bin .../plugins/smiley/images/lightbulb.gif | Bin .../plugins/smiley/images/omg_smile.gif | Bin .../plugins/smiley/images/regular_smile.gif | Bin .../plugins/smiley/images/sad_smile.gif | Bin .../plugins/smiley/images/shades_smile.gif | Bin .../plugins/smiley/images/teeth_smile.gif | Bin .../plugins/smiley/images/thumbs_down.gif | Bin .../plugins/smiley/images/thumbs_up.gif | Bin .../plugins/smiley/images/tongue_smile.gif | Bin .../plugins/smiley/images/tounge_smile.gif | Bin .../images/whatchutalkingabout_smile.gif | Bin .../plugins/smiley/images/wink_smile.gif | Bin .../dialogs/lang/_translationstatus.txt | 0 .../plugins/specialchar/dialogs/lang/ar.js | 0 .../plugins/specialchar/dialogs/lang/bg.js | 0 .../plugins/specialchar/dialogs/lang/ca.js | 0 .../plugins/specialchar/dialogs/lang/cs.js | 0 .../plugins/specialchar/dialogs/lang/cy.js | 0 .../plugins/specialchar/dialogs/lang/de.js | 0 .../plugins/specialchar/dialogs/lang/el.js | 0 .../plugins/specialchar/dialogs/lang/en.js | 0 .../plugins/specialchar/dialogs/lang/eo.js | 0 .../plugins/specialchar/dialogs/lang/es.js | 0 .../plugins/specialchar/dialogs/lang/et.js | 0 .../plugins/specialchar/dialogs/lang/fa.js | 0 .../plugins/specialchar/dialogs/lang/fi.js | 0 .../plugins/specialchar/dialogs/lang/fr-ca.js | 0 .../plugins/specialchar/dialogs/lang/fr.js | 0 .../plugins/specialchar/dialogs/lang/gl.js | 0 .../plugins/specialchar/dialogs/lang/he.js | 0 .../plugins/specialchar/dialogs/lang/hr.js | 0 .../plugins/specialchar/dialogs/lang/hu.js | 0 .../plugins/specialchar/dialogs/lang/id.js | 0 .../plugins/specialchar/dialogs/lang/it.js | 0 .../plugins/specialchar/dialogs/lang/ja.js | 0 .../plugins/specialchar/dialogs/lang/ku.js | 0 .../plugins/specialchar/dialogs/lang/lv.js | 0 .../plugins/specialchar/dialogs/lang/nb.js | 0 .../plugins/specialchar/dialogs/lang/nl.js | 0 .../plugins/specialchar/dialogs/lang/no.js | 0 .../plugins/specialchar/dialogs/lang/pl.js | 0 .../plugins/specialchar/dialogs/lang/pt-br.js | 0 .../plugins/specialchar/dialogs/lang/pt.js | 0 .../plugins/specialchar/dialogs/lang/ru.js | 0 .../plugins/specialchar/dialogs/lang/si.js | 0 .../plugins/specialchar/dialogs/lang/sk.js | 0 .../plugins/specialchar/dialogs/lang/sl.js | 0 .../plugins/specialchar/dialogs/lang/sq.js | 0 .../plugins/specialchar/dialogs/lang/sv.js | 0 .../plugins/specialchar/dialogs/lang/th.js | 0 .../plugins/specialchar/dialogs/lang/tr.js | 0 .../plugins/specialchar/dialogs/lang/ug.js | 0 .../plugins/specialchar/dialogs/lang/uk.js | 0 .../plugins/specialchar/dialogs/lang/vi.js | 0 .../plugins/specialchar/dialogs/lang/zh-cn.js | 0 .../specialchar/dialogs/specialchar.js | 0 .../ckeditor/plugins/table/dialogs/table.js | 0 .../plugins/tabletools/dialogs/tableCell.js | 0 .../plugins/templates/dialogs/templates.css | 0 .../plugins/templates/dialogs/templates.js | 0 .../plugins/templates/templates/default.js | 0 .../templates/templates/images/template1.gif | Bin .../templates/templates/images/template2.gif | Bin .../templates/templates/images/template3.gif | Bin .../ckeditor/plugins/wsc/LICENSE.md | 0 .../ckeditor/plugins/wsc/README.md | 0 .../ckeditor/plugins/wsc/dialogs/ciframe.html | 0 .../ckeditor/plugins/wsc/dialogs/tmp.html | 0 .../plugins/wsc/dialogs/tmpFrameset.html | 0 .../ckeditor/plugins/wsc/dialogs/wsc.css | 0 .../ckeditor/plugins/wsc/dialogs/wsc.js | 0 .../ckeditor/plugins/wsc/dialogs/wsc_ie.js | 0 php/ckeditor_demo/ckeditor/samples/ajax.html | 0 php/ckeditor_demo/ckeditor/samples/api.html | 0 .../ckeditor/samples/appendto.html | 0 .../samples/assets/inlineall/logo.png | Bin .../assets/outputxhtml/outputxhtml.css | 0 .../ckeditor/samples/assets/posteddata.php | 0 .../ckeditor/samples/assets/sample.css | 0 .../ckeditor/samples/assets/sample.jpg | Bin .../samples/assets/uilanguages/languages.js | 0 .../ckeditor/samples/datafiltering.html | 0 .../ckeditor/samples/divreplace.html | 0 php/ckeditor_demo/ckeditor/samples/index.html | 0 .../ckeditor/samples/inlineall.html | 0 .../ckeditor/samples/inlinebycode.html | 0 .../ckeditor/samples/inlinetextarea.html | 0 .../ckeditor/samples/jquery.html | 0 .../plugins/dialog/assets/my_dialog.js | 0 .../samples/plugins/dialog/dialog.html | 0 .../samples/plugins/enterkey/enterkey.html | 0 .../assets/outputforflash/outputforflash.fla | Bin .../assets/outputforflash/outputforflash.swf | Bin .../assets/outputforflash/swfobject.js | 0 .../plugins/htmlwriter/outputforflash.html | 0 .../plugins/htmlwriter/outputhtml.html | 0 .../samples/plugins/magicline/magicline.html | 0 .../samples/plugins/toolbar/toolbar.html | 0 .../samples/plugins/wysiwygarea/fullpage.html | 0 .../ckeditor/samples/readonly.html | 0 .../ckeditor/samples/replacebyclass.html | 0 .../ckeditor/samples/replacebycode.html | 0 php/ckeditor_demo/ckeditor/samples/sample.css | 0 php/ckeditor_demo/ckeditor/samples/sample.js | 0 .../ckeditor/samples/sample_posteddata.php | 0 .../ckeditor/samples/tabindex.html | 0 .../ckeditor/samples/uicolor.html | 0 .../ckeditor/samples/uilanguages.html | 0 .../ckeditor/samples/xhtmlstyle.html | 0 .../ckeditor/skins/moono/dialog.css | 0 .../ckeditor/skins/moono/dialog_ie.css | 0 .../ckeditor/skins/moono/dialog_ie7.css | 0 .../ckeditor/skins/moono/dialog_ie8.css | 0 .../ckeditor/skins/moono/dialog_iequirks.css | 0 .../ckeditor/skins/moono/dialog_opera.css | 0 .../ckeditor/skins/moono/editor.css | 0 .../ckeditor/skins/moono/editor_gecko.css | 0 .../ckeditor/skins/moono/editor_ie.css | 0 .../ckeditor/skins/moono/editor_ie7.css | 0 .../ckeditor/skins/moono/editor_ie8.css | 0 .../ckeditor/skins/moono/editor_iequirks.css | 0 .../ckeditor/skins/moono/icons.png | Bin .../ckeditor/skins/moono/icons_hidpi.png | Bin .../ckeditor/skins/moono/images/arrow.png | Bin .../ckeditor/skins/moono/images/close.png | Bin .../skins/moono/images/hidpi/close.png | Bin .../skins/moono/images/hidpi/lock-open.png | Bin .../skins/moono/images/hidpi/lock.png | Bin .../skins/moono/images/hidpi/refresh.png | Bin .../ckeditor/skins/moono/images/lock-open.png | Bin .../ckeditor/skins/moono/images/lock.png | Bin .../ckeditor/skins/moono/images/refresh.png | Bin .../ckeditor/skins/moono/readme.md | 0 php/ckeditor_demo/ckeditor/styles.js | 0 php/ckeditor_demo/jquery-1.7.1.min.js | 0 php/common_function.php | 0 php/email_demo/demo.php | 0 php/email_demo/readme.md | 0 php/excel_demo/excel_export/demo_1.php | 0 php/excel_demo/excel_export/readme.md | 0 .../excel_read/Classes/PHPExcel.php | 0 .../Classes/PHPExcel/Autoloader.php | 0 .../PHPExcel/CachedObjectStorage/APC.php | 0 .../CachedObjectStorage/CacheBase.php | 0 .../PHPExcel/CachedObjectStorage/DiscISAM.php | 0 .../PHPExcel/CachedObjectStorage/ICache.php | 0 .../PHPExcel/CachedObjectStorage/Memcache.php | 0 .../PHPExcel/CachedObjectStorage/Memory.php | 0 .../CachedObjectStorage/MemoryGZip.php | 0 .../CachedObjectStorage/MemorySerialized.php | 0 .../PHPExcel/CachedObjectStorage/PHPTemp.php | 0 .../PHPExcel/CachedObjectStorage/Wincache.php | 0 .../PHPExcel/CachedObjectStorageFactory.php | 0 .../Classes/PHPExcel/Calculation.php | 0 .../Classes/PHPExcel/Calculation/Database.php | 0 .../Classes/PHPExcel/Calculation/DateTime.php | 0 .../PHPExcel/Calculation/Engineering.php | 0 .../PHPExcel/Calculation/Exception.php | 0 .../PHPExcel/Calculation/ExceptionHandler.php | 0 .../PHPExcel/Calculation/Financial.php | 0 .../PHPExcel/Calculation/FormulaParser.php | 0 .../PHPExcel/Calculation/FormulaToken.php | 0 .../Classes/PHPExcel/Calculation/Function.php | 0 .../PHPExcel/Calculation/Functions.php | 0 .../Classes/PHPExcel/Calculation/Logical.php | 0 .../PHPExcel/Calculation/LookupRef.php | 0 .../Classes/PHPExcel/Calculation/MathTrig.php | 0 .../PHPExcel/Calculation/Statistical.php | 0 .../Classes/PHPExcel/Calculation/TextData.php | 0 .../PHPExcel/Calculation/functionlist.txt | 0 .../excel_read/Classes/PHPExcel/Cell.php | 0 .../PHPExcel/Cell/AdvancedValueBinder.php | 0 .../Classes/PHPExcel/Cell/DataType.php | 0 .../Classes/PHPExcel/Cell/DataValidation.php | 0 .../PHPExcel/Cell/DefaultValueBinder.php | 0 .../Classes/PHPExcel/Cell/Hyperlink.php | 0 .../Classes/PHPExcel/Cell/IValueBinder.php | 0 .../excel_read/Classes/PHPExcel/Comment.php | 0 .../Classes/PHPExcel/DocumentProperties.php | 0 .../Classes/PHPExcel/DocumentSecurity.php | 0 .../excel_read/Classes/PHPExcel/HashTable.php | 0 .../Classes/PHPExcel/IComparable.php | 0 .../excel_read/Classes/PHPExcel/IOFactory.php | 0 .../Classes/PHPExcel/NamedRange.php | 0 .../Classes/PHPExcel/Reader/CSV.php | 0 .../PHPExcel/Reader/DefaultReadFilter.php | 0 .../Classes/PHPExcel/Reader/Excel2003XML.php | 0 .../Classes/PHPExcel/Reader/Excel2007.php | 0 .../PHPExcel/Reader/Excel2007/Theme.php | 0 .../Classes/PHPExcel/Reader/Excel5.php | 0 .../Classes/PHPExcel/Reader/Excel5/Escher.php | 0 .../Classes/PHPExcel/Reader/Gnumeric.php | 0 .../Classes/PHPExcel/Reader/IReadFilter.php | 0 .../Classes/PHPExcel/Reader/IReader.php | 0 .../Classes/PHPExcel/Reader/OOCalc.php | 0 .../Classes/PHPExcel/Reader/SYLK.php | 0 .../Classes/PHPExcel/ReferenceHelper.php | 0 .../excel_read/Classes/PHPExcel/RichText.php | 0 .../PHPExcel/RichText/ITextElement.php | 0 .../Classes/PHPExcel/RichText/Run.php | 0 .../Classes/PHPExcel/RichText/TextElement.php | 0 .../excel_read/Classes/PHPExcel/Settings.php | 0 .../Classes/PHPExcel/Shared/CodePage.php | 0 .../Classes/PHPExcel/Shared/Date.php | 0 .../Classes/PHPExcel/Shared/Drawing.php | 0 .../Classes/PHPExcel/Shared/Escher.php | 0 .../PHPExcel/Shared/Escher/DgContainer.php | 0 .../Escher/DgContainer/SpgrContainer.php | 0 .../DgContainer/SpgrContainer/SpContainer.php | 0 .../PHPExcel/Shared/Escher/DggContainer.php | 0 .../Escher/DggContainer/BstoreContainer.php | 0 .../DggContainer/BstoreContainer/BSE.php | 0 .../DggContainer/BstoreContainer/BSE/Blip.php | 0 .../Classes/PHPExcel/Shared/Excel5.php | 0 .../Classes/PHPExcel/Shared/File.php | 0 .../Classes/PHPExcel/Shared/Font.php | 0 .../PHPExcel/Shared/JAMA/CHANGELOG.TXT | 0 .../Shared/JAMA/CholeskyDecomposition.php | 0 .../Shared/JAMA/EigenvalueDecomposition.php | 0 .../PHPExcel/Shared/JAMA/LUDecomposition.php | 0 .../Classes/PHPExcel/Shared/JAMA/Matrix.php | 0 .../PHPExcel/Shared/JAMA/QRDecomposition.php | 0 .../JAMA/SingularValueDecomposition.php | 0 .../PHPExcel/Shared/JAMA/docs/docs.php | 0 .../PHPExcel/Shared/JAMA/docs/download.php | 0 .../PHPExcel/Shared/JAMA/docs/example.php | 0 .../Shared/JAMA/docs/includes/credits.php | 0 .../Shared/JAMA/docs/includes/footer.php | 0 .../Shared/JAMA/docs/includes/header.php | 0 .../Shared/JAMA/docs/includes/navbar.php | 0 .../PHPExcel/Shared/JAMA/docs/index.php | 0 .../PHPExcel/Shared/JAMA/docs/package.php | 0 .../PHPExcel/Shared/JAMA/docs/test.php | 0 .../Shared/JAMA/examples/LMQuadTest.php | 0 .../JAMA/examples/LagrangeInterpolation.php | 0 .../JAMA/examples/LagrangeInterpolation2.php | 0 .../JAMA/examples/LevenbergMarquardt.php | 0 .../JAMA/examples/MagicSquareExample.php | 0 .../PHPExcel/Shared/JAMA/examples/Stats.php | 0 .../Shared/JAMA/examples/benchmark.php | 0 .../PHPExcel/Shared/JAMA/examples/polyfit.php | 0 .../PHPExcel/Shared/JAMA/examples/tile.php | 0 .../PHPExcel/Shared/JAMA/tests/TestMatrix.php | 0 .../PHPExcel/Shared/JAMA/utils/Error.php | 0 .../PHPExcel/Shared/JAMA/utils/Maths.php | 0 .../Classes/PHPExcel/Shared/OLE.php | 0 .../Shared/OLE/ChainedBlockStream.php | 0 .../Classes/PHPExcel/Shared/OLE/PPS.php | 0 .../Classes/PHPExcel/Shared/OLE/PPS/File.php | 0 .../Classes/PHPExcel/Shared/OLE/PPS/Root.php | 0 .../Classes/PHPExcel/Shared/OLERead.php | 0 .../PHPExcel/Shared/PCLZip/gnu-lgpl.txt | 0 .../PHPExcel/Shared/PCLZip/pclzip.lib.php | 0 .../Classes/PHPExcel/Shared/PCLZip/readme.txt | 0 .../PHPExcel/Shared/PDF/2dbarcodes.php | 0 .../Classes/PHPExcel/Shared/PDF/CHANGELOG.TXT | 0 .../Classes/PHPExcel/Shared/PDF/LICENSE.TXT | 0 .../Classes/PHPExcel/Shared/PDF/README.TXT | 0 .../Classes/PHPExcel/Shared/PDF/barcodes.php | 0 .../Shared/PDF/cache/chapter_demo_1.txt | 0 .../Shared/PDF/cache/chapter_demo_2.txt | 0 .../Shared/PDF/cache/table_data_demo.txt | 0 .../PHPExcel/Shared/PDF/cache/utf8test.txt | 0 .../PHPExcel/Shared/PDF/config/lang/bra.php | 0 .../PHPExcel/Shared/PDF/config/lang/eng.php | 0 .../PHPExcel/Shared/PDF/config/lang/ger.php | 0 .../PHPExcel/Shared/PDF/config/lang/ita.php | 0 .../Shared/PDF/config/tcpdf_config.php | 0 .../Shared/PDF/config/tcpdf_config_alt.php | 0 .../PHPExcel/Shared/PDF/fonts/README.TXT | 0 .../PHPExcel/Shared/PDF/fonts/ZarBold.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/ZarBold.z | Bin .../PHPExcel/Shared/PDF/fonts/almohanad.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/almohanad.php | 0 .../PHPExcel/Shared/PDF/fonts/almohanad.z | Bin .../fonts/arialunicid0-chinese-simplified.php | 0 .../arialunicid0-chinese-traditional.php | 0 .../PDF/fonts/arialunicid0-japanese.php | 0 .../Shared/PDF/fonts/arialunicid0-korean.php | 0 .../Shared/PDF/fonts/arialunicid0.php | 0 .../PHPExcel/Shared/PDF/fonts/chinese.php | 0 .../PHPExcel/Shared/PDF/fonts/courier.php | 0 .../PDF/fonts/dejavu-fonts-ttf-2.30/AUTHORS | 0 .../PDF/fonts/dejavu-fonts-ttf-2.30/BUGS | 0 .../PDF/fonts/dejavu-fonts-ttf-2.30/LICENSE | 0 .../PDF/fonts/dejavu-fonts-ttf-2.30/NEWS | 0 .../PDF/fonts/dejavu-fonts-ttf-2.30/README | 0 .../fonts/dejavu-fonts-ttf-2.30/langcover.txt | 0 .../fonts/dejavu-fonts-ttf-2.30/status.txt | 0 .../fonts/dejavu-fonts-ttf-2.30/unicover.txt | 0 .../Shared/PDF/fonts/dejavusans.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/dejavusans.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavusans.z | Bin .../Shared/PDF/fonts/dejavusansb.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/dejavusansb.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavusansb.z | Bin .../Shared/PDF/fonts/dejavusansbi.ctg.z | Bin .../Shared/PDF/fonts/dejavusansbi.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavusansbi.z | Bin .../PDF/fonts/dejavusanscondensed.ctg.z | Bin .../Shared/PDF/fonts/dejavusanscondensed.php | 0 .../Shared/PDF/fonts/dejavusanscondensed.z | Bin .../PDF/fonts/dejavusanscondensedb.ctg.z | Bin .../Shared/PDF/fonts/dejavusanscondensedb.php | 0 .../Shared/PDF/fonts/dejavusanscondensedb.z | Bin .../PDF/fonts/dejavusanscondensedbi.ctg.z | Bin .../PDF/fonts/dejavusanscondensedbi.php | 0 .../Shared/PDF/fonts/dejavusanscondensedbi.z | Bin .../PDF/fonts/dejavusanscondensedi.ctg.z | Bin .../Shared/PDF/fonts/dejavusanscondensedi.php | 0 .../Shared/PDF/fonts/dejavusanscondensedi.z | Bin .../Shared/PDF/fonts/dejavusansi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/dejavusansi.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavusansi.z | Bin .../Shared/PDF/fonts/dejavusansmono.ctg.z | Bin .../Shared/PDF/fonts/dejavusansmono.php | 0 .../Shared/PDF/fonts/dejavusansmono.z | Bin .../Shared/PDF/fonts/dejavusansmonob.ctg.z | Bin .../Shared/PDF/fonts/dejavusansmonob.php | 0 .../Shared/PDF/fonts/dejavusansmonob.z | Bin .../Shared/PDF/fonts/dejavusansmonobi.ctg.z | Bin .../Shared/PDF/fonts/dejavusansmonobi.php | 0 .../Shared/PDF/fonts/dejavusansmonobi.z | Bin .../Shared/PDF/fonts/dejavusansmonoi.ctg.z | Bin .../Shared/PDF/fonts/dejavusansmonoi.php | 0 .../Shared/PDF/fonts/dejavusansmonoi.z | Bin .../Shared/PDF/fonts/dejavuserif.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/dejavuserif.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavuserif.z | Bin .../Shared/PDF/fonts/dejavuserifb.ctg.z | Bin .../Shared/PDF/fonts/dejavuserifb.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavuserifb.z | Bin .../Shared/PDF/fonts/dejavuserifbi.ctg.z | Bin .../Shared/PDF/fonts/dejavuserifbi.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavuserifbi.z | Bin .../PDF/fonts/dejavuserifcondensed.ctg.z | Bin .../Shared/PDF/fonts/dejavuserifcondensed.php | 0 .../Shared/PDF/fonts/dejavuserifcondensed.z | Bin .../PDF/fonts/dejavuserifcondensedb.ctg.z | Bin .../PDF/fonts/dejavuserifcondensedb.php | 0 .../Shared/PDF/fonts/dejavuserifcondensedb.z | Bin .../PDF/fonts/dejavuserifcondensedbi.ctg.z | Bin .../PDF/fonts/dejavuserifcondensedbi.php | 0 .../Shared/PDF/fonts/dejavuserifcondensedbi.z | Bin .../PDF/fonts/dejavuserifcondensedi.ctg.z | Bin .../PDF/fonts/dejavuserifcondensedi.php | 0 .../Shared/PDF/fonts/dejavuserifcondensedi.z | Bin .../Shared/PDF/fonts/dejavuserifi.ctg.z | Bin .../Shared/PDF/fonts/dejavuserifi.php | 0 .../PHPExcel/Shared/PDF/fonts/dejavuserifi.z | Bin .../PDF/fonts/freefont-20090104/AUTHORS | 0 .../PDF/fonts/freefont-20090104/COPYING | 0 .../PDF/fonts/freefont-20090104/CREDITS | 0 .../PDF/fonts/freefont-20090104/ChangeLog | 0 .../PDF/fonts/freefont-20090104/INSTALL | 0 .../Shared/PDF/fonts/freefont-20090104/README | 0 .../PHPExcel/Shared/PDF/fonts/freemono.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freemono.php | 0 .../PHPExcel/Shared/PDF/fonts/freemono.z | Bin .../PHPExcel/Shared/PDF/fonts/freemonob.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freemonob.php | 0 .../PHPExcel/Shared/PDF/fonts/freemonob.z | Bin .../Shared/PDF/fonts/freemonobi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freemonobi.php | 0 .../PHPExcel/Shared/PDF/fonts/freemonobi.z | Bin .../PHPExcel/Shared/PDF/fonts/freemonoi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freemonoi.php | 0 .../PHPExcel/Shared/PDF/fonts/freemonoi.z | Bin .../PHPExcel/Shared/PDF/fonts/freesans.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freesans.php | 0 .../PHPExcel/Shared/PDF/fonts/freesans.z | Bin .../PHPExcel/Shared/PDF/fonts/freesansb.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freesansb.php | 0 .../PHPExcel/Shared/PDF/fonts/freesansb.z | Bin .../Shared/PDF/fonts/freesansbi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freesansbi.php | 0 .../PHPExcel/Shared/PDF/fonts/freesansbi.z | Bin .../PHPExcel/Shared/PDF/fonts/freesansi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freesansi.php | 0 .../PHPExcel/Shared/PDF/fonts/freesansi.z | Bin .../PHPExcel/Shared/PDF/fonts/freeserif.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freeserif.php | 0 .../PHPExcel/Shared/PDF/fonts/freeserif.z | Bin .../Shared/PDF/fonts/freeserifb.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freeserifb.php | 0 .../PHPExcel/Shared/PDF/fonts/freeserifb.z | Bin .../Shared/PDF/fonts/freeserifbi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freeserifbi.php | 0 .../PHPExcel/Shared/PDF/fonts/freeserifbi.z | Bin .../Shared/PDF/fonts/freeserifi.ctg.z | Bin .../PHPExcel/Shared/PDF/fonts/freeserifi.php | 0 .../PHPExcel/Shared/PDF/fonts/freeserifi.z | Bin .../PHPExcel/Shared/PDF/fonts/helvetica.php | 0 .../PHPExcel/Shared/PDF/fonts/helveticab.php | 0 .../PHPExcel/Shared/PDF/fonts/helveticabi.php | 0 .../PHPExcel/Shared/PDF/fonts/helveticai.php | 0 .../Shared/PDF/fonts/hysmyeongjostdmedium.php | 0 .../Shared/PDF/fonts/kozgopromedium.php | 0 .../Shared/PDF/fonts/kozminproregular.php | 0 .../Shared/PDF/fonts/msungstdlight.php | 0 .../Shared/PDF/fonts/stsongstdlight.php | 0 .../PHPExcel/Shared/PDF/fonts/symbol.php | 0 .../PHPExcel/Shared/PDF/fonts/times.php | 0 .../PHPExcel/Shared/PDF/fonts/timesb.php | 0 .../PHPExcel/Shared/PDF/fonts/timesbi.php | 0 .../PHPExcel/Shared/PDF/fonts/timesi.php | 0 .../Shared/PDF/fonts/uni2cid_ac15.php | 0 .../Shared/PDF/fonts/uni2cid_ag15.php | 0 .../Shared/PDF/fonts/uni2cid_aj16.php | 0 .../Shared/PDF/fonts/uni2cid_ak12.php | 0 .../Shared/PDF/fonts/utils/README.TXT | 0 .../Shared/PDF/fonts/utils/enc/cp1250.map | 0 .../Shared/PDF/fonts/utils/enc/cp1251.map | 0 .../Shared/PDF/fonts/utils/enc/cp1252.map | 0 .../Shared/PDF/fonts/utils/enc/cp1253.map | 0 .../Shared/PDF/fonts/utils/enc/cp1254.map | 0 .../Shared/PDF/fonts/utils/enc/cp1255.map | 0 .../Shared/PDF/fonts/utils/enc/cp1257.map | 0 .../Shared/PDF/fonts/utils/enc/cp1258.map | 0 .../Shared/PDF/fonts/utils/enc/cp874.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-1.map | 0 .../PDF/fonts/utils/enc/iso-8859-11.map | 0 .../PDF/fonts/utils/enc/iso-8859-15.map | 0 .../PDF/fonts/utils/enc/iso-8859-16.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-2.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-4.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-5.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-7.map | 0 .../Shared/PDF/fonts/utils/enc/iso-8859-9.map | 0 .../Shared/PDF/fonts/utils/enc/koi8-r.map | 0 .../Shared/PDF/fonts/utils/enc/koi8-u.map | 0 .../Shared/PDF/fonts/utils/freetype6.dll | Bin .../PDF/fonts/utils/makeallttffonts.php | 0 .../Shared/PDF/fonts/utils/makefont.php | 0 .../PHPExcel/Shared/PDF/fonts/utils/pfm2afm | Bin .../PDF/fonts/utils/src/pfm2afm-src.tar.gz | Bin .../Shared/PDF/fonts/utils/src/readme.txt | 0 .../PDF/fonts/utils/src/ttf2ufm-src.tar.gz | Bin .../PHPExcel/Shared/PDF/fonts/utils/ttf2ufm | Bin .../PHPExcel/Shared/PDF/fonts/utils/zlib1.dll | Bin .../Shared/PDF/fonts/zapfdingbats.php | 0 .../PHPExcel/Shared/PDF/fonts/zarbold.php | 0 .../PHPExcel/Shared/PDF/htmlcolors.php | 0 .../PHPExcel/Shared/PDF/images/_blank.png | Bin .../PHPExcel/Shared/PDF/images/alpha.png | Bin .../PHPExcel/Shared/PDF/images/bug.eps | 0 .../PHPExcel/Shared/PDF/images/image_demo.jpg | Bin .../Shared/PDF/images/image_with_alpha.png | Bin .../PHPExcel/Shared/PDF/images/img.png | Bin .../Shared/PDF/images/logo_example.gif | Bin .../Shared/PDF/images/logo_example.jpg | Bin .../Shared/PDF/images/logo_example.png | Bin .../PHPExcel/Shared/PDF/images/pelican.ai | 0 .../PHPExcel/Shared/PDF/images/tcpdf_cell.png | Bin .../PHPExcel/Shared/PDF/images/tcpdf_logo.jpg | Bin .../Shared/PDF/images/tcpdf_signature.png | Bin .../PHPExcel/Shared/PDF/images/testsvg.svg | 0 .../PHPExcel/Shared/PDF/images/tiger.ai | 0 .../PHPExcel/Shared/PDF/images/tux.svg | 0 .../Classes/PHPExcel/Shared/PDF/pdf417.php | 0 .../Classes/PHPExcel/Shared/PDF/qrcode.php | 0 .../Classes/PHPExcel/Shared/PDF/tcpdf.crt | 0 .../Classes/PHPExcel/Shared/PDF/tcpdf.fdf | Bin .../Classes/PHPExcel/Shared/PDF/tcpdf.p12 | Bin .../Classes/PHPExcel/Shared/PDF/tcpdf.php | 0 .../PHPExcel/Shared/PDF/unicode_data.php | 0 .../PHPExcel/Shared/PasswordHasher.php | 0 .../Classes/PHPExcel/Shared/String.php | 0 .../Classes/PHPExcel/Shared/XMLWriter.php | 0 .../Classes/PHPExcel/Shared/ZipArchive.php | 0 .../PHPExcel/Shared/ZipStreamWrapper.php | 0 .../PHPExcel/Shared/trend/bestFitClass.php | 0 .../Shared/trend/exponentialBestFitClass.php | 0 .../Shared/trend/linearBestFitClass.php | 0 .../Shared/trend/logarithmicBestFitClass.php | 0 .../Shared/trend/polynomialBestFitClass.php | 0 .../Shared/trend/powerBestFitClass.php | 0 .../PHPExcel/Shared/trend/trendClass.php | 0 .../excel_read/Classes/PHPExcel/Style.php | 0 .../Classes/PHPExcel/Style/Alignment.php | 0 .../Classes/PHPExcel/Style/Border.php | 0 .../Classes/PHPExcel/Style/Borders.php | 0 .../Classes/PHPExcel/Style/Color.php | 0 .../Classes/PHPExcel/Style/Conditional.php | 0 .../Classes/PHPExcel/Style/Fill.php | 0 .../Classes/PHPExcel/Style/Font.php | 0 .../Classes/PHPExcel/Style/NumberFormat.php | 0 .../Classes/PHPExcel/Style/Protection.php | 0 .../excel_read/Classes/PHPExcel/Worksheet.php | 0 .../PHPExcel/Worksheet/BaseDrawing.php | 0 .../PHPExcel/Worksheet/CellIterator.php | 0 .../PHPExcel/Worksheet/ColumnDimension.php | 0 .../Classes/PHPExcel/Worksheet/Drawing.php | 0 .../PHPExcel/Worksheet/Drawing/Shadow.php | 0 .../PHPExcel/Worksheet/HeaderFooter.php | 0 .../Worksheet/HeaderFooterDrawing.php | 0 .../PHPExcel/Worksheet/MemoryDrawing.php | 0 .../PHPExcel/Worksheet/PageMargins.php | 0 .../Classes/PHPExcel/Worksheet/PageSetup.php | 0 .../Classes/PHPExcel/Worksheet/Protection.php | 0 .../Classes/PHPExcel/Worksheet/Row.php | 0 .../PHPExcel/Worksheet/RowDimension.php | 0 .../PHPExcel/Worksheet/RowIterator.php | 0 .../Classes/PHPExcel/Worksheet/SheetView.php | 0 .../Classes/PHPExcel/WorksheetIterator.php | 0 .../Classes/PHPExcel/Writer/CSV.php | 0 .../Classes/PHPExcel/Writer/Excel2007.php | 0 .../PHPExcel/Writer/Excel2007/Comments.php | 0 .../Writer/Excel2007/ContentTypes.php | 0 .../PHPExcel/Writer/Excel2007/DocProps.php | 0 .../PHPExcel/Writer/Excel2007/Drawing.php | 0 .../PHPExcel/Writer/Excel2007/Rels.php | 0 .../PHPExcel/Writer/Excel2007/StringTable.php | 0 .../PHPExcel/Writer/Excel2007/Style.php | 0 .../PHPExcel/Writer/Excel2007/Theme.php | 0 .../PHPExcel/Writer/Excel2007/Workbook.php | 0 .../PHPExcel/Writer/Excel2007/Worksheet.php | 0 .../PHPExcel/Writer/Excel2007/WriterPart.php | 0 .../Classes/PHPExcel/Writer/Excel5.php | 0 .../PHPExcel/Writer/Excel5/BIFFwriter.php | 0 .../Classes/PHPExcel/Writer/Excel5/Escher.php | 0 .../Classes/PHPExcel/Writer/Excel5/Font.php | 0 .../Classes/PHPExcel/Writer/Excel5/Parser.php | 0 .../PHPExcel/Writer/Excel5/Workbook.php | 0 .../PHPExcel/Writer/Excel5/Worksheet.php | 0 .../Classes/PHPExcel/Writer/Excel5/Xf.php | 0 .../Classes/PHPExcel/Writer/HTML.php | 0 .../Classes/PHPExcel/Writer/IWriter.php | 0 .../Classes/PHPExcel/Writer/PDF.php | 0 .../Classes/PHPExcel/locale/cs/config | 0 .../Classes/PHPExcel/locale/cs/functions | 0 .../Classes/PHPExcel/locale/da/config | 0 .../Classes/PHPExcel/locale/da/functions | 0 .../Classes/PHPExcel/locale/de/config | 0 .../Classes/PHPExcel/locale/de/functions | 0 .../Classes/PHPExcel/locale/en/uk/config | 0 .../Classes/PHPExcel/locale/es/config | 0 .../Classes/PHPExcel/locale/es/functions | 0 .../Classes/PHPExcel/locale/fi/config | 0 .../Classes/PHPExcel/locale/fi/functions | 0 .../Classes/PHPExcel/locale/fr/config | 0 .../Classes/PHPExcel/locale/fr/functions | 0 .../Classes/PHPExcel/locale/hu/config | 0 .../Classes/PHPExcel/locale/hu/functions | 0 .../Classes/PHPExcel/locale/it/config | 0 .../Classes/PHPExcel/locale/it/functions | 0 .../Classes/PHPExcel/locale/nl/config | 0 .../Classes/PHPExcel/locale/nl/functions | 0 .../Classes/PHPExcel/locale/no/config | 0 .../Classes/PHPExcel/locale/no/functions | 0 .../Classes/PHPExcel/locale/pl/config | 0 .../Classes/PHPExcel/locale/pl/functions | 0 .../Classes/PHPExcel/locale/pt/br/config | 0 .../Classes/PHPExcel/locale/pt/br/functions | 0 .../Classes/PHPExcel/locale/pt/config | 0 .../Classes/PHPExcel/locale/pt/functions | 0 .../Classes/PHPExcel/locale/ru/config | 0 .../Classes/PHPExcel/locale/ru/functions | 0 .../Classes/PHPExcel/locale/sv/config | 0 .../Classes/PHPExcel/locale/sv/functions | 0 php/excel_demo/excel_read/demo.php | 0 php/excel_demo/excel_read/readme.md | 0 php/excel_demo/readme.php | 0 php/image_captcha/readme.md | 0 php/pic_switch_demo/images/1.jpg | Bin php/pic_switch_demo/images/11.jpg | Bin php/pic_switch_demo/images/2.jpg | Bin php/pic_switch_demo/images/22.jpg | Bin php/pic_switch_demo/images/3.jpg | Bin php/pic_switch_demo/images/33.jpg | Bin php/pic_switch_demo/images/banner_img_07.png | Bin php/pic_switch_demo/images/banner_img_09.png | Bin php/pic_switch_demo/jquery-1.9.0.min.js | 0 php/pic_switch_demo/pic_switch.css | 0 php/pic_switch_demo/pic_switch.html | 0 php/pic_switch_demo/pic_switch.js | 0 .../\350\257\264\346\230\216.txt" | 0 php/readme.md | 0 php/statistics_demo/README.md | 0 php/statistics_demo/demo.jpg | Bin php/statistics_demo/viewdemo.html | 0 php/waterfall/data.php | 0 php/waterfall/images/P1.jpg | Bin php/waterfall/images/P10.jpg | Bin php/waterfall/images/P11.jpg | Bin php/waterfall/images/P12.jpg | Bin php/waterfall/images/P13.jpg | Bin php/waterfall/images/P14.jpg | Bin php/waterfall/images/P15.jpg | Bin php/waterfall/images/P16.jpg | Bin php/waterfall/images/P17.jpg | Bin php/waterfall/images/P18.jpg | Bin php/waterfall/images/P19.jpg | Bin php/waterfall/images/P2.jpg | Bin php/waterfall/images/P20.jpg | Bin php/waterfall/images/P21.jpg | Bin php/waterfall/images/P22.jpg | Bin php/waterfall/images/P23.jpg | Bin php/waterfall/images/P24.jpg | Bin php/waterfall/images/P25.jpg | Bin php/waterfall/images/P26.jpg | Bin php/waterfall/images/P27.jpg | Bin php/waterfall/images/P28.jpg | Bin php/waterfall/images/P29.jpg | Bin php/waterfall/images/P3.jpg | Bin php/waterfall/images/P30.jpg | Bin php/waterfall/images/P31.jpg | Bin php/waterfall/images/P32.jpg | Bin php/waterfall/images/P33.jpg | Bin php/waterfall/images/P34.jpg | Bin php/waterfall/images/P35.jpg | Bin php/waterfall/images/P36.jpg | Bin php/waterfall/images/P37.jpg | Bin php/waterfall/images/P38.jpg | Bin php/waterfall/images/P39.jpg | Bin php/waterfall/images/P4.jpg | Bin php/waterfall/images/P40.jpg | Bin php/waterfall/images/P41.jpg | Bin php/waterfall/images/P42.jpg | Bin php/waterfall/images/P43.jpg | Bin php/waterfall/images/P44.jpg | Bin php/waterfall/images/P5.jpg | Bin php/waterfall/images/P6.jpg | Bin php/waterfall/images/P7.jpg | Bin php/waterfall/images/P8.jpg | Bin php/waterfall/images/P9.jpg | Bin php/waterfall/index.html | 0 php/waterfall/js/jquery-1.7.2.min.js | 0 php/waterfall/js/jquery.windswaterflow.js | 0 php/waterfall/readme.md | 0 ...7\200\221\345\270\203\346\265\201demo.wps" | Bin .../sulong/My97DatePicker/My97DatePicker.htm" | 0 .../sulong/My97DatePicker/WdatePicker.js" | 0 .../sulong/My97DatePicker/calendar.js" | 0 .../sulong/My97DatePicker/config.js" | 0 .../sulong/My97DatePicker/lang/en.js" | 0 .../sulong/My97DatePicker/lang/zh-cn.js" | 0 .../sulong/My97DatePicker/lang/zh-tw.js" | 0 .../My97DatePicker/skin/WdatePicker.css" | 0 .../My97DatePicker/skin/datePicker.gif" | Bin .../skin/default/datepicker.css" | 0 .../My97DatePicker/skin/default/img.gif" | Bin .../My97DatePicker/skin/whyGreen/bg.jpg" | Bin .../skin/whyGreen/datepicker.css" | 0 .../My97DatePicker/skin/whyGreen/img.gif" | Bin .../sulong/back_credit_card.php" | 0 .../sulong/index.html" | 0 .../sulong/readme.md" | 0 python/readme.md | 0 shell/readme.md | 0 1212 files changed, 285 deletions(-) mode change 100644 => 100755 C++/README.md mode change 100644 => 100755 C/README.md mode change 100644 => 100755 QA/README.md mode change 100644 => 100755 README.md mode change 100644 => 100755 UI/README.md mode change 100644 => 100755 apache/readme.md mode change 100644 => 100755 apache/virtual_host/httpd.conf mode change 100644 => 100755 apache/virtual_host/readme.md mode change 100644 => 100755 dataStructure/README.md mode change 100644 => 100755 javascript/Validate Form.js mode change 100644 => 100755 javascript/ajax_cross_domain/readme.md mode change 100644 => 100755 javascript/common.js mode change 100644 => 100755 javascript/count_down/readme.md delete mode 100644 javascript/date_time_picker/My97DatePicker/.svn/entries delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/prop-base/calendar.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/prop-base/config.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base mode change 100644 => 100755 javascript/no_limit_category/readme.md mode change 100644 => 100755 javascript/pic_lazyload_demo/.lazyload.md.swp mode change 100644 => 100755 javascript/pic_lazyload_demo/readme.md mode change 100644 => 100755 javascript/popup_layer/readme.md mode change 100644 => 100755 javascript/readme.md mode change 100644 => 100755 javascript/three_level_select/readme.md mode change 100644 => 100755 mysql/my.cnf mode change 100644 => 100755 "mysql/mysql\345\273\272\347\253\213\347\224\250\346\210\267.php" mode change 100644 => 100755 mysql/readme.md mode change 100644 => 100755 php/CodeIgniter_2.1.4/.gitignore mode change 100644 => 100755 php/CodeIgniter_2.1.4/.travis.yml mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/.htaccess mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/cache/.htaccess mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/cache/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/autoload.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/config.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/constants.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/database.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/doctypes.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/foreign_chars.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/hooks.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/migration.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/mimes.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/profiler.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/routes.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/smileys.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/config/user_agents.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/controllers/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/controllers/welcome.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/core/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/errors/error_404.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/errors/error_db.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/errors/error_general.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/errors/error_php.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/errors/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/helpers/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/hooks/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/language/english/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/libraries/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/logs/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/models/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/third_party/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/views/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/application/views/welcome_message.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/index.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/license.txt mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/.htaccess mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/core/Common.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/core/Controller.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/core/Loader.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/core/Utf8.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/core/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_active_rec.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_cache.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/DB_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/cubrid/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mssql/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysql/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysqli/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/oci8/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/odbc/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/pdo/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/postgre/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlite/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_forge.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_result.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_utility.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/database/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/fonts/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/fonts/texb.ttf mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/array_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/captcha_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/cookie_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/date_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/directory_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/download_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/email_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/file_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/form_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/html_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/inflector_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/language_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/number_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/path_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/security_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/smiley_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/string_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/text_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/typography_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/url_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/helpers/xml_helper.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/calendar_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/date_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/db_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/email_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/form_validation_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/ftp_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/imglib_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/migration_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/number_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/profiler_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/unit_test_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/english/upload_lang.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/language/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cache/Cache.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_apc.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_dummy.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_file.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_memcached.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Calendar.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Cart.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Driver.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Email.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Encrypt.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Form_validation.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Ftp.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Image_lib.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Javascript.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Log.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Migration.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Pagination.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Parser.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Profiler.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Session.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Sha1.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Table.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Trackback.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Typography.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Unit_test.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Upload.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/User_agent.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Xmlrpc.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Xmlrpcs.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/Zip.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/system/libraries/javascript/Jquery.php mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/changelog.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/active_record.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/caching.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/call_function.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/configuration.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/connecting.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/examples.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/fields.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/forge.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/helpers.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/queries.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/results.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/table_data.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/transactions.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/database/utilities.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/doc_style/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/doc_style/template.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/alternative_php.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/ancillary_classes.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/autoloader.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/caching.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/cli.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/common_functions.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/controllers.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/core_classes.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/creating_drivers.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/creating_libraries.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/credits.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/drivers.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/environments.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/errors.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/helpers.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/hooks.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/libraries.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/managing_apps.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/models.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/profiling.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/quick_reference.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/requirements.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/reserved_names.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/routing.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/security.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/styleguide.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/urls.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/general/views.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/array_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/captcha_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/cookie_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/date_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/directory_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/download_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/email_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/file_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/form_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/html_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/inflector_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/language_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/number_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/path_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/security_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/smiley_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/string_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/text_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/typography_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/url_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/helpers/xml_helper.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/appflowchart.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/arrow.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/ci_logo.jpg mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/ci_logo_flame.jpg mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/ci_quick_ref.png mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.pdf mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.png mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.pdf mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.png mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/file.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/folder.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/nav_bg_darker.jpg mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/nav_separator_darker.jpg mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/nav_toggle_darker.jpg mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/smile.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/images/transparent.gif mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/downloads.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/troubleshooting.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_120.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_130.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_131.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_132.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_133.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_140.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_141.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_150.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_152.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_153.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_154.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_160.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_161.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_162.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_163.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_170.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_171.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_172.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_200.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_201.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_202.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_203.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_210.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_211.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_212.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_213.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_214.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrade_b11.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/installation/upgrading.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/benchmark.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/caching.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/calendar.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/cart.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/config.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/email.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/encryption.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/file_uploading.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/form_validation.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/ftp.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/image_lib.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/input.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/javascript.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/language.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/loader.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/migration.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/output.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/pagination.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/parser.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/security.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/sessions.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/table.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/trackback.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/typography.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/unit_testing.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/uri.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/user_agent.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/xmlrpc.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/libraries/zip.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/license.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/nav/hacks.txt mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/nav/nav.js mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/nav/user_guide_menu.js mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/appflow.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/at_a_glance.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/cheatsheets.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/features.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/getting_started.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/goals.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/overview/mvc.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/toc.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/conclusion.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/create_news_items.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/hard_coded_pages.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/index.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/news_section.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/tutorial/static_pages.html mode change 100644 => 100755 php/CodeIgniter_2.1.4/user_guide/userguide.css mode change 100644 => 100755 "php/ckeditor+ckfinder_demo/\350\257\264\346\230\216.doc" mode change 100644 => 100755 php/ckeditor_demo/ckeditor.php mode change 100644 => 100755 php/ckeditor_demo/ckeditor/CHANGES.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/LICENSE.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/README.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/adapters/jquery.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/build-config.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/ckeditor.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/config.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/contents.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/af.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ar.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/bg.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/bn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/bs.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/cs.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/cy.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/da.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/de.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/el.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/en-au.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/en-ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/en-gb.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/en.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/eo.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/es.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/et.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/eu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/fa.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/fi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/fo.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/fr-ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/fr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/gl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/gu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/he.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/hi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/hr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/hu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/id.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/is.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/it.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ja.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ka.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/km.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ko.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ku.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/lt.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/lv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/mk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/mn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ms.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/nb.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/nl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/no.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/pl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/pt-br.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/pt.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ro.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ru.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/si.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sq.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sr-latn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/sv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/th.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/tr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/ug.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/uk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/vi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/zh-cn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/lang/zh.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/da.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/de.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/el.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/en.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/es.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/et.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/he.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/id.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/it.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/km.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/no.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/si.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/th.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/about/dialogs/about.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/about/dialogs/logo_ckeditor.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/clipboard/dialogs/paste.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/colordialog/dialogs/colordialog.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/dialog/dialogDefinition.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/div/dialogs/div.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/fakeobjects/images/spacer.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/find/dialogs/find.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/flash/dialogs/flash.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/flash/images/placeholder.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/button.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/checkbox.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/form.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/hiddenfield.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/radio.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/select.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textarea.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textfield.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/forms/images/hiddenfield.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/icons.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/icons_hidpi.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/iframe/dialogs/iframe.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/iframe/images/placeholder.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/image/dialogs/image.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/image/images/noimage.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/link/dialogs/anchor.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/link/dialogs/link.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/link/images/anchor.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/link/images/hidpi/anchor.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/liststyle/dialogs/liststyle.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/magicline/images/hidpi/icon.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/magicline/images/icon.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/pagebreak/images/pagebreak.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/pastefromword/filter/default.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/preview/preview.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/scayt/LICENSE.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/scayt/README.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/options.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/toolbar.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_address.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_blockquote.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_div.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h1.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h2.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h3.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h4.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h5.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h6.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_p.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_pre.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/dialogs/smiley.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/angel_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/angry_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/broken_heart.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/confused_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/cry_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/devil_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/embaressed_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/embarrassed_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/envelope.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/heart.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/kiss.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/lightbulb.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/omg_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/regular_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/sad_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/shades_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/teeth_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_down.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_up.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/tongue_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/tounge_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/smiley/images/wink_smile.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ar.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/bg.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cs.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cy.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/de.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/el.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/en.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/eo.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/es.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/et.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fa.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/gl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/he.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hu.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/id.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/it.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ja.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ku.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/lv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nb.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/no.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ru.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/si.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sl.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sq.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sv.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/th.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/tr.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ug.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/uk.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/vi.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/specialchar.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/table/dialogs/table.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/tabletools/dialogs/tableCell.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/templates/default.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template1.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template2.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template3.gif mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/LICENSE.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/README.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/ciframe.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmp.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmpFrameset.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc_ie.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/ajax.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/api.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/appendto.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/inlineall/logo.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/outputxhtml/outputxhtml.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/posteddata.php mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/sample.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/sample.jpg mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/assets/uilanguages/languages.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/datafiltering.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/divreplace.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/index.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/inlineall.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/inlinebycode.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/inlinetextarea.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/jquery.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/dialog/assets/my_dialog.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/dialog/dialog.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/enterkey/enterkey.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputforflash.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputhtml.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/magicline/magicline.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/toolbar/toolbar.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/plugins/wysiwygarea/fullpage.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/readonly.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/replacebyclass.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/replacebycode.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/sample.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/sample.js mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/sample_posteddata.php mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/tabindex.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/uicolor.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/uilanguages.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/samples/xhtmlstyle.html mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog_ie.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog_ie7.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog_ie8.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog_iequirks.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/dialog_opera.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor_gecko.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor_ie.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor_ie7.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor_ie8.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/editor_iequirks.css mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/icons.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/icons_hidpi.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/arrow.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/close.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/close.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock-open.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/refresh.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/lock-open.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/lock.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/images/refresh.png mode change 100644 => 100755 php/ckeditor_demo/ckeditor/skins/moono/readme.md mode change 100644 => 100755 php/ckeditor_demo/ckeditor/styles.js mode change 100644 => 100755 php/ckeditor_demo/jquery-1.7.1.min.js mode change 100644 => 100755 php/common_function.php mode change 100644 => 100755 php/email_demo/demo.php mode change 100644 => 100755 php/email_demo/readme.md mode change 100644 => 100755 php/excel_demo/excel_export/demo_1.php mode change 100644 => 100755 php/excel_demo/excel_export/readme.md mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Autoloader.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/APC.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/CacheBase.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/ICache.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memcache.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memory.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Wincache.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorageFactory.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Database.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/DateTime.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Engineering.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Exception.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/ExceptionHandler.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Financial.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaParser.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaToken.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Function.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Functions.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Logical.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/LookupRef.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/MathTrig.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Statistical.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/TextData.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Calculation/functionlist.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/AdvancedValueBinder.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataType.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataValidation.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/DefaultValueBinder.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/Hyperlink.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Cell/IValueBinder.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Comment.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/DocumentProperties.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/DocumentSecurity.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/HashTable.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/IComparable.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/IOFactory.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/NamedRange.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/CSV.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/DefaultReadFilter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2003XML.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007/Theme.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5/Escher.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/Gnumeric.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReadFilter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReader.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/OOCalc.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Reader/SYLK.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/ReferenceHelper.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/RichText.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/RichText/ITextElement.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/RichText/Run.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/RichText/TextElement.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Settings.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/CodePage.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Date.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Drawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Excel5.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/File.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/Font.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/Matrix.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/docs.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/download.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/example.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/credits.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/footer.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/header.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/navbar.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/index.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/package.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/test.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LMQuadTest.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation2.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LevenbergMarquardt.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/MagicSquareExample.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/Stats.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/benchmark.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/polyfit.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/tile.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/tests/TestMatrix.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Error.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Maths.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/File.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/Root.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLERead.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/readme.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/2dbarcodes.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/CHANGELOG.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/LICENSE.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/README.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/barcodes.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_1.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_2.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/table_data_demo.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/utf8test.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/bra.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/eng.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ger.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ita.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config_alt.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/README.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-simplified.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-traditional.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-japanese.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-korean.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/chinese.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/courier.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/AUTHORS mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/BUGS mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/LICENSE mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/NEWS mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/README mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/langcover.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/status.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/unicover.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/AUTHORS mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/COPYING mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/CREDITS mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/ChangeLog mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/INSTALL mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/README mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.ctg.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.z mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helvetica.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticab.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticabi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticai.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/hysmyeongjostdmedium.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozgopromedium.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozminproregular.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/msungstdlight.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/stsongstdlight.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/symbol.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/times.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesb.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesbi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesi.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ac15.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ag15.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_aj16.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ak12.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/README.TXT mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1250.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1251.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1252.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1253.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1254.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1255.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1257.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1258.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp874.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-1.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-11.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-15.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-16.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-2.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-4.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-5.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-7.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-9.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-r.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-u.map mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/freetype6.dll mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makeallttffonts.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makefont.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/pfm2afm mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/pfm2afm-src.tar.gz mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/readme.txt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/ttf2ufm-src.tar.gz mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/ttf2ufm mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/zlib1.dll mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zapfdingbats.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zarbold.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/htmlcolors.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/_blank.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/alpha.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/bug.eps mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_demo.jpg mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_with_alpha.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/img.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.gif mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.jpg mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/pelican.ai mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_cell.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_logo.jpg mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_signature.png mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/testsvg.svg mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tiger.ai mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tux.svg mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/pdf417.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/qrcode.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.crt mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.fdf mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.p12 mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/unicode_data.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/PasswordHasher.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/String.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/XMLWriter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipArchive.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipStreamWrapper.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/bestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/linearBestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/powerBestFitClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/trendClass.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Alignment.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Border.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Borders.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Color.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Conditional.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Fill.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Font.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/NumberFormat.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Style/Protection.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/BaseDrawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/CellIterator.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/ColumnDimension.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing/Shadow.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/MemoryDrawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageMargins.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageSetup.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Protection.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Row.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowDimension.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowIterator.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/SheetView.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/WorksheetIterator.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/CSV.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Comments.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/DocProps.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Drawing.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Rels.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/StringTable.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Style.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Theme.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Workbook.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Worksheet.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/WriterPart.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Escher.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Font.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Parser.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Workbook.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Worksheet.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Xf.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/HTML.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/IWriter.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/Writer/PDF.php mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/da/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/da/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/de/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/de/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/en/uk/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/es/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/es/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/it/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/it/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/no/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/no/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/functions mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/config mode change 100644 => 100755 php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/functions mode change 100644 => 100755 php/excel_demo/excel_read/demo.php mode change 100644 => 100755 php/excel_demo/excel_read/readme.md mode change 100644 => 100755 php/excel_demo/readme.php mode change 100644 => 100755 php/image_captcha/readme.md mode change 100644 => 100755 php/pic_switch_demo/images/1.jpg mode change 100644 => 100755 php/pic_switch_demo/images/11.jpg mode change 100644 => 100755 php/pic_switch_demo/images/2.jpg mode change 100644 => 100755 php/pic_switch_demo/images/22.jpg mode change 100644 => 100755 php/pic_switch_demo/images/3.jpg mode change 100644 => 100755 php/pic_switch_demo/images/33.jpg mode change 100644 => 100755 php/pic_switch_demo/images/banner_img_07.png mode change 100644 => 100755 php/pic_switch_demo/images/banner_img_09.png mode change 100644 => 100755 php/pic_switch_demo/jquery-1.9.0.min.js mode change 100644 => 100755 php/pic_switch_demo/pic_switch.css mode change 100644 => 100755 php/pic_switch_demo/pic_switch.html mode change 100644 => 100755 php/pic_switch_demo/pic_switch.js mode change 100644 => 100755 "php/pic_switch_demo/\350\257\264\346\230\216.txt" mode change 100644 => 100755 php/readme.md mode change 100644 => 100755 php/statistics_demo/README.md mode change 100644 => 100755 php/statistics_demo/demo.jpg mode change 100644 => 100755 php/statistics_demo/viewdemo.html mode change 100644 => 100755 php/waterfall/data.php mode change 100644 => 100755 php/waterfall/images/P1.jpg mode change 100644 => 100755 php/waterfall/images/P10.jpg mode change 100644 => 100755 php/waterfall/images/P11.jpg mode change 100644 => 100755 php/waterfall/images/P12.jpg mode change 100644 => 100755 php/waterfall/images/P13.jpg mode change 100644 => 100755 php/waterfall/images/P14.jpg mode change 100644 => 100755 php/waterfall/images/P15.jpg mode change 100644 => 100755 php/waterfall/images/P16.jpg mode change 100644 => 100755 php/waterfall/images/P17.jpg mode change 100644 => 100755 php/waterfall/images/P18.jpg mode change 100644 => 100755 php/waterfall/images/P19.jpg mode change 100644 => 100755 php/waterfall/images/P2.jpg mode change 100644 => 100755 php/waterfall/images/P20.jpg mode change 100644 => 100755 php/waterfall/images/P21.jpg mode change 100644 => 100755 php/waterfall/images/P22.jpg mode change 100644 => 100755 php/waterfall/images/P23.jpg mode change 100644 => 100755 php/waterfall/images/P24.jpg mode change 100644 => 100755 php/waterfall/images/P25.jpg mode change 100644 => 100755 php/waterfall/images/P26.jpg mode change 100644 => 100755 php/waterfall/images/P27.jpg mode change 100644 => 100755 php/waterfall/images/P28.jpg mode change 100644 => 100755 php/waterfall/images/P29.jpg mode change 100644 => 100755 php/waterfall/images/P3.jpg mode change 100644 => 100755 php/waterfall/images/P30.jpg mode change 100644 => 100755 php/waterfall/images/P31.jpg mode change 100644 => 100755 php/waterfall/images/P32.jpg mode change 100644 => 100755 php/waterfall/images/P33.jpg mode change 100644 => 100755 php/waterfall/images/P34.jpg mode change 100644 => 100755 php/waterfall/images/P35.jpg mode change 100644 => 100755 php/waterfall/images/P36.jpg mode change 100644 => 100755 php/waterfall/images/P37.jpg mode change 100644 => 100755 php/waterfall/images/P38.jpg mode change 100644 => 100755 php/waterfall/images/P39.jpg mode change 100644 => 100755 php/waterfall/images/P4.jpg mode change 100644 => 100755 php/waterfall/images/P40.jpg mode change 100644 => 100755 php/waterfall/images/P41.jpg mode change 100644 => 100755 php/waterfall/images/P42.jpg mode change 100644 => 100755 php/waterfall/images/P43.jpg mode change 100644 => 100755 php/waterfall/images/P44.jpg mode change 100644 => 100755 php/waterfall/images/P5.jpg mode change 100644 => 100755 php/waterfall/images/P6.jpg mode change 100644 => 100755 php/waterfall/images/P7.jpg mode change 100644 => 100755 php/waterfall/images/P8.jpg mode change 100644 => 100755 php/waterfall/images/P9.jpg mode change 100644 => 100755 php/waterfall/index.html mode change 100644 => 100755 php/waterfall/js/jquery-1.7.2.min.js mode change 100644 => 100755 php/waterfall/js/jquery.windswaterflow.js mode change 100644 => 100755 php/waterfall/readme.md mode change 100644 => 100755 "php/waterfall/\347\200\221\345\270\203\346\265\201demo.wps" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/My97DatePicker.htm" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/WdatePicker.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/calendar.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/config.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/en.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-cn.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-tw.js" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/WdatePicker.css" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/datePicker.gif" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/datepicker.css" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/img.gif" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/bg.jpg" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/datepicker.css" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/img.gif" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/back_credit_card.php" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/index.html" mode change 100644 => 100755 "php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/readme.md" mode change 100644 => 100755 python/readme.md mode change 100644 => 100755 shell/readme.md diff --git a/C++/README.md b/C++/README.md old mode 100644 new mode 100755 diff --git a/C/README.md b/C/README.md old mode 100644 new mode 100755 diff --git a/QA/README.md b/QA/README.md old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/UI/README.md b/UI/README.md old mode 100644 new mode 100755 diff --git a/apache/readme.md b/apache/readme.md old mode 100644 new mode 100755 diff --git a/apache/virtual_host/httpd.conf b/apache/virtual_host/httpd.conf old mode 100644 new mode 100755 diff --git a/apache/virtual_host/readme.md b/apache/virtual_host/readme.md old mode 100644 new mode 100755 diff --git a/dataStructure/README.md b/dataStructure/README.md old mode 100644 new mode 100755 diff --git a/javascript/Validate Form.js b/javascript/Validate Form.js old mode 100644 new mode 100755 diff --git a/javascript/ajax_cross_domain/readme.md b/javascript/ajax_cross_domain/readme.md old mode 100644 new mode 100755 diff --git a/javascript/common.js b/javascript/common.js old mode 100644 new mode 100755 diff --git a/javascript/count_down/readme.md b/javascript/count_down/readme.md old mode 100644 new mode 100755 diff --git a/javascript/date_time_picker/My97DatePicker/.svn/entries b/javascript/date_time_picker/My97DatePicker/.svn/entries deleted file mode 100644 index 3ede6fc..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/entries +++ /dev/null @@ -1,170 +0,0 @@ -10 - -dir -8665 -svn://192.168.9.224:3709/script/My97DatePicker -svn://192.168.9.224:3709 - - - -2013-12-16T08:51:29.937790Z -5730 -hanshaobo - - - - - - - - - - - - - - -6cf78c6e-06f2-4fb7-8a74-f578e921f8ef - -WdatePicker.js -file - - - - -2015-03-12T07:35:02.468531Z -5750cc4485f7337373bc6765ab30779e -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -7173 - -config.js -file - - - - -2015-03-12T07:35:02.468531Z -dd9c5041fad62419a87ac54c0f09d3d8 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -225 - -lang -dir - -skin -dir - -calendar.js -file - - - - -2015-03-12T07:35:02.468531Z -7aca41e8ffca1dca298ac92a239252f6 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -22088 - -My97DatePicker.htm -file - - - - -2015-03-12T07:35:02.468531Z -fa07f417ee130638c2ed286612d85bd5 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -1247 - diff --git a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/calendar.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/prop-base/calendar.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/calendar.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/config.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/prop-base/config.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/prop-base/config.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base deleted file mode 100755 index a0815fb..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base +++ /dev/null @@ -1,42 +0,0 @@ - - - -My97DatePicker - - - - - - - - \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base deleted file mode 100755 index 147b1b8..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base +++ /dev/null @@ -1,34 +0,0 @@ -/* - * My97 DatePicker 4.2 - * SITE: http://dp.my97.net - * BLOG: http://my97.cnblogs.com - * MAIL: smallcarrot@163.com - */ -var $dp,WdatePicker;(function(){var $={ - -$wdate:true, -$crossFrame:false, -$dpPath:"", -position:{}, -lang:"auto", -skin:"default", -dateFmt:"yyyy-MM-dd", -realDateFmt:"yyyy-MM-dd", -realTimeFmt:"HH:mm:ss", -realFullFmt:"%Date %Time", -minDate:"1900-01-01 00:00:00", -maxDate:"2099-12-31 23:59:59", -startDate:"", -alwaysUseStartDate:false, -yearOffset:1911, -isShowWeek:false, -highLineWeekDay:true, -isShowClear:true, -isShowToday:true, -isShowOthers:true, -readOnly:false, -errDealMode:0, -autoPickDate:null, -qsEnabled:true, - -disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=S;var V=window,N="document",H="documentElement",A="getElementsByTagName",T,_,R,G,Z;switch(navigator.appName){case"Microsoft Internet Explorer":R=true;break;case"Opera":Z=true;break;default:G=true;break}T=V;if($.$crossFrame){try{while(T.parent[N]!=T[N]&&T.parent[N][A]("frameset").length==0)T=T.parent}catch(P){}}_=J();if($.$wdate)K(_+"skin/WdatePicker.css");var L;if(T.$dp){try{L=(T.$dp.$("MY")=="lIkEmY97")}catch(P){L=P.number==-2146823277?true:false}}if(!T.$dp||L){$dp=Q({ff:G,ie:R,opera:Z,el:null,win:V,status:L?2:0,defMinDate:$.minDate,defMaxDate:$.maxDate,$:function(_){try{this.win[N]}catch($){return"lIkEmY97"}return(typeof _=="string")?this.win[N].getElementById(_):_},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var A in $){if(this.dt[A]===undefined)this.errMsg="invalid property:"+A;this.dt[A]+=$[A]}if(this.dt.refresh())return this.dt}return""},show:function(){if(this.dd)this.dd.style.display="block"},hide:function(){if(this.dd)this.dd.style.display="none"},attachEvent:C});if(!L)X(T,function(){S(null,true)})}else $dp=T.$dp;if(!V[N].docMD){C(V[N],"onmousedown",B);V[N].docMD=true}if(!T[N].docMD){C(T[N],"onmousedown",B);T[N].docMD=true}C(V,"onunload",function(){$dp.hide()});function Q(_){T.$dp=T.$dp||{};for(var $ in _)T.$dp[$]=_[$];return T.$dp}function C(A,$,_){if(R)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function J(){var _,A,$=document.getElementsByTagName("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function D(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=T.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var _="",D="",A="",H,G,B="";for(H=0;H_.scrollLeft||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function B(_){src=_?(_.srcElement||_.target):null;if($dp&&$dp.dd&&$dp.dd.style.display=="block"&&src!=$dp.el){var A=$dp.el,B=$dp.cal,$=$dp.el[$dp.elProp];if($!=null){$dp.$w.hideSel();if($!=""&&!$dp.readOnly)B.date.loadFromDate(B.splitDate($,B.dateFmt));if($==""||(B.isDate(B.date)&&B.isTime(B.date)&&B.checkValid(B.date))){B.mark(true);if($!="")B.update();else B.setRealValue("");$dp.hide()}else B.mark(false)}else $dp.hide()}}var O=[];function W(){$dp.status=2;F()}function F(){if(O.length>0){var $=O.shift();$.el={innerHTML:""};$.eCont=$dp.$($.eCont);$.autoPickDate=true;$.qsEnabled=false;I($)}}function S(C,$){$dp.win=V;C=C||{};if($){$dp.status=1;I({el:{innerHTML:""}},true)}else if(C.eCont){O.push(C);if($dp.status==2)F()}else{if($dp.status==0)$dp.status=1;if($dp.status!=2)return;var B,A=_();if(A){B=A.srcElement||A.target;A.cancelBubble=true}C.el=$dp.$(C.el||B);if(!C.el||C.el&&C.el.disabled||(C.el==$dp.el&&$dp.dd.style.display!="none"&&$dp.dd.style.left!="-1970px"))return;I(C)}function _(){if(G){func=_.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function I(G,A){for(var F in $)if(F.substring(0,1)!="$")$dp[F]=$[F];for(F in G)if($dp[F]===undefined)$dp.errMsg="invalid property:"+F;else $dp[F]=G[F];$dp.elProp=$dp.el&&$dp.el.nodeName=="INPUT"?"value":"innerHTML";if($dp.el[$dp.elProp]==null)return;if($dp.lang=="auto")$dp.lang=R?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang)){if($dp.dd&&!$dp.eCont)T[N].body.removeChild($dp.dd);if($.$dpPath=="")D(_);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base deleted file mode 100755 index 0ea7d69..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/text-base/calendar.js.svn-base +++ /dev/null @@ -1,7 +0,0 @@ -/* - * My97 DatePicker 4.2 - * SITE: http://dp.my97.net - * BLOG: http://my97.cnblogs.com - * MAIL: smallcarrot@163.com - */ -var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base b/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base deleted file mode 100755 index d0e1ac5..0000000 --- a/javascript/date_time_picker/My97DatePicker/.svn/text-base/config.js.svn-base +++ /dev/null @@ -1,12 +0,0 @@ -var langList = -[ - {name:'en', charset:'UTF-8'}, - {name:'zh-cn', charset:'gb2312'}, - {name:'zh-tw', charset:'GBK'} -]; - -var skinList = -[ - {name:'default', charset:'gb2312'}, - {name:'whyGreen', charset:'gb2312'} -]; \ No newline at end of file diff --git a/javascript/no_limit_category/readme.md b/javascript/no_limit_category/readme.md old mode 100644 new mode 100755 diff --git a/javascript/pic_lazyload_demo/.lazyload.md.swp b/javascript/pic_lazyload_demo/.lazyload.md.swp old mode 100644 new mode 100755 diff --git a/javascript/pic_lazyload_demo/readme.md b/javascript/pic_lazyload_demo/readme.md old mode 100644 new mode 100755 diff --git a/javascript/popup_layer/readme.md b/javascript/popup_layer/readme.md old mode 100644 new mode 100755 diff --git a/javascript/readme.md b/javascript/readme.md old mode 100644 new mode 100755 diff --git a/javascript/three_level_select/readme.md b/javascript/three_level_select/readme.md old mode 100644 new mode 100755 diff --git a/mysql/my.cnf b/mysql/my.cnf old mode 100644 new mode 100755 diff --git "a/mysql/mysql\345\273\272\347\253\213\347\224\250\346\210\267.php" "b/mysql/mysql\345\273\272\347\253\213\347\224\250\346\210\267.php" old mode 100644 new mode 100755 diff --git a/mysql/readme.md b/mysql/readme.md old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/.gitignore b/php/CodeIgniter_2.1.4/.gitignore old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/.travis.yml b/php/CodeIgniter_2.1.4/.travis.yml old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/.htaccess b/php/CodeIgniter_2.1.4/application/.htaccess old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/cache/.htaccess b/php/CodeIgniter_2.1.4/application/cache/.htaccess old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/cache/index.html b/php/CodeIgniter_2.1.4/application/cache/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/autoload.php b/php/CodeIgniter_2.1.4/application/config/autoload.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/config.php b/php/CodeIgniter_2.1.4/application/config/config.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/constants.php b/php/CodeIgniter_2.1.4/application/config/constants.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/database.php b/php/CodeIgniter_2.1.4/application/config/database.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/doctypes.php b/php/CodeIgniter_2.1.4/application/config/doctypes.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/foreign_chars.php b/php/CodeIgniter_2.1.4/application/config/foreign_chars.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/hooks.php b/php/CodeIgniter_2.1.4/application/config/hooks.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/index.html b/php/CodeIgniter_2.1.4/application/config/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/migration.php b/php/CodeIgniter_2.1.4/application/config/migration.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/mimes.php b/php/CodeIgniter_2.1.4/application/config/mimes.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/profiler.php b/php/CodeIgniter_2.1.4/application/config/profiler.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/routes.php b/php/CodeIgniter_2.1.4/application/config/routes.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/smileys.php b/php/CodeIgniter_2.1.4/application/config/smileys.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/config/user_agents.php b/php/CodeIgniter_2.1.4/application/config/user_agents.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/controllers/index.html b/php/CodeIgniter_2.1.4/application/controllers/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/controllers/welcome.php b/php/CodeIgniter_2.1.4/application/controllers/welcome.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/core/index.html b/php/CodeIgniter_2.1.4/application/core/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/errors/error_404.php b/php/CodeIgniter_2.1.4/application/errors/error_404.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/errors/error_db.php b/php/CodeIgniter_2.1.4/application/errors/error_db.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/errors/error_general.php b/php/CodeIgniter_2.1.4/application/errors/error_general.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/errors/error_php.php b/php/CodeIgniter_2.1.4/application/errors/error_php.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/errors/index.html b/php/CodeIgniter_2.1.4/application/errors/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/helpers/index.html b/php/CodeIgniter_2.1.4/application/helpers/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/hooks/index.html b/php/CodeIgniter_2.1.4/application/hooks/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/index.html b/php/CodeIgniter_2.1.4/application/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/language/english/index.html b/php/CodeIgniter_2.1.4/application/language/english/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/libraries/index.html b/php/CodeIgniter_2.1.4/application/libraries/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/logs/index.html b/php/CodeIgniter_2.1.4/application/logs/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/models/index.html b/php/CodeIgniter_2.1.4/application/models/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/third_party/index.html b/php/CodeIgniter_2.1.4/application/third_party/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/views/index.html b/php/CodeIgniter_2.1.4/application/views/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/application/views/welcome_message.php b/php/CodeIgniter_2.1.4/application/views/welcome_message.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/index.php b/php/CodeIgniter_2.1.4/index.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/license.txt b/php/CodeIgniter_2.1.4/license.txt old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/.htaccess b/php/CodeIgniter_2.1.4/system/.htaccess old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/core/Common.php b/php/CodeIgniter_2.1.4/system/core/Common.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/core/Controller.php b/php/CodeIgniter_2.1.4/system/core/Controller.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/core/Loader.php b/php/CodeIgniter_2.1.4/system/core/Loader.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/core/Utf8.php b/php/CodeIgniter_2.1.4/system/core/Utf8.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/core/index.html b/php/CodeIgniter_2.1.4/system/core/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_active_rec.php b/php/CodeIgniter_2.1.4/system/database/DB_active_rec.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_cache.php b/php/CodeIgniter_2.1.4/system/database/DB_cache.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_driver.php b/php/CodeIgniter_2.1.4/system/database/DB_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_forge.php b/php/CodeIgniter_2.1.4/system/database/DB_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_result.php b/php/CodeIgniter_2.1.4/system/database/DB_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/DB_utility.php b/php/CodeIgniter_2.1.4/system/database/DB_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/cubrid_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/cubrid/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mssql/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/mssql/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/mssql/mssql_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysql/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/mysql/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysql/mysql_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/mysqli/mysqli_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/oci8/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/oci8/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/oci8/oci8_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/odbc/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/odbc/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/odbc/odbc_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/pdo/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/pdo/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/pdo/pdo_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/postgre/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/postgre/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/postgre/postgre_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlite/sqlite_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/index.html b/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_driver.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_forge.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_forge.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_result.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_result.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_utility.php b/php/CodeIgniter_2.1.4/system/database/drivers/sqlsrv/sqlsrv_utility.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/database/index.html b/php/CodeIgniter_2.1.4/system/database/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/fonts/index.html b/php/CodeIgniter_2.1.4/system/fonts/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/fonts/texb.ttf b/php/CodeIgniter_2.1.4/system/fonts/texb.ttf old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/array_helper.php b/php/CodeIgniter_2.1.4/system/helpers/array_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/captcha_helper.php b/php/CodeIgniter_2.1.4/system/helpers/captcha_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/cookie_helper.php b/php/CodeIgniter_2.1.4/system/helpers/cookie_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/date_helper.php b/php/CodeIgniter_2.1.4/system/helpers/date_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/directory_helper.php b/php/CodeIgniter_2.1.4/system/helpers/directory_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/download_helper.php b/php/CodeIgniter_2.1.4/system/helpers/download_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/email_helper.php b/php/CodeIgniter_2.1.4/system/helpers/email_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/file_helper.php b/php/CodeIgniter_2.1.4/system/helpers/file_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/form_helper.php b/php/CodeIgniter_2.1.4/system/helpers/form_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/html_helper.php b/php/CodeIgniter_2.1.4/system/helpers/html_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/index.html b/php/CodeIgniter_2.1.4/system/helpers/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/inflector_helper.php b/php/CodeIgniter_2.1.4/system/helpers/inflector_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/language_helper.php b/php/CodeIgniter_2.1.4/system/helpers/language_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/number_helper.php b/php/CodeIgniter_2.1.4/system/helpers/number_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/path_helper.php b/php/CodeIgniter_2.1.4/system/helpers/path_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/security_helper.php b/php/CodeIgniter_2.1.4/system/helpers/security_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/smiley_helper.php b/php/CodeIgniter_2.1.4/system/helpers/smiley_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/string_helper.php b/php/CodeIgniter_2.1.4/system/helpers/string_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/text_helper.php b/php/CodeIgniter_2.1.4/system/helpers/text_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/typography_helper.php b/php/CodeIgniter_2.1.4/system/helpers/typography_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/url_helper.php b/php/CodeIgniter_2.1.4/system/helpers/url_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/helpers/xml_helper.php b/php/CodeIgniter_2.1.4/system/helpers/xml_helper.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/index.html b/php/CodeIgniter_2.1.4/system/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/calendar_lang.php b/php/CodeIgniter_2.1.4/system/language/english/calendar_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/date_lang.php b/php/CodeIgniter_2.1.4/system/language/english/date_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/db_lang.php b/php/CodeIgniter_2.1.4/system/language/english/db_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/email_lang.php b/php/CodeIgniter_2.1.4/system/language/english/email_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/form_validation_lang.php b/php/CodeIgniter_2.1.4/system/language/english/form_validation_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/ftp_lang.php b/php/CodeIgniter_2.1.4/system/language/english/ftp_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/imglib_lang.php b/php/CodeIgniter_2.1.4/system/language/english/imglib_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/index.html b/php/CodeIgniter_2.1.4/system/language/english/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/migration_lang.php b/php/CodeIgniter_2.1.4/system/language/english/migration_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/number_lang.php b/php/CodeIgniter_2.1.4/system/language/english/number_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/profiler_lang.php b/php/CodeIgniter_2.1.4/system/language/english/profiler_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/unit_test_lang.php b/php/CodeIgniter_2.1.4/system/language/english/unit_test_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/english/upload_lang.php b/php/CodeIgniter_2.1.4/system/language/english/upload_lang.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/language/index.html b/php/CodeIgniter_2.1.4/system/language/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cache/Cache.php b/php/CodeIgniter_2.1.4/system/libraries/Cache/Cache.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_apc.php b/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_apc.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_dummy.php b/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_dummy.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_file.php b/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_file.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_memcached.php b/php/CodeIgniter_2.1.4/system/libraries/Cache/drivers/Cache_memcached.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Calendar.php b/php/CodeIgniter_2.1.4/system/libraries/Calendar.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Cart.php b/php/CodeIgniter_2.1.4/system/libraries/Cart.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Driver.php b/php/CodeIgniter_2.1.4/system/libraries/Driver.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Email.php b/php/CodeIgniter_2.1.4/system/libraries/Email.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Encrypt.php b/php/CodeIgniter_2.1.4/system/libraries/Encrypt.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Form_validation.php b/php/CodeIgniter_2.1.4/system/libraries/Form_validation.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Ftp.php b/php/CodeIgniter_2.1.4/system/libraries/Ftp.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Image_lib.php b/php/CodeIgniter_2.1.4/system/libraries/Image_lib.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Javascript.php b/php/CodeIgniter_2.1.4/system/libraries/Javascript.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Log.php b/php/CodeIgniter_2.1.4/system/libraries/Log.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Migration.php b/php/CodeIgniter_2.1.4/system/libraries/Migration.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Pagination.php b/php/CodeIgniter_2.1.4/system/libraries/Pagination.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Parser.php b/php/CodeIgniter_2.1.4/system/libraries/Parser.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Profiler.php b/php/CodeIgniter_2.1.4/system/libraries/Profiler.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Session.php b/php/CodeIgniter_2.1.4/system/libraries/Session.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Sha1.php b/php/CodeIgniter_2.1.4/system/libraries/Sha1.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Table.php b/php/CodeIgniter_2.1.4/system/libraries/Table.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Trackback.php b/php/CodeIgniter_2.1.4/system/libraries/Trackback.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Typography.php b/php/CodeIgniter_2.1.4/system/libraries/Typography.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Unit_test.php b/php/CodeIgniter_2.1.4/system/libraries/Unit_test.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Upload.php b/php/CodeIgniter_2.1.4/system/libraries/Upload.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/User_agent.php b/php/CodeIgniter_2.1.4/system/libraries/User_agent.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Xmlrpc.php b/php/CodeIgniter_2.1.4/system/libraries/Xmlrpc.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Xmlrpcs.php b/php/CodeIgniter_2.1.4/system/libraries/Xmlrpcs.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/Zip.php b/php/CodeIgniter_2.1.4/system/libraries/Zip.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/index.html b/php/CodeIgniter_2.1.4/system/libraries/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/system/libraries/javascript/Jquery.php b/php/CodeIgniter_2.1.4/system/libraries/javascript/Jquery.php old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/changelog.html b/php/CodeIgniter_2.1.4/user_guide/changelog.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/active_record.html b/php/CodeIgniter_2.1.4/user_guide/database/active_record.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/caching.html b/php/CodeIgniter_2.1.4/user_guide/database/caching.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/call_function.html b/php/CodeIgniter_2.1.4/user_guide/database/call_function.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/configuration.html b/php/CodeIgniter_2.1.4/user_guide/database/configuration.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/connecting.html b/php/CodeIgniter_2.1.4/user_guide/database/connecting.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/examples.html b/php/CodeIgniter_2.1.4/user_guide/database/examples.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/fields.html b/php/CodeIgniter_2.1.4/user_guide/database/fields.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/forge.html b/php/CodeIgniter_2.1.4/user_guide/database/forge.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/helpers.html b/php/CodeIgniter_2.1.4/user_guide/database/helpers.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/index.html b/php/CodeIgniter_2.1.4/user_guide/database/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/queries.html b/php/CodeIgniter_2.1.4/user_guide/database/queries.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/results.html b/php/CodeIgniter_2.1.4/user_guide/database/results.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/table_data.html b/php/CodeIgniter_2.1.4/user_guide/database/table_data.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/transactions.html b/php/CodeIgniter_2.1.4/user_guide/database/transactions.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/database/utilities.html b/php/CodeIgniter_2.1.4/user_guide/database/utilities.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/doc_style/index.html b/php/CodeIgniter_2.1.4/user_guide/doc_style/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/doc_style/template.html b/php/CodeIgniter_2.1.4/user_guide/doc_style/template.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/alternative_php.html b/php/CodeIgniter_2.1.4/user_guide/general/alternative_php.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/ancillary_classes.html b/php/CodeIgniter_2.1.4/user_guide/general/ancillary_classes.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/autoloader.html b/php/CodeIgniter_2.1.4/user_guide/general/autoloader.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/caching.html b/php/CodeIgniter_2.1.4/user_guide/general/caching.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/cli.html b/php/CodeIgniter_2.1.4/user_guide/general/cli.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/common_functions.html b/php/CodeIgniter_2.1.4/user_guide/general/common_functions.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/controllers.html b/php/CodeIgniter_2.1.4/user_guide/general/controllers.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/core_classes.html b/php/CodeIgniter_2.1.4/user_guide/general/core_classes.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/creating_drivers.html b/php/CodeIgniter_2.1.4/user_guide/general/creating_drivers.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/creating_libraries.html b/php/CodeIgniter_2.1.4/user_guide/general/creating_libraries.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/credits.html b/php/CodeIgniter_2.1.4/user_guide/general/credits.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/drivers.html b/php/CodeIgniter_2.1.4/user_guide/general/drivers.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/environments.html b/php/CodeIgniter_2.1.4/user_guide/general/environments.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/errors.html b/php/CodeIgniter_2.1.4/user_guide/general/errors.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/helpers.html b/php/CodeIgniter_2.1.4/user_guide/general/helpers.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/hooks.html b/php/CodeIgniter_2.1.4/user_guide/general/hooks.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/libraries.html b/php/CodeIgniter_2.1.4/user_guide/general/libraries.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/managing_apps.html b/php/CodeIgniter_2.1.4/user_guide/general/managing_apps.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/models.html b/php/CodeIgniter_2.1.4/user_guide/general/models.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/profiling.html b/php/CodeIgniter_2.1.4/user_guide/general/profiling.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/quick_reference.html b/php/CodeIgniter_2.1.4/user_guide/general/quick_reference.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/requirements.html b/php/CodeIgniter_2.1.4/user_guide/general/requirements.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/reserved_names.html b/php/CodeIgniter_2.1.4/user_guide/general/reserved_names.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/routing.html b/php/CodeIgniter_2.1.4/user_guide/general/routing.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/security.html b/php/CodeIgniter_2.1.4/user_guide/general/security.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/styleguide.html b/php/CodeIgniter_2.1.4/user_guide/general/styleguide.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/urls.html b/php/CodeIgniter_2.1.4/user_guide/general/urls.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/general/views.html b/php/CodeIgniter_2.1.4/user_guide/general/views.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/array_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/array_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/captcha_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/captcha_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/cookie_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/cookie_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/date_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/date_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/directory_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/directory_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/download_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/download_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/email_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/email_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/file_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/file_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/form_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/form_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/html_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/html_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/inflector_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/inflector_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/language_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/language_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/number_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/number_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/path_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/path_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/security_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/security_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/smiley_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/smiley_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/string_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/string_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/text_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/text_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/typography_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/typography_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/url_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/url_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/helpers/xml_helper.html b/php/CodeIgniter_2.1.4/user_guide/helpers/xml_helper.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/appflowchart.gif b/php/CodeIgniter_2.1.4/user_guide/images/appflowchart.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/arrow.gif b/php/CodeIgniter_2.1.4/user_guide/images/arrow.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/ci_logo.jpg b/php/CodeIgniter_2.1.4/user_guide/images/ci_logo.jpg old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/ci_logo_flame.jpg b/php/CodeIgniter_2.1.4/user_guide/images/ci_logo_flame.jpg old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/ci_quick_ref.png b/php/CodeIgniter_2.1.4/user_guide/images/ci_quick_ref.png old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.pdf b/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.pdf old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.png b/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_helper_reference.png old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.pdf b/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.pdf old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.png b/php/CodeIgniter_2.1.4/user_guide/images/codeigniter_1.7.1_library_reference.png old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/file.gif b/php/CodeIgniter_2.1.4/user_guide/images/file.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/folder.gif b/php/CodeIgniter_2.1.4/user_guide/images/folder.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/nav_bg_darker.jpg b/php/CodeIgniter_2.1.4/user_guide/images/nav_bg_darker.jpg old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/nav_separator_darker.jpg b/php/CodeIgniter_2.1.4/user_guide/images/nav_separator_darker.jpg old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/nav_toggle_darker.jpg b/php/CodeIgniter_2.1.4/user_guide/images/nav_toggle_darker.jpg old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/smile.gif b/php/CodeIgniter_2.1.4/user_guide/images/smile.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/images/transparent.gif b/php/CodeIgniter_2.1.4/user_guide/images/transparent.gif old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/index.html b/php/CodeIgniter_2.1.4/user_guide/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/downloads.html b/php/CodeIgniter_2.1.4/user_guide/installation/downloads.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/index.html b/php/CodeIgniter_2.1.4/user_guide/installation/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/troubleshooting.html b/php/CodeIgniter_2.1.4/user_guide/installation/troubleshooting.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_120.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_120.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_130.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_130.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_131.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_131.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_132.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_132.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_133.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_133.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_140.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_140.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_141.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_141.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_150.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_150.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_152.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_152.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_153.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_153.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_154.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_154.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_160.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_160.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_161.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_161.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_162.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_162.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_163.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_163.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_170.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_170.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_171.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_171.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_172.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_172.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_200.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_200.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_201.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_201.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_202.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_202.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_203.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_203.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_210.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_210.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_211.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_211.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_212.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_212.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_213.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_213.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_214.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_214.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_b11.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrade_b11.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/installation/upgrading.html b/php/CodeIgniter_2.1.4/user_guide/installation/upgrading.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/benchmark.html b/php/CodeIgniter_2.1.4/user_guide/libraries/benchmark.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/caching.html b/php/CodeIgniter_2.1.4/user_guide/libraries/caching.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/calendar.html b/php/CodeIgniter_2.1.4/user_guide/libraries/calendar.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/cart.html b/php/CodeIgniter_2.1.4/user_guide/libraries/cart.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/config.html b/php/CodeIgniter_2.1.4/user_guide/libraries/config.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/email.html b/php/CodeIgniter_2.1.4/user_guide/libraries/email.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/encryption.html b/php/CodeIgniter_2.1.4/user_guide/libraries/encryption.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/file_uploading.html b/php/CodeIgniter_2.1.4/user_guide/libraries/file_uploading.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/form_validation.html b/php/CodeIgniter_2.1.4/user_guide/libraries/form_validation.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/ftp.html b/php/CodeIgniter_2.1.4/user_guide/libraries/ftp.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/image_lib.html b/php/CodeIgniter_2.1.4/user_guide/libraries/image_lib.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/input.html b/php/CodeIgniter_2.1.4/user_guide/libraries/input.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/javascript.html b/php/CodeIgniter_2.1.4/user_guide/libraries/javascript.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/language.html b/php/CodeIgniter_2.1.4/user_guide/libraries/language.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/loader.html b/php/CodeIgniter_2.1.4/user_guide/libraries/loader.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/migration.html b/php/CodeIgniter_2.1.4/user_guide/libraries/migration.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/output.html b/php/CodeIgniter_2.1.4/user_guide/libraries/output.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/pagination.html b/php/CodeIgniter_2.1.4/user_guide/libraries/pagination.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/parser.html b/php/CodeIgniter_2.1.4/user_guide/libraries/parser.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/security.html b/php/CodeIgniter_2.1.4/user_guide/libraries/security.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/sessions.html b/php/CodeIgniter_2.1.4/user_guide/libraries/sessions.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/table.html b/php/CodeIgniter_2.1.4/user_guide/libraries/table.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/trackback.html b/php/CodeIgniter_2.1.4/user_guide/libraries/trackback.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/typography.html b/php/CodeIgniter_2.1.4/user_guide/libraries/typography.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/unit_testing.html b/php/CodeIgniter_2.1.4/user_guide/libraries/unit_testing.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/uri.html b/php/CodeIgniter_2.1.4/user_guide/libraries/uri.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/user_agent.html b/php/CodeIgniter_2.1.4/user_guide/libraries/user_agent.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/xmlrpc.html b/php/CodeIgniter_2.1.4/user_guide/libraries/xmlrpc.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/libraries/zip.html b/php/CodeIgniter_2.1.4/user_guide/libraries/zip.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/license.html b/php/CodeIgniter_2.1.4/user_guide/license.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/nav/hacks.txt b/php/CodeIgniter_2.1.4/user_guide/nav/hacks.txt old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/nav/nav.js b/php/CodeIgniter_2.1.4/user_guide/nav/nav.js old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/nav/user_guide_menu.js b/php/CodeIgniter_2.1.4/user_guide/nav/user_guide_menu.js old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/appflow.html b/php/CodeIgniter_2.1.4/user_guide/overview/appflow.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/at_a_glance.html b/php/CodeIgniter_2.1.4/user_guide/overview/at_a_glance.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/cheatsheets.html b/php/CodeIgniter_2.1.4/user_guide/overview/cheatsheets.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/features.html b/php/CodeIgniter_2.1.4/user_guide/overview/features.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/getting_started.html b/php/CodeIgniter_2.1.4/user_guide/overview/getting_started.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/goals.html b/php/CodeIgniter_2.1.4/user_guide/overview/goals.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/index.html b/php/CodeIgniter_2.1.4/user_guide/overview/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/overview/mvc.html b/php/CodeIgniter_2.1.4/user_guide/overview/mvc.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/toc.html b/php/CodeIgniter_2.1.4/user_guide/toc.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/conclusion.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/conclusion.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/create_news_items.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/create_news_items.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/hard_coded_pages.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/hard_coded_pages.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/index.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/index.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/news_section.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/news_section.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/tutorial/static_pages.html b/php/CodeIgniter_2.1.4/user_guide/tutorial/static_pages.html old mode 100644 new mode 100755 diff --git a/php/CodeIgniter_2.1.4/user_guide/userguide.css b/php/CodeIgniter_2.1.4/user_guide/userguide.css old mode 100644 new mode 100755 diff --git "a/php/ckeditor+ckfinder_demo/\350\257\264\346\230\216.doc" "b/php/ckeditor+ckfinder_demo/\350\257\264\346\230\216.doc" old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor.php b/php/ckeditor_demo/ckeditor.php old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/CHANGES.md b/php/ckeditor_demo/ckeditor/CHANGES.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/LICENSE.md b/php/ckeditor_demo/ckeditor/LICENSE.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/README.md b/php/ckeditor_demo/ckeditor/README.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/adapters/jquery.js b/php/ckeditor_demo/ckeditor/adapters/jquery.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/build-config.js b/php/ckeditor_demo/ckeditor/build-config.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/ckeditor.js b/php/ckeditor_demo/ckeditor/ckeditor.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/config.js b/php/ckeditor_demo/ckeditor/config.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/contents.css b/php/ckeditor_demo/ckeditor/contents.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/af.js b/php/ckeditor_demo/ckeditor/lang/af.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ar.js b/php/ckeditor_demo/ckeditor/lang/ar.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/bg.js b/php/ckeditor_demo/ckeditor/lang/bg.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/bn.js b/php/ckeditor_demo/ckeditor/lang/bn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/bs.js b/php/ckeditor_demo/ckeditor/lang/bs.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ca.js b/php/ckeditor_demo/ckeditor/lang/ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/cs.js b/php/ckeditor_demo/ckeditor/lang/cs.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/cy.js b/php/ckeditor_demo/ckeditor/lang/cy.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/da.js b/php/ckeditor_demo/ckeditor/lang/da.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/de.js b/php/ckeditor_demo/ckeditor/lang/de.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/el.js b/php/ckeditor_demo/ckeditor/lang/el.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/en-au.js b/php/ckeditor_demo/ckeditor/lang/en-au.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/en-ca.js b/php/ckeditor_demo/ckeditor/lang/en-ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/en-gb.js b/php/ckeditor_demo/ckeditor/lang/en-gb.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/en.js b/php/ckeditor_demo/ckeditor/lang/en.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/eo.js b/php/ckeditor_demo/ckeditor/lang/eo.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/es.js b/php/ckeditor_demo/ckeditor/lang/es.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/et.js b/php/ckeditor_demo/ckeditor/lang/et.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/eu.js b/php/ckeditor_demo/ckeditor/lang/eu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/fa.js b/php/ckeditor_demo/ckeditor/lang/fa.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/fi.js b/php/ckeditor_demo/ckeditor/lang/fi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/fo.js b/php/ckeditor_demo/ckeditor/lang/fo.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/fr-ca.js b/php/ckeditor_demo/ckeditor/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/fr.js b/php/ckeditor_demo/ckeditor/lang/fr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/gl.js b/php/ckeditor_demo/ckeditor/lang/gl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/gu.js b/php/ckeditor_demo/ckeditor/lang/gu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/he.js b/php/ckeditor_demo/ckeditor/lang/he.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/hi.js b/php/ckeditor_demo/ckeditor/lang/hi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/hr.js b/php/ckeditor_demo/ckeditor/lang/hr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/hu.js b/php/ckeditor_demo/ckeditor/lang/hu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/id.js b/php/ckeditor_demo/ckeditor/lang/id.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/is.js b/php/ckeditor_demo/ckeditor/lang/is.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/it.js b/php/ckeditor_demo/ckeditor/lang/it.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ja.js b/php/ckeditor_demo/ckeditor/lang/ja.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ka.js b/php/ckeditor_demo/ckeditor/lang/ka.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/km.js b/php/ckeditor_demo/ckeditor/lang/km.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ko.js b/php/ckeditor_demo/ckeditor/lang/ko.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ku.js b/php/ckeditor_demo/ckeditor/lang/ku.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/lt.js b/php/ckeditor_demo/ckeditor/lang/lt.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/lv.js b/php/ckeditor_demo/ckeditor/lang/lv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/mk.js b/php/ckeditor_demo/ckeditor/lang/mk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/mn.js b/php/ckeditor_demo/ckeditor/lang/mn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ms.js b/php/ckeditor_demo/ckeditor/lang/ms.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/nb.js b/php/ckeditor_demo/ckeditor/lang/nb.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/nl.js b/php/ckeditor_demo/ckeditor/lang/nl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/no.js b/php/ckeditor_demo/ckeditor/lang/no.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/pl.js b/php/ckeditor_demo/ckeditor/lang/pl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/pt-br.js b/php/ckeditor_demo/ckeditor/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/pt.js b/php/ckeditor_demo/ckeditor/lang/pt.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ro.js b/php/ckeditor_demo/ckeditor/lang/ro.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ru.js b/php/ckeditor_demo/ckeditor/lang/ru.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/si.js b/php/ckeditor_demo/ckeditor/lang/si.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sk.js b/php/ckeditor_demo/ckeditor/lang/sk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sl.js b/php/ckeditor_demo/ckeditor/lang/sl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sq.js b/php/ckeditor_demo/ckeditor/lang/sq.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sr-latn.js b/php/ckeditor_demo/ckeditor/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sr.js b/php/ckeditor_demo/ckeditor/lang/sr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/sv.js b/php/ckeditor_demo/ckeditor/lang/sv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/th.js b/php/ckeditor_demo/ckeditor/lang/th.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/tr.js b/php/ckeditor_demo/ckeditor/lang/tr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/ug.js b/php/ckeditor_demo/ckeditor/lang/ug.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/uk.js b/php/ckeditor_demo/ckeditor/lang/uk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/vi.js b/php/ckeditor_demo/ckeditor/lang/vi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/zh-cn.js b/php/ckeditor_demo/ckeditor/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/lang/zh.js b/php/ckeditor_demo/ckeditor/lang/zh.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/da.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/de.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/el.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/en.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/es.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/es.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/et.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/he.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/id.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/id.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/it.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/km.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/km.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/no.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/si.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/si.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/th.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/th.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/php/ckeditor_demo/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/about/dialogs/about.js b/php/ckeditor_demo/ckeditor/plugins/about/dialogs/about.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png b/php/ckeditor_demo/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/php/ckeditor_demo/ckeditor/plugins/about/dialogs/logo_ckeditor.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/clipboard/dialogs/paste.js b/php/ckeditor_demo/ckeditor/plugins/clipboard/dialogs/paste.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/colordialog/dialogs/colordialog.js b/php/ckeditor_demo/ckeditor/plugins/colordialog/dialogs/colordialog.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/dialog/dialogDefinition.js b/php/ckeditor_demo/ckeditor/plugins/dialog/dialogDefinition.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/div/dialogs/div.js b/php/ckeditor_demo/ckeditor/plugins/div/dialogs/div.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/fakeobjects/images/spacer.gif b/php/ckeditor_demo/ckeditor/plugins/fakeobjects/images/spacer.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/find/dialogs/find.js b/php/ckeditor_demo/ckeditor/plugins/find/dialogs/find.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/flash/dialogs/flash.js b/php/ckeditor_demo/ckeditor/plugins/flash/dialogs/flash.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/flash/images/placeholder.png b/php/ckeditor_demo/ckeditor/plugins/flash/images/placeholder.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/button.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/button.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/checkbox.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/checkbox.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/form.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/form.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/hiddenfield.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/hiddenfield.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/radio.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/radio.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/select.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/select.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textarea.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textarea.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textfield.js b/php/ckeditor_demo/ckeditor/plugins/forms/dialogs/textfield.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/forms/images/hiddenfield.gif b/php/ckeditor_demo/ckeditor/plugins/forms/images/hiddenfield.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/icons.png b/php/ckeditor_demo/ckeditor/plugins/icons.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/icons_hidpi.png b/php/ckeditor_demo/ckeditor/plugins/icons_hidpi.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/iframe/dialogs/iframe.js b/php/ckeditor_demo/ckeditor/plugins/iframe/dialogs/iframe.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/iframe/images/placeholder.png b/php/ckeditor_demo/ckeditor/plugins/iframe/images/placeholder.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/image/dialogs/image.js b/php/ckeditor_demo/ckeditor/plugins/image/dialogs/image.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/image/images/noimage.png b/php/ckeditor_demo/ckeditor/plugins/image/images/noimage.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/link/dialogs/anchor.js b/php/ckeditor_demo/ckeditor/plugins/link/dialogs/anchor.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/link/dialogs/link.js b/php/ckeditor_demo/ckeditor/plugins/link/dialogs/link.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/link/images/anchor.png b/php/ckeditor_demo/ckeditor/plugins/link/images/anchor.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/link/images/hidpi/anchor.png b/php/ckeditor_demo/ckeditor/plugins/link/images/hidpi/anchor.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/liststyle/dialogs/liststyle.js b/php/ckeditor_demo/ckeditor/plugins/liststyle/dialogs/liststyle.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/magicline/images/hidpi/icon.png b/php/ckeditor_demo/ckeditor/plugins/magicline/images/hidpi/icon.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/magicline/images/icon.png b/php/ckeditor_demo/ckeditor/plugins/magicline/images/icon.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/pagebreak/images/pagebreak.gif b/php/ckeditor_demo/ckeditor/plugins/pagebreak/images/pagebreak.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/pastefromword/filter/default.js b/php/ckeditor_demo/ckeditor/plugins/pastefromword/filter/default.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/preview/preview.html b/php/ckeditor_demo/ckeditor/plugins/preview/preview.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/scayt/LICENSE.md b/php/ckeditor_demo/ckeditor/plugins/scayt/LICENSE.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/scayt/README.md b/php/ckeditor_demo/ckeditor/plugins/scayt/README.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/options.js b/php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/options.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/toolbar.css b/php/ckeditor_demo/ckeditor/plugins/scayt/dialogs/toolbar.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_address.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_address.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_blockquote.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_blockquote.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_div.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_div.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h1.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h1.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h2.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h2.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h3.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h3.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h4.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h4.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h5.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h5.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h6.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_h6.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_p.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_p.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_pre.png b/php/ckeditor_demo/ckeditor/plugins/showblocks/images/block_pre.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/dialogs/smiley.js b/php/ckeditor_demo/ckeditor/plugins/smiley/dialogs/smiley.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/angel_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/angel_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/angry_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/angry_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/broken_heart.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/broken_heart.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/confused_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/confused_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/cry_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/cry_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/devil_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/devil_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/embaressed_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/embaressed_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/embarrassed_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/embarrassed_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/envelope.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/envelope.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/heart.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/heart.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/kiss.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/kiss.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/lightbulb.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/lightbulb.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/omg_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/omg_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/regular_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/regular_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/sad_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/sad_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/shades_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/shades_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/teeth_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/teeth_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_down.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_down.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_up.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/thumbs_up.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/tongue_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/tongue_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/tounge_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/tounge_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/smiley/images/wink_smile.gif b/php/ckeditor_demo/ckeditor/plugins/smiley/images/wink_smile.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ar.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ar.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/bg.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/bg.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cs.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/cy.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/de.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/de.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/el.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/el.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/en.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/en.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/eo.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/es.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/es.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/et.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/et.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fa.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/fr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/gl.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/gl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/he.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/he.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hu.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/hu.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/id.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/id.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/it.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/it.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ja.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ja.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ku.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/lv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nb.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/nl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/no.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/no.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pl.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/pt.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ru.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ru.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/si.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/si.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sl.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sl.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sq.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sq.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sv.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/sv.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/th.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/th.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/tr.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/ug.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/uk.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/uk.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/vi.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/vi.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/specialchar.js b/php/ckeditor_demo/ckeditor/plugins/specialchar/dialogs/specialchar.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/table/dialogs/table.js b/php/ckeditor_demo/ckeditor/plugins/table/dialogs/table.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/tabletools/dialogs/tableCell.js b/php/ckeditor_demo/ckeditor/plugins/tabletools/dialogs/tableCell.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.css b/php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.js b/php/ckeditor_demo/ckeditor/plugins/templates/dialogs/templates.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/templates/default.js b/php/ckeditor_demo/ckeditor/plugins/templates/templates/default.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template1.gif b/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template1.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template2.gif b/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template2.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template3.gif b/php/ckeditor_demo/ckeditor/plugins/templates/templates/images/template3.gif old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/LICENSE.md b/php/ckeditor_demo/ckeditor/plugins/wsc/LICENSE.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/README.md b/php/ckeditor_demo/ckeditor/plugins/wsc/README.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/ciframe.html b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/ciframe.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmp.html b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmp.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/tmpFrameset.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.css b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.js b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc_ie.js b/php/ckeditor_demo/ckeditor/plugins/wsc/dialogs/wsc_ie.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/ajax.html b/php/ckeditor_demo/ckeditor/samples/ajax.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/api.html b/php/ckeditor_demo/ckeditor/samples/api.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/appendto.html b/php/ckeditor_demo/ckeditor/samples/appendto.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/inlineall/logo.png b/php/ckeditor_demo/ckeditor/samples/assets/inlineall/logo.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/outputxhtml/outputxhtml.css b/php/ckeditor_demo/ckeditor/samples/assets/outputxhtml/outputxhtml.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/posteddata.php b/php/ckeditor_demo/ckeditor/samples/assets/posteddata.php old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/sample.css b/php/ckeditor_demo/ckeditor/samples/assets/sample.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/sample.jpg b/php/ckeditor_demo/ckeditor/samples/assets/sample.jpg old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/assets/uilanguages/languages.js b/php/ckeditor_demo/ckeditor/samples/assets/uilanguages/languages.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/datafiltering.html b/php/ckeditor_demo/ckeditor/samples/datafiltering.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/divreplace.html b/php/ckeditor_demo/ckeditor/samples/divreplace.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/index.html b/php/ckeditor_demo/ckeditor/samples/index.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/inlineall.html b/php/ckeditor_demo/ckeditor/samples/inlineall.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/inlinebycode.html b/php/ckeditor_demo/ckeditor/samples/inlinebycode.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/inlinetextarea.html b/php/ckeditor_demo/ckeditor/samples/inlinetextarea.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/jquery.html b/php/ckeditor_demo/ckeditor/samples/jquery.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/dialog/assets/my_dialog.js b/php/ckeditor_demo/ckeditor/samples/plugins/dialog/assets/my_dialog.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/dialog/dialog.html b/php/ckeditor_demo/ckeditor/samples/plugins/dialog/dialog.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/enterkey/enterkey.html b/php/ckeditor_demo/ckeditor/samples/plugins/enterkey/enterkey.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla b/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf b/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js b/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputforflash.html b/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputforflash.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputhtml.html b/php/ckeditor_demo/ckeditor/samples/plugins/htmlwriter/outputhtml.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/magicline/magicline.html b/php/ckeditor_demo/ckeditor/samples/plugins/magicline/magicline.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/toolbar/toolbar.html b/php/ckeditor_demo/ckeditor/samples/plugins/toolbar/toolbar.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/plugins/wysiwygarea/fullpage.html b/php/ckeditor_demo/ckeditor/samples/plugins/wysiwygarea/fullpage.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/readonly.html b/php/ckeditor_demo/ckeditor/samples/readonly.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/replacebyclass.html b/php/ckeditor_demo/ckeditor/samples/replacebyclass.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/replacebycode.html b/php/ckeditor_demo/ckeditor/samples/replacebycode.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/sample.css b/php/ckeditor_demo/ckeditor/samples/sample.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/sample.js b/php/ckeditor_demo/ckeditor/samples/sample.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/sample_posteddata.php b/php/ckeditor_demo/ckeditor/samples/sample_posteddata.php old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/tabindex.html b/php/ckeditor_demo/ckeditor/samples/tabindex.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/uicolor.html b/php/ckeditor_demo/ckeditor/samples/uicolor.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/uilanguages.html b/php/ckeditor_demo/ckeditor/samples/uilanguages.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/samples/xhtmlstyle.html b/php/ckeditor_demo/ckeditor/samples/xhtmlstyle.html old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie7.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie7.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie8.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog_ie8.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog_iequirks.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog_iequirks.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/dialog_opera.css b/php/ckeditor_demo/ckeditor/skins/moono/dialog_opera.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor.css b/php/ckeditor_demo/ckeditor/skins/moono/editor.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor_gecko.css b/php/ckeditor_demo/ckeditor/skins/moono/editor_gecko.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor_ie.css b/php/ckeditor_demo/ckeditor/skins/moono/editor_ie.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor_ie7.css b/php/ckeditor_demo/ckeditor/skins/moono/editor_ie7.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor_ie8.css b/php/ckeditor_demo/ckeditor/skins/moono/editor_ie8.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/editor_iequirks.css b/php/ckeditor_demo/ckeditor/skins/moono/editor_iequirks.css old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/icons.png b/php/ckeditor_demo/ckeditor/skins/moono/icons.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/icons_hidpi.png b/php/ckeditor_demo/ckeditor/skins/moono/icons_hidpi.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/arrow.png b/php/ckeditor_demo/ckeditor/skins/moono/images/arrow.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/close.png b/php/ckeditor_demo/ckeditor/skins/moono/images/close.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/close.png b/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/close.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock-open.png b/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock-open.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock.png b/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/lock.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/refresh.png b/php/ckeditor_demo/ckeditor/skins/moono/images/hidpi/refresh.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/lock-open.png b/php/ckeditor_demo/ckeditor/skins/moono/images/lock-open.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/lock.png b/php/ckeditor_demo/ckeditor/skins/moono/images/lock.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/images/refresh.png b/php/ckeditor_demo/ckeditor/skins/moono/images/refresh.png old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/skins/moono/readme.md b/php/ckeditor_demo/ckeditor/skins/moono/readme.md old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/ckeditor/styles.js b/php/ckeditor_demo/ckeditor/styles.js old mode 100644 new mode 100755 diff --git a/php/ckeditor_demo/jquery-1.7.1.min.js b/php/ckeditor_demo/jquery-1.7.1.min.js old mode 100644 new mode 100755 diff --git a/php/common_function.php b/php/common_function.php old mode 100644 new mode 100755 diff --git a/php/email_demo/demo.php b/php/email_demo/demo.php old mode 100644 new mode 100755 diff --git a/php/email_demo/readme.md b/php/email_demo/readme.md old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_export/demo_1.php b/php/excel_demo/excel_export/demo_1.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_export/readme.md b/php/excel_demo/excel_export/readme.md old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel.php b/php/excel_demo/excel_read/Classes/PHPExcel.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Autoloader.php b/php/excel_demo/excel_read/Classes/PHPExcel/Autoloader.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/APC.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/APC.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/CacheBase.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/CacheBase.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/ICache.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/ICache.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memcache.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memcache.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memory.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Memory.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Wincache.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorage/Wincache.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorageFactory.php b/php/excel_demo/excel_read/Classes/PHPExcel/CachedObjectStorageFactory.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Database.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Database.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/DateTime.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/DateTime.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Engineering.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Engineering.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Exception.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Exception.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/ExceptionHandler.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/ExceptionHandler.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Financial.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Financial.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaParser.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaParser.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaToken.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/FormulaToken.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Function.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Function.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Functions.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Functions.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Logical.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Logical.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/LookupRef.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/LookupRef.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/MathTrig.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/MathTrig.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Statistical.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/Statistical.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/TextData.php b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/TextData.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/functionlist.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Calculation/functionlist.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/AdvancedValueBinder.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/AdvancedValueBinder.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataType.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataType.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataValidation.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DataValidation.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DefaultValueBinder.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/DefaultValueBinder.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/Hyperlink.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/Hyperlink.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Cell/IValueBinder.php b/php/excel_demo/excel_read/Classes/PHPExcel/Cell/IValueBinder.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Comment.php b/php/excel_demo/excel_read/Classes/PHPExcel/Comment.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/DocumentProperties.php b/php/excel_demo/excel_read/Classes/PHPExcel/DocumentProperties.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/DocumentSecurity.php b/php/excel_demo/excel_read/Classes/PHPExcel/DocumentSecurity.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/HashTable.php b/php/excel_demo/excel_read/Classes/PHPExcel/HashTable.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/IComparable.php b/php/excel_demo/excel_read/Classes/PHPExcel/IComparable.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/IOFactory.php b/php/excel_demo/excel_read/Classes/PHPExcel/IOFactory.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/NamedRange.php b/php/excel_demo/excel_read/Classes/PHPExcel/NamedRange.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/CSV.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/CSV.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/DefaultReadFilter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/DefaultReadFilter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2003XML.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2003XML.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007/Theme.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel2007/Theme.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5/Escher.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Excel5/Escher.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Gnumeric.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/Gnumeric.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReadFilter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReadFilter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReader.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/IReader.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/OOCalc.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/OOCalc.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Reader/SYLK.php b/php/excel_demo/excel_read/Classes/PHPExcel/Reader/SYLK.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/ReferenceHelper.php b/php/excel_demo/excel_read/Classes/PHPExcel/ReferenceHelper.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/RichText.php b/php/excel_demo/excel_read/Classes/PHPExcel/RichText.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/RichText/ITextElement.php b/php/excel_demo/excel_read/Classes/PHPExcel/RichText/ITextElement.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/RichText/Run.php b/php/excel_demo/excel_read/Classes/PHPExcel/RichText/Run.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/RichText/TextElement.php b/php/excel_demo/excel_read/Classes/PHPExcel/RichText/TextElement.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Settings.php b/php/excel_demo/excel_read/Classes/PHPExcel/Settings.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/CodePage.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/CodePage.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Date.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Date.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Drawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Drawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Excel5.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Excel5.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/File.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/File.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Font.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/Font.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/Matrix.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/Matrix.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/docs.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/docs.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/download.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/download.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/example.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/example.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/credits.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/credits.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/footer.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/footer.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/header.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/header.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/navbar.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/includes/navbar.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/index.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/index.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/package.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/package.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/test.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/docs/test.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LMQuadTest.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LMQuadTest.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation2.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LagrangeInterpolation2.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LevenbergMarquardt.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/LevenbergMarquardt.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/MagicSquareExample.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/MagicSquareExample.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/Stats.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/Stats.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/benchmark.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/benchmark.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/polyfit.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/polyfit.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/tile.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/examples/tile.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/tests/TestMatrix.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/tests/TestMatrix.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Error.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Error.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Maths.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/JAMA/utils/Maths.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/File.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/File.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/Root.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLE/PPS/Root.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLERead.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/OLERead.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/readme.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PCLZip/readme.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/2dbarcodes.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/2dbarcodes.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/CHANGELOG.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/CHANGELOG.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/LICENSE.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/LICENSE.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/README.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/README.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/barcodes.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/barcodes.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_1.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_1.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_2.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/chapter_demo_2.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/table_data_demo.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/table_data_demo.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/utf8test.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/cache/utf8test.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/bra.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/bra.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/eng.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/eng.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ger.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ger.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ita.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/lang/ita.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config_alt.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/config/tcpdf_config_alt.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/README.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/README.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/ZarBold.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/almohanad.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-simplified.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-simplified.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-traditional.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-chinese-traditional.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-japanese.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-japanese.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-korean.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0-korean.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/arialunicid0.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/chinese.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/chinese.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/courier.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/courier.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/AUTHORS b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/AUTHORS old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/BUGS b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/BUGS old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/LICENSE b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/LICENSE old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/NEWS b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/NEWS old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/README b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/README old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/langcover.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/langcover.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/status.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/status.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/unicover.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavu-fonts-ttf-2.30/unicover.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusans.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensed.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusanscondensedi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmono.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonob.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonobi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavusansmonoi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserif.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensed.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifcondensedi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/dejavuserifi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/AUTHORS b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/AUTHORS old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/COPYING b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/COPYING old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/CREDITS b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/CREDITS old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/ChangeLog b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/ChangeLog old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/INSTALL b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/INSTALL old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/README b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freefont-20090104/README old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemono.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonob.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonobi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freemonoi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesans.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freesansi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserif.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifb.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifbi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.ctg.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.ctg.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.z b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/freeserifi.z old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helvetica.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helvetica.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticab.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticab.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticabi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticabi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticai.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/helveticai.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/hysmyeongjostdmedium.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/hysmyeongjostdmedium.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozgopromedium.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozgopromedium.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozminproregular.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/kozminproregular.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/msungstdlight.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/msungstdlight.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/stsongstdlight.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/stsongstdlight.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/symbol.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/symbol.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/times.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/times.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesb.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesb.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesbi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesbi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesi.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/timesi.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ac15.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ac15.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ag15.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ag15.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_aj16.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_aj16.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ak12.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/uni2cid_ak12.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/README.TXT b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/README.TXT old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1250.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1250.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1251.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1251.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1252.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1252.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1253.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1253.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1254.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1254.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1255.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1255.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1257.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1257.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1258.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp1258.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp874.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/cp874.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-1.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-1.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-11.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-11.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-15.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-15.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-16.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-16.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-2.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-2.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-4.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-4.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-5.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-5.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-7.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-7.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-9.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/iso-8859-9.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-r.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-r.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-u.map b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/enc/koi8-u.map old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/freetype6.dll b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/freetype6.dll old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makeallttffonts.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makeallttffonts.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makefont.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/makefont.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/pfm2afm b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/pfm2afm old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/pfm2afm-src.tar.gz b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/pfm2afm-src.tar.gz old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/readme.txt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/readme.txt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/ttf2ufm-src.tar.gz b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/src/ttf2ufm-src.tar.gz old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/ttf2ufm b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/ttf2ufm old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/zlib1.dll b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/utils/zlib1.dll old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zapfdingbats.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zapfdingbats.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zarbold.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/fonts/zarbold.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/htmlcolors.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/htmlcolors.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/_blank.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/_blank.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/alpha.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/alpha.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/bug.eps b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/bug.eps old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_demo.jpg b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_demo.jpg old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_with_alpha.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/image_with_alpha.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/img.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/img.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.gif b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.gif old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.jpg b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.jpg old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/logo_example.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/pelican.ai b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/pelican.ai old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_cell.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_cell.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_logo.jpg b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_logo.jpg old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_signature.png b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tcpdf_signature.png old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/testsvg.svg b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/testsvg.svg old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tiger.ai b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tiger.ai old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tux.svg b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/images/tux.svg old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/pdf417.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/pdf417.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/qrcode.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/qrcode.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.crt b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.crt old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.fdf b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.fdf old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.p12 b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.p12 old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/tcpdf.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/unicode_data.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PDF/unicode_data.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PasswordHasher.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/PasswordHasher.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/String.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/String.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/XMLWriter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/XMLWriter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipArchive.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipArchive.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipStreamWrapper.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/ZipStreamWrapper.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/bestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/bestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/linearBestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/linearBestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/powerBestFitClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/powerBestFitClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/trendClass.php b/php/excel_demo/excel_read/Classes/PHPExcel/Shared/trend/trendClass.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Alignment.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Alignment.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Border.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Border.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Borders.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Borders.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Color.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Color.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Conditional.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Conditional.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Fill.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Fill.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Font.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Font.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/NumberFormat.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/NumberFormat.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Style/Protection.php b/php/excel_demo/excel_read/Classes/PHPExcel/Style/Protection.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/BaseDrawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/BaseDrawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/CellIterator.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/CellIterator.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/ColumnDimension.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/ColumnDimension.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing/Shadow.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Drawing/Shadow.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/MemoryDrawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/MemoryDrawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageMargins.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageMargins.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageSetup.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/PageSetup.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Protection.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Protection.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Row.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/Row.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowDimension.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowDimension.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowIterator.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/RowIterator.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/SheetView.php b/php/excel_demo/excel_read/Classes/PHPExcel/Worksheet/SheetView.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/WorksheetIterator.php b/php/excel_demo/excel_read/Classes/PHPExcel/WorksheetIterator.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/CSV.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/CSV.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Comments.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Comments.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/DocProps.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/DocProps.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Drawing.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Drawing.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Rels.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Rels.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/StringTable.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/StringTable.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Style.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Style.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Theme.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Theme.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Workbook.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Workbook.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Worksheet.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/Worksheet.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/WriterPart.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel2007/WriterPart.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Escher.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Escher.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Font.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Font.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Parser.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Parser.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Workbook.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Workbook.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Worksheet.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Worksheet.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Xf.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/Excel5/Xf.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/HTML.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/HTML.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/IWriter.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/IWriter.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/Writer/PDF.php b/php/excel_demo/excel_read/Classes/PHPExcel/Writer/PDF.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/cs/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/da/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/da/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/da/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/da/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/de/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/de/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/de/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/de/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/en/uk/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/en/uk/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/es/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/es/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/es/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/es/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/fi/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/fr/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/hu/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/it/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/it/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/it/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/it/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/nl/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/no/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/no/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/no/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/no/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pl/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/br/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/pt/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/ru/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/config b/php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/config old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/functions b/php/excel_demo/excel_read/Classes/PHPExcel/locale/sv/functions old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/demo.php b/php/excel_demo/excel_read/demo.php old mode 100644 new mode 100755 diff --git a/php/excel_demo/excel_read/readme.md b/php/excel_demo/excel_read/readme.md old mode 100644 new mode 100755 diff --git a/php/excel_demo/readme.php b/php/excel_demo/readme.php old mode 100644 new mode 100755 diff --git a/php/image_captcha/readme.md b/php/image_captcha/readme.md old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/1.jpg b/php/pic_switch_demo/images/1.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/11.jpg b/php/pic_switch_demo/images/11.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/2.jpg b/php/pic_switch_demo/images/2.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/22.jpg b/php/pic_switch_demo/images/22.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/3.jpg b/php/pic_switch_demo/images/3.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/33.jpg b/php/pic_switch_demo/images/33.jpg old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/banner_img_07.png b/php/pic_switch_demo/images/banner_img_07.png old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/images/banner_img_09.png b/php/pic_switch_demo/images/banner_img_09.png old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/jquery-1.9.0.min.js b/php/pic_switch_demo/jquery-1.9.0.min.js old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/pic_switch.css b/php/pic_switch_demo/pic_switch.css old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/pic_switch.html b/php/pic_switch_demo/pic_switch.html old mode 100644 new mode 100755 diff --git a/php/pic_switch_demo/pic_switch.js b/php/pic_switch_demo/pic_switch.js old mode 100644 new mode 100755 diff --git "a/php/pic_switch_demo/\350\257\264\346\230\216.txt" "b/php/pic_switch_demo/\350\257\264\346\230\216.txt" old mode 100644 new mode 100755 diff --git a/php/readme.md b/php/readme.md old mode 100644 new mode 100755 diff --git a/php/statistics_demo/README.md b/php/statistics_demo/README.md old mode 100644 new mode 100755 diff --git a/php/statistics_demo/demo.jpg b/php/statistics_demo/demo.jpg old mode 100644 new mode 100755 diff --git a/php/statistics_demo/viewdemo.html b/php/statistics_demo/viewdemo.html old mode 100644 new mode 100755 diff --git a/php/waterfall/data.php b/php/waterfall/data.php old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P1.jpg b/php/waterfall/images/P1.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P10.jpg b/php/waterfall/images/P10.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P11.jpg b/php/waterfall/images/P11.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P12.jpg b/php/waterfall/images/P12.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P13.jpg b/php/waterfall/images/P13.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P14.jpg b/php/waterfall/images/P14.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P15.jpg b/php/waterfall/images/P15.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P16.jpg b/php/waterfall/images/P16.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P17.jpg b/php/waterfall/images/P17.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P18.jpg b/php/waterfall/images/P18.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P19.jpg b/php/waterfall/images/P19.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P2.jpg b/php/waterfall/images/P2.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P20.jpg b/php/waterfall/images/P20.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P21.jpg b/php/waterfall/images/P21.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P22.jpg b/php/waterfall/images/P22.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P23.jpg b/php/waterfall/images/P23.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P24.jpg b/php/waterfall/images/P24.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P25.jpg b/php/waterfall/images/P25.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P26.jpg b/php/waterfall/images/P26.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P27.jpg b/php/waterfall/images/P27.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P28.jpg b/php/waterfall/images/P28.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P29.jpg b/php/waterfall/images/P29.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P3.jpg b/php/waterfall/images/P3.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P30.jpg b/php/waterfall/images/P30.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P31.jpg b/php/waterfall/images/P31.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P32.jpg b/php/waterfall/images/P32.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P33.jpg b/php/waterfall/images/P33.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P34.jpg b/php/waterfall/images/P34.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P35.jpg b/php/waterfall/images/P35.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P36.jpg b/php/waterfall/images/P36.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P37.jpg b/php/waterfall/images/P37.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P38.jpg b/php/waterfall/images/P38.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P39.jpg b/php/waterfall/images/P39.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P4.jpg b/php/waterfall/images/P4.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P40.jpg b/php/waterfall/images/P40.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P41.jpg b/php/waterfall/images/P41.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P42.jpg b/php/waterfall/images/P42.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P43.jpg b/php/waterfall/images/P43.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P44.jpg b/php/waterfall/images/P44.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P5.jpg b/php/waterfall/images/P5.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P6.jpg b/php/waterfall/images/P6.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P7.jpg b/php/waterfall/images/P7.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P8.jpg b/php/waterfall/images/P8.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/images/P9.jpg b/php/waterfall/images/P9.jpg old mode 100644 new mode 100755 diff --git a/php/waterfall/index.html b/php/waterfall/index.html old mode 100644 new mode 100755 diff --git a/php/waterfall/js/jquery-1.7.2.min.js b/php/waterfall/js/jquery-1.7.2.min.js old mode 100644 new mode 100755 diff --git a/php/waterfall/js/jquery.windswaterflow.js b/php/waterfall/js/jquery.windswaterflow.js old mode 100644 new mode 100755 diff --git a/php/waterfall/readme.md b/php/waterfall/readme.md old mode 100644 new mode 100755 diff --git "a/php/waterfall/\347\200\221\345\270\203\346\265\201demo.wps" "b/php/waterfall/\347\200\221\345\270\203\346\265\201demo.wps" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/My97DatePicker.htm" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/My97DatePicker.htm" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/WdatePicker.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/WdatePicker.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/calendar.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/calendar.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/config.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/config.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/en.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/en.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-cn.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-cn.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-tw.js" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/lang/zh-tw.js" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/WdatePicker.css" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/WdatePicker.css" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/datePicker.gif" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/datePicker.gif" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/datepicker.css" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/datepicker.css" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/img.gif" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/default/img.gif" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/bg.jpg" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/bg.jpg" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/datepicker.css" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/datepicker.css" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/img.gif" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/My97DatePicker/skin/whyGreen/img.gif" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/back_credit_card.php" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/back_credit_card.php" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/index.html" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/index.html" old mode 100644 new mode 100755 diff --git "a/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/readme.md" "b/php/\344\273\273\345\212\241----\350\216\267\345\217\226\346\227\245\346\234\237\344\270\255\351\227\264\345\200\274/sulong/readme.md" old mode 100644 new mode 100755 diff --git a/python/readme.md b/python/readme.md old mode 100644 new mode 100755 diff --git a/shell/readme.md b/shell/readme.md old mode 100644 new mode 100755 From eaf67a7fd8b7c496d575c35bae5b9353b33d14ae Mon Sep 17 00:00:00 2001 From: ningyachao <512383711@qq.com> Date: Tue, 8 Sep 2015 15:27:39 +0800 Subject: [PATCH 75/88] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E6=89=80=E6=9C=89.svn/?= =?UTF-8?q?=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../My97DatePicker/lang/.svn/entries | 130 ---------- .../lang/.svn/prop-base/en.js.svn-base | 5 - .../lang/.svn/prop-base/zh-cn.js.svn-base | 5 - .../lang/.svn/prop-base/zh-tw.js.svn-base | 5 - .../lang/.svn/text-base/en.js.svn-base | 12 - .../lang/.svn/text-base/zh-cn.js.svn-base | 12 - .../lang/.svn/text-base/zh-tw.js.svn-base | 12 - .../My97DatePicker/skin/.svn/entries | 102 -------- .../.svn/prop-base/WdatePicker.css.svn-base | 5 - .../.svn/prop-base/datePicker.gif.svn-base | 9 - .../.svn/text-base/WdatePicker.css.svn-base | 10 - .../.svn/text-base/datePicker.gif.svn-base | Bin 1043 -> 0 bytes .../My97DatePicker/skin/default/.svn/entries | 96 ------- .../.svn/prop-base/datepicker.css.svn-base | 5 - .../default/.svn/prop-base/img.gif.svn-base | 9 - .../.svn/text-base/datepicker.css.svn-base | 237 ----------------- .../default/.svn/text-base/img.gif.svn-base | Bin 1578 -> 0 bytes .../My97DatePicker/skin/whyGreen/.svn/entries | 130 ---------- .../whyGreen/.svn/prop-base/bg.jpg.svn-base | 9 - .../.svn/prop-base/datepicker.css.svn-base | 5 - .../whyGreen/.svn/prop-base/img.gif.svn-base | 9 - .../whyGreen/.svn/text-base/bg.jpg.svn-base | Bin 307 -> 0 bytes .../.svn/text-base/datepicker.css.svn-base | 243 ------------------ .../whyGreen/.svn/text-base/img.gif.svn-base | Bin 1679 -> 0 bytes 24 files changed, 1050 deletions(-) delete mode 100644 javascript/date_time_picker/My97DatePicker/lang/.svn/entries delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base delete mode 100644 javascript/date_time_picker/My97DatePicker/skin/.svn/entries delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base delete mode 100644 javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base delete mode 100644 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base delete mode 100755 javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/entries b/javascript/date_time_picker/My97DatePicker/lang/.svn/entries deleted file mode 100644 index ea00354..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/entries +++ /dev/null @@ -1,130 +0,0 @@ -10 - -dir -8665 -svn://192.168.9.224:3709/script/My97DatePicker/lang -svn://192.168.9.224:3709 - - - -2013-12-16T08:51:29.937790Z -5730 -hanshaobo - - - - - - - - - - - - - - -6cf78c6e-06f2-4fb7-8a74-f578e921f8ef - -zh-tw.js -file - - - - -2015-03-12T07:35:02.456531Z -a4c09728c9524193c5b8f48aee304076 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -382 - -zh-cn.js -file - - - - -2015-03-12T07:35:02.456531Z -e0f9bf5fcb5bc718d31b976504448855 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -383 - -en.js -file - - - - -2015-03-12T07:35:02.456531Z -572900ed3f7553d0ebbc3067cfa8f57a -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -415 - diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/en.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base deleted file mode 100755 index 6923a38..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/en.js.svn-base +++ /dev/null @@ -1,12 +0,0 @@ -var $lang={ -errAlertMsg: "Invalid date or the date out of range,redo or not?", -aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], -aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], -clearStr: "Clear", -todayStr: "Today", -okStr: "OK", -updateStr: "OK", -timeStr: "Time", -quickStr: "Quick Selection", -err_1: 'MinDate Cannot be bigger than MaxDate!' -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base deleted file mode 100755 index 76ce7df..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base +++ /dev/null @@ -1,12 +0,0 @@ -var $lang={ -errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", -aWeekStr: ["","","һ","","","","",""], -aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], -clearStr: "", -todayStr: "", -okStr: "ȷ", -updateStr: "ȷ", -timeStr: "ʱ", -quickStr: "ѡ", -err_1: 'Сڲܴ!' -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base b/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base deleted file mode 100755 index bd979f7..0000000 --- a/javascript/date_time_picker/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base +++ /dev/null @@ -1,12 +0,0 @@ -var $lang={ -errAlertMsg: "Ϸڸʽڳ޶,ҪN?", -aWeekStr: ["","","һ","","","","",""], -aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], -clearStr: "", -todayStr: "", -okStr: "_", -updateStr: "_", -timeStr: "rg", -quickStr: "x", -err_1: 'Сڲܴ!' -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/.svn/entries deleted file mode 100644 index 15d4ba5..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/.svn/entries +++ /dev/null @@ -1,102 +0,0 @@ -10 - -dir -8665 -svn://192.168.9.224:3709/script/My97DatePicker/skin -svn://192.168.9.224:3709 - - - -2013-12-16T08:51:29.937790Z -5730 -hanshaobo - - - - - - - - - - - - - - -6cf78c6e-06f2-4fb7-8a74-f578e921f8ef - -default -dir - -whyGreen -dir - -WdatePicker.css -file - - - - -2015-03-12T07:35:02.468531Z -53a188a6659467c66b46ded6f8e0484a -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -158 - -datePicker.gif -file - - - - -2015-03-12T07:35:02.468531Z -d6bfd22c5e8cdb08165658ea9cc40be7 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -1043 - diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base deleted file mode 100755 index dbc918b..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base +++ /dev/null @@ -1,9 +0,0 @@ -K 14 -svn:executable -V 1 -* -K 13 -svn:mime-type -V 24 -application/octet-stream -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base deleted file mode 100755 index 74a75e8..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base +++ /dev/null @@ -1,10 +0,0 @@ -.Wdate{ - border:#999 1px solid; - height:20px; - background:#fff url(datePicker.gif) no-repeat right; -} - -.WdateFmtErr{ - font-weight:bold; - color:red; -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base deleted file mode 100755 index d6bf40c9f290161c87230787a1056d977d36c821..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries deleted file mode 100644 index d04e579..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/entries +++ /dev/null @@ -1,96 +0,0 @@ -10 - -dir -8665 -svn://192.168.9.224:3709/script/My97DatePicker/skin/default -svn://192.168.9.224:3709 - - - -2013-12-16T08:51:29.937790Z -5730 -hanshaobo - - - - - - - - - - - - - - -6cf78c6e-06f2-4fb7-8a74-f578e921f8ef - -img.gif -file - - - - -2015-03-12T07:35:02.460531Z -ed11a2b68742ccf22763d3e8f2454516 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -1578 - -datepicker.css -file - - - - -2015-03-12T07:35:02.460531Z -1650f9d02772e45f12be2c2347b86c92 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -4560 - diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base deleted file mode 100755 index dbc918b..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base +++ /dev/null @@ -1,9 +0,0 @@ -K 14 -svn:executable -V 1 -* -K 13 -svn:mime-type -V 24 -application/octet-stream -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base deleted file mode 100755 index d516e22..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base +++ /dev/null @@ -1,237 +0,0 @@ -/* - * My97 DatePicker 4.1 - * Ƥ:default - * Ƥ:My97 - */ - -/* ѡ DIV */ -.WdateDiv{ - width:180px; - background-color:#FFFFFF; - border:#bbb 1px solid; - padding:2px; -} -.WdateDiv *{font-size:9pt;} - -/**************************** - * ͼ - ***************************/ -.WdateDiv .NavImg { - cursor:pointer; - width:16px; - height:16px; - margin-top:1px; -} -.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } -.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } -.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } -.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } - -/**************************** - * · - ***************************/ -/* · DIV */ -.WdateDiv #dpTitle{ - height:24px; - margin-bottom:2px; - padding:1px; -} -/* · INPUT */ -.WdateDiv .yminput{ - margin-top:2px; - text-align:center; - border:0px; - height:16px; - width:50px; - cursor:pointer; -} -/* ·ýʱʽ INPUT */ -.WdateDiv .yminputfocus{ - margin-top:2px; - text-align:center; - font-weight:bold; - color:blue; - border:#ccc 1px solid; - height:16px; - width:50px; -} -/* ˵ѡ DIV */ -.WdateDiv .menuSel{ - position:absolute; - background-color:#FFFFFF; - border:#ccc 1px solid; - display:none; -} -/* ˵ʽ TD */ -.WdateDiv .menu{ - cursor:pointer; - background-color:#fff; -} -/* ˵mouseoverʽ TD */ -.WdateDiv .menuOn{ - cursor:pointer; - background-color:#BEEBEE; -} -/* ˵Чʱʽ TD */ -.WdateDiv .invalidMenu{ - color:#aaa; -} -/* ѡƫ DIV */ -.WdateDiv .YMenu{ - margin-top:16px; - -} -/* ѡƫ DIV */ -.WdateDiv .MMenu{ - margin-top:16px; - *width:62px; -} -/* ʱѡλ DIV */ -.WdateDiv .hhMenu{ - margin-top:-90px; - margin-left:26px; -} -/* ѡλ DIV */ -.WdateDiv .mmMenu{ - margin-top:-46px; - margin-left:26px; -} -/* ѡλ DIV */ -.WdateDiv .ssMenu{ - margin-top:-24px; - margin-left:26px; -} - -/**************************** - * - ***************************/ - .WdateDiv .Wweek { - text-align:center; - background:#DAF3F5; - border-right:#BDEBEE 1px solid; - } -/**************************** - * , - ***************************/ -/* TR */ -.WdateDiv .MTitle{ - background-color:#BDEBEE; -} -/* TABLE */ -.WdateDiv .WdayTable{ - line-height:20px; - border:#c5d9e8 1px solid; -} -/* ڸʽ TD */ -.WdateDiv .Wday{ - cursor:pointer; -} -/* ڸmouseoverʽ TD */ -.WdateDiv .WdayOn{ - cursor:pointer; - background-color:#C0EBEF; -} -/* ĩڸʽ TD */ -.WdateDiv .Wwday{ - cursor:pointer; - color:#FF2F2F; -} -/* ĩڸmouseoverʽ TD */ -.WdateDiv .WwdayOn{ - cursor:pointer; - color:#000; - background-color:#C0EBEF; -} -.WdateDiv .Wtoday{ - cursor:pointer; - color:blue; -} -.WdateDiv .Wselday{ - background-color:#A9E4E9; -} -/* ·ݵ */ -.WdateDiv .WotherDay{ - cursor:pointer; - color:#6A6AFF; -} -/* ·ݵmouseoverʽ */ -.WdateDiv .WotherDayOn{ - cursor:pointer; - background-color:#C0EBEF; -} -/* Чڵʽ,ڷΧڸʽ,ѡ */ -.WdateDiv .WinvalidDay{ - color:#aaa; -} - -/**************************** - * ʱ - ***************************/ -/* ʱ DIV */ -.WdateDiv #dpTime{ - float:left; - margin-top:3px; - margin-right:30px; -} -/* ʱ SPAN */ -.WdateDiv #dpTime #dpTimeStr{ - margin-left:1px; -} -/* ʱ INPUT */ -.WdateDiv #dpTime input{ - height:16px; - width:18px; - text-align:center; - border:#ccc 1px solid; -} -/* ʱ ʱ INPUT */ -.WdateDiv #dpTime .tB{ - border-right:0px; -} -/* ʱ ֺͼ ':' INPUT */ -.WdateDiv #dpTime .tE{ - border-left:0; - border-right:0; -} -/* ʱ INPUT */ -.WdateDiv #dpTime .tm{ - width:7px; - border-left:0; - border-right:0; -} -/* ʱұߵϰť BUTTON */ -.WdateDiv #dpTime #dpTimeUp{ - height:10px; - width:13px; - border:0px; - background:url(img.gif) no-repeat -32px -16px; -} -/* ʱұߵ°ť BUTTON */ -.WdateDiv #dpTime #dpTimeDown{ - height:10px; - width:13px; - border:0px; - background:url(img.gif) no-repeat -48px -16px; -} -/**************************** - * - ***************************/ - .WdateDiv #dpQS { - float:left; - margin-right:3px; - margin-top:3px; - background:url(img.gif) no-repeat 0px -16px; - width:20px; - height:20px; - cursor:pointer; - } -.WdateDiv #dpControl { - text-align:right; - margin-top:3px; -} -.WdateDiv .dpButton{ - height:20px; - width:45px; - border:#ccc 1px solid; - padding:2px; -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base deleted file mode 100755 index 053205d8201a3a59fb9870c6a4743fc3efd305fa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries deleted file mode 100644 index e761a1d..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/entries +++ /dev/null @@ -1,130 +0,0 @@ -10 - -dir -8665 -svn://192.168.9.224:3709/script/My97DatePicker/skin/whyGreen -svn://192.168.9.224:3709 - - - -2013-12-16T08:51:29.937790Z -5730 -hanshaobo - - - - - - - - - - - - - - -6cf78c6e-06f2-4fb7-8a74-f578e921f8ef - -bg.jpg -file - - - - -2015-03-12T07:35:02.464531Z -21ec42adb09c1d8a4c09248f8325e53c -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -307 - -img.gif -file - - - - -2015-03-12T07:35:02.464531Z -d0570f39ca217fbf02f461ef0096d657 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -1679 - -datepicker.css -file - - - - -2015-03-12T07:35:02.464531Z -29f06da41ea571e7248086c4ae5b2948 -2013-12-16T08:51:29.937790Z -5730 -hanshaobo -has-props - - - - - - - - - - - - - - - - - - - - -4763 - diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base deleted file mode 100755 index dbc918b..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base +++ /dev/null @@ -1,9 +0,0 @@ -K 14 -svn:executable -V 1 -* -K 13 -svn:mime-type -V 24 -application/octet-stream -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base deleted file mode 100755 index 869ac71..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base +++ /dev/null @@ -1,5 +0,0 @@ -K 14 -svn:executable -V 1 -* -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base deleted file mode 100755 index dbc918b..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base +++ /dev/null @@ -1,9 +0,0 @@ -K 14 -svn:executable -V 1 -* -K 13 -svn:mime-type -V 24 -application/octet-stream -END diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base deleted file mode 100755 index 75516a6380f3a18d246e090d47999698e4193d6c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base deleted file mode 100755 index 2052c87..0000000 --- a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base +++ /dev/null @@ -1,243 +0,0 @@ -/* - * My97 DatePicker 4.1 - * Ƥ:whyGreen - * Ƥ:why - */ - -/* ѡ DIV */ -.WdateDiv{ - width:180px; - background-color:#fff; - border:#C5E1E4 1px solid; - padding:2px; -} -.WdateDiv *{font-size:9pt;} - -/**************************** - * ͼ - ***************************/ -.WdateDiv .NavImg { - cursor:pointer; - width:16px; - height:16px; - margin-top:1px; -} -.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } -.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } -.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } -.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } -/**************************** - * · - ***************************/ -/* · DIV */ -.WdateDiv #dpTitle{ - height:24px; - padding:1px; - border:#c5d9e8 1px solid; - background:url(bg.jpg); - margin-bottom:2px; -} -/* · INPUT */ -.WdateDiv .yminput{ - margin-top:2px; - text-align:center; - border:0px; - height:16px; - width:50px; - color:#034c50; - background-color:transparent; - cursor:pointer; -} -/* ·ýʱʽ INPUT */ -.WdateDiv .yminputfocus{ - margin-top:2px; - text-align:center; - border:#939393 1px solid; - font-weight:bold; - color:#034c50; - height:16px; - width:50px; -} -/* ˵ѡ DIV */ -.WdateDiv .menuSel{ - position:absolute; - background-color:#FFFFFF; - border:#A3C6C8 1px solid; - display:none; -} -/* ˵ʽ TD */ -.WdateDiv .menu{ - cursor:pointer; - background-color:#fff; - color:#11777C; -} -/* ˵mouseoverʽ TD */ -.WdateDiv .menuOn{ - cursor:pointer; - background-color:#BEEBEE; -} -/* ˵Чʱʽ TD */ -.WdateDiv .invalidMenu{ - color:#aaa; -} -/* ѡƫ DIV */ -.WdateDiv .YMenu{ - margin-top:16px; -} -/* ѡƫ DIV */ -.WdateDiv .MMenu{ - margin-top:16px; - *width:62px; -} -/* ʱѡλ DIV */ -.WdateDiv .hhMenu{ - margin-top:-90px; - margin-left:26px; -} -/* ѡλ DIV */ -.WdateDiv .mmMenu{ - margin-top:-46px; - margin-left:26px; -} -/* ѡλ DIV */ -.WdateDiv .ssMenu{ - margin-top:-24px; - margin-left:26px; -} - -/**************************** - * - ***************************/ - .WdateDiv .Wweek { - text-align:center; - background:#DAF3F5; - border-right:#BDEBEE 1px solid; - } -/**************************** - * , - ***************************/ - /* TR */ -.WdateDiv .MTitle{ - color:#13777e; - background-color:#bdebee; -} -/* TABLE */ -.WdateDiv .WdayTable{ - line-height:20px; - color:#13777e; - background-color:#edfbfb; - border:#BEE9F0 1px solid; -} -/* ڸʽ TD */ -.WdateDiv .Wday{ - cursor:pointer; -} -/* ڸmouseoverʽ TD */ -.WdateDiv .WdayOn{ - cursor:pointer; - background-color:#74d2d9 ; -} -/* ĩڸʽ TD */ -.WdateDiv .Wwday{ - cursor:pointer; - color:#ab1e1e; -} -/* ĩڸmouseoverʽ TD */ -.WdateDiv .WwdayOn{ - cursor:pointer; - background-color:#74d2d9; -} -.WdateDiv .Wtoday{ - cursor:pointer; - color:blue; -} -.WdateDiv .Wselday{ - background-color:#A7E2E7; -} -/* ·ݵ */ -.WdateDiv .WotherDay{ - cursor:pointer; - color:#0099CC; -} -/* ·ݵmouseoverʽ */ -.WdateDiv .WotherDayOn{ - cursor:pointer; - background-color:#C0EBEF; -} -/* Чڵʽ,ڷΧڸʽ,ѡ */ -.WdateDiv .WinvalidDay{ - color:#aaa; -} -/**************************** - * ʱ - ***************************/ -/* ʱ DIV */ -.WdateDiv #dpTime{ - -} -/* ʱ SPAN */ -.WdateDiv #dpTime #dpTimeStr{ - margin-left:1px; - color:#497F7F; -} -/* ʱ INPUT */ -.WdateDiv #dpTime input{ - height:16px; - width:18px; - text-align:center; - color:#333; - border:#61CAD0 1px solid; -} -/* ʱ ʱ INPUT */ -.WdateDiv #dpTime .tB{ - border-right:0px; -} -/* ʱ ֺͼ ':' INPUT */ -.WdateDiv #dpTime .tE{ - border-left:0; - border-right:0; -} -/* ʱ INPUT */ -.WdateDiv #dpTime .tm{ - width:7px; - border-left:0; - border-right:0; -} -/* ʱұߵϰť BUTTON */ -.WdateDiv #dpTime #dpTimeUp{ - height:10px; - width:13px; - border:0px; - background:url(img.gif) no-repeat -32px -16px; -} -/* ʱұߵ°ť BUTTON */ -.WdateDiv #dpTime #dpTimeDown{ - height:10px; - width:13px; - border:0px; - background:url(img.gif) no-repeat -48px -16px; -} -/**************************** - * - ***************************/ - .WdateDiv #dpQS { - float:left; - margin-right:3px; - margin-top:3px; - background:url(img.gif) no-repeat 0px -16px; - width:20px; - height:20px; - cursor:pointer; - } -.WdateDiv #dpControl { - text-align:right; - margin-top:3px; -} -.WdateDiv .dpButton{ - height:20px; - width:45px; - padding:2px; - border:#38B1B9 1px solid; - background-color:#CFEBEE; - color:#08575B; -} \ No newline at end of file diff --git a/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base b/javascript/date_time_picker/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base deleted file mode 100755 index 4003f20fb1197edf0433ff99759cb6399d0f99f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 From 5d1046762fcc80f6285d0b87cd8631b3df733a27 Mon Sep 17 00:00:00 2001 From: git test Date: Tue, 15 Sep 2015 15:23:48 +0800 Subject: [PATCH 76/88] new file: doBackup_mysql.py modified: readme.md modified: ../shell/readme.md --- python/doBackup_mysql.py | 112 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 python/doBackup_mysql.py diff --git a/python/doBackup_mysql.py b/python/doBackup_mysql.py new file mode 100644 index 0000000..c0445f8 --- /dev/null +++ b/python/doBackup_mysql.py @@ -0,0 +1,112 @@ +##################################################### +#author:wangjiazhe +#created time: 2015-01-20 +#file name: doBackup_mysql.py +#use : 用于mysql数据恢复 +##################################################### +#!/usr/sbin/python +import os,sys,tarfile +list=['db_lanmayi','db_mall','db_ucenter','db_ljmallim','db_tuan','db_webim'] +mysql='mysql -uroot -p密码 -e ' +path1='/data/work/mysql_backup/data/' +######找到相应的tar解压####### +def localdata(c): + if os.path.exists(path1) : + tar = tarfile.open(c) + names = tar.getnames() + for name in names: + tar.extract(name,path=path1) + tar.close() + else: + mkdir='mkdir -p '+path1 + os.system(mkdir) + tar231=raw_input("Please enter a remote tar package.").strip() + com='scp -P2211 spider@218.249.131.231:/backup/187-db/' + localdir=' '+path1 + g=com+tar231+localdir + os.system(g) + tarpath=localdir+tar231 + tar = tarfile.open(tarpath) + names = tar.getnames() + for name in names: + tar.extract(name,path=path1) + tar.close() + return +###################判断输入的内容############################ +while True: + print "\033[36m1.please enter the date to resume.\n2.Restore one database.\n3.Restore one table.\n4.quit\033[0m" + try: + nu=int(raw_input("please select:")) + if nu == 1 : + while True: + date=raw_input("please enter date(0000-00-00) :").strip() + fil='find '+path1+date+'*' + a=os.popen(fil) + b=a.read() + c=b.rstrip() + if os.path.isfile(c): + localdata(c) + break + else: + print "please enter a valid dtae." + elif nu == 2 : + #localdata() + while True: + dataname=raw_input("please enter database name or break:").strip() + if dataname in list : + lsdir='ls -ap '+path1+"|grep '/'|grep -v '\./'" + tdir=os.popen(lsdir) + zdir=tdir.read() + dirl=zdir.strip('\n') + pathd=path1+dirl+dataname+'_'+dirl + ls='ls ' + sqlall=ls+pathd + sql=os.popen(sqlall) + sqla=sql.readlines() + crbase=mysql+'"create database if not exists '+dataname+';'+'"' + os.system(crbase) + for i in sqla: + allsql='"use '+dataname+';'+'source '+path1+dirl+dataname+'_'+dirl+i+';"' + mysql1='mysql -uroot -p123456 -e '+allsql + os.system(mysql1) + break + elif dataname == "break" : + break + else: + print "please enter database name." + elif nu == 3 : + #localdata() + while True: + dataname=raw_input("please enter database name or break:").strip() + if dataname in list : + table=raw_input("please enter table name(*.sql):").strip() + lsdir='ls -ap '+path1+"|grep '/'|grep -v '\./'" + tdir=os.popen(lsdir) + zdir=tdir.read() + dirl=zdir.strip('\n') + crbase=mysql+'"create database if not exists '+dataname+';'+'"' + os.system(crbase) + data=dataname+'_'+dirl + mycomm=mysql+'"use '+dataname+';'+'source '+path1+dirl+data+table+';'+'"' + os.system(mycomm) + break + elif dataname == "break" : + break + else: + print "please database name." + elif nu == 4 : + rm='a='+'`ls -ap '+path1+"|grep '/'|grep -v '\./'`"+ ';for i in $a; do rm -rf '+path1+'$i; done' + lsdir='ls -ap '+path1+"|grep '/'|grep -v '\./'" + tdir=os.popen(lsdir) + zdir=tdir.read() + dirl=zdir.strip('\n') + if dirl == '': + pass + else: + os.system(rm) + sys.exit() + else: + print "\033[31mplease enter anuber 1 or 2 or 3.\033[0m" + except ValueError: + print "\033[31mPlease enter a number\033[0m" + From b0d808baaefcea0a7061f53fe93be8795598b06b Mon Sep 17 00:00:00 2001 From: git test Date: Tue, 15 Sep 2015 15:24:22 +0800 Subject: [PATCH 77/88] new file: bakup.sh new file: data_mv.sh new file: my_kill.sh modified: readme.md new file: svnbackup.sh --- shell/bakup.sh | 16 ++++++++++++++++ shell/data_mv.sh | 27 +++++++++++++++++++++++++++ shell/my_kill.sh | 19 +++++++++++++++++++ shell/readme.md | 4 ++++ shell/svnbackup.sh | 30 ++++++++++++++++++++++++++++++ 5 files changed, 96 insertions(+) create mode 100644 shell/bakup.sh create mode 100644 shell/data_mv.sh create mode 100644 shell/my_kill.sh create mode 100644 shell/svnbackup.sh diff --git a/shell/bakup.sh b/shell/bakup.sh new file mode 100644 index 0000000..11c8eec --- /dev/null +++ b/shell/bakup.sh @@ -0,0 +1,16 @@ +####################################################### +#author: wangjiazhe +#created time: 2015-06-08 +#file name:bakup.sh +#use : 打包备份dokuwiki数据 +###################################################### +#!/bin/bash +date=`date "+%Y%m%d"` #当天时间 +#############备份打包,放到备份目录里#################### +cd /home/ + +tar -zcf $date.tar.gz ./dokuwiki + +mv $date.tar.gz /bakup_dokuwiki/ +############保留15天数据##################################### +find /bakup_dokuwiki/ -mtime +15 -type f -name \*.tar.gz -exec rm -rf {} \; diff --git a/shell/data_mv.sh b/shell/data_mv.sh new file mode 100644 index 0000000..5b76212 --- /dev/null +++ b/shell/data_mv.sh @@ -0,0 +1,27 @@ +##################################################### +#author: wangjiazhe +#created time: 2015-07-22 +#file name:data_mv.sh +#use : 把uc_members表中的数据导入mall_member表中 +##################################################### +#!/bin/bash +#从uc_members表中模糊超找出username疑似是电话的 +mysql -uroot -p密码 -e "use db_ucenter; select uid,username from uc_members where username like '1%';" >./uid_name.txt +#判断出电话号码 +cat ./uid_name.txt |egrep [0-9]{11} >./iphon.txt +#从ecm_order表中查出Buyer_id和Payment_id不为0的 +for i in `cat iphon.txt|awk '{print $1}'` + do + mysql -uroot -psvntest_mysql_224 -e "use db_mall; select Payment_id,Buyer_id,buyer_name from ecm_order where Buyer_id=$i && Payment_id!='NUll';" >>./nu.txt + done +#更改数据 + +for i in `cat nu.txt|sed -n '/1/p'|awk '{print $3}'` + do + mysql -uroot -psvntest_mysql_224 -e "use db_mall; update mall_member set iphone=$i where nikename=$i; " + done + +#删除文件 +sleep 5 +rm -rf uid_name.txt iphon.txt + diff --git a/shell/my_kill.sh b/shell/my_kill.sh new file mode 100644 index 0000000..a039b2f --- /dev/null +++ b/shell/my_kill.sh @@ -0,0 +1,19 @@ +################################################## +#author: wangjiazhe +#created time: 2015-05-06 +#file name: my_kill.sh +#use : 杀掉mysql sleep状态的进程 +################################################## +#!/bin/sh +#取有多少个sleep进程 +n=`/usr/bin/mysqladmin -uroot -p密码 processlist | grep -i sleep | wc -l` +if [ "$n" -gt 50 ] + then + /usr/bin/mysqladmin -uroot -pMBBhE8qg04 processlist | grep -i sleep|sed 's/|/ /g' >>/var/log/mysql/my_kill.log +#关闭sleep进程 + for i in `/usr/bin/mysqladmin -uroot -pMBBhE8qg04 processlist | grep -i sleep | awk '{print $2}'` + do + /usr/bin/mysqladmin -uroot -pMBBhE8qg04 kill $i + done +fi + diff --git a/shell/readme.md b/shell/readme.md index e69de29..9a475b6 100755 --- a/shell/readme.md +++ b/shell/readme.md @@ -0,0 +1,4 @@ +### 说明 +* my_kill.sh --用于杀掉mysql闲置连接
+* svnbackup.sh --备份224上的svn
+* data_mv.sh --把uc_members表中的数据导入到mall_member diff --git a/shell/svnbackup.sh b/shell/svnbackup.sh new file mode 100644 index 0000000..c21bf7b --- /dev/null +++ b/shell/svnbackup.sh @@ -0,0 +1,30 @@ +####################################################### +#author: wangjiazhe +#created time: 2015-01-09 +#file name:svnback.sh +#use:备份svn数据 +####################################################### +#!/bin/bash +dump="svnadmin dump" +rep=`ls -ap /data/svndata/ |grep '/'|grep -v '\./'|sed "s/\/$//"` #取所有的版本库名 +path=/data/svndata/ #svn目录 +date=`date "+%Y%m%d"` #当天时间 +bakdir=/svn_backup/$date #备份目录 +bak=/svn_backup/ +conf=$path/db_api/conf +######把所有的版本库导出到/svn_backup +mkdir -p $bakdir +for i in $rep; +do + $dump $path/$i >$bakdir/$i 2>&1 +done +###########把备份数据打包并删除备份目录 +if [ -d $bakdir ] +then + cd $bak + cp -r $conf ./$date/ + tar -zcvf svn_$date.tar.gz $date 1>/dev/null + rm -rf $date +fi + +find $bak -mtime +1 -type f -name \*.tar.gz -exec rm -rf {} \; From c3926eda15367a34e31c4d02a2119bf6d24ebf6d Mon Sep 17 00:00:00 2001 From: wjz-cc <466561031@qq.com> Date: Tue, 15 Sep 2015 15:26:57 +0800 Subject: [PATCH 78/88] Update readme.md --- python/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/readme.md b/python/readme.md index e69de29..2bd9175 100755 --- a/python/readme.md +++ b/python/readme.md @@ -0,0 +1,2 @@ +###说明 +*doBackup_mysql.py --用于mysql数据恢复 From 1f176a649467780db331ce38ab54c5a515d37731 Mon Sep 17 00:00:00 2001 From: wjz-cc <466561031@qq.com> Date: Tue, 22 Sep 2015 15:44:16 +0800 Subject: [PATCH 79/88] Update readme.md --- shell/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/readme.md b/shell/readme.md index 9a475b6..651e47f 100755 --- a/shell/readme.md +++ b/shell/readme.md @@ -2,3 +2,4 @@ * my_kill.sh --用于杀掉mysql闲置连接
* svnbackup.sh --备份224上的svn
* data_mv.sh --把uc_members表中的数据导入到mall_member +* bakup.sh --备份wiki数据 From 2a0286a6de2c6c23ba09daa2bf5d772e1deb56ba Mon Sep 17 00:00:00 2001 From: zouzz Date: Tue, 7 Jun 2016 10:14:52 +0800 Subject: [PATCH 80/88] =?UTF-8?q?demo=5F2=E7=9A=84=E5=BB=B6=E4=BC=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/excel_demo/excel_export/demo_3.php | 84 ++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100755 php/excel_demo/excel_export/demo_3.php diff --git a/php/excel_demo/excel_export/demo_3.php b/php/excel_demo/excel_export/demo_3.php new file mode 100755 index 0000000..1bf0fa4 --- /dev/null +++ b/php/excel_demo/excel_export/demo_3.php @@ -0,0 +1,84 @@ +1,'string'=>'1234567890123456781','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.33); +$data[1] = array('id'=>2,'string'=>'1234567890123456782','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.44); +$data[2] = array('id'=>3,'string'=>'1234567890123456783','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.55); +$data[3] = array('id'=>4,'string'=>'1234567890123456784','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.66); +$data[4] = array('id'=>5,'string'=>'1234567890123456785','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.77); +//开始导出 +header("Content-Type:application/vnd.ms-excel"); + header("Content-Disposition:attachment;filename=".iconv("utf-8", "GB2312", 'excel_测试').".xls"); + header("Content-type: text/html; charset=utf-8"); + echo " + + + + + + ".'数字测试'." + +
+
+ + + + + + + + + + + + + + + + "; + //这行是未作处理的效果 + echo " + + + + + + + + "; + //这里开始是格式处理后的效果 + /** + * 1) 文本:vnd.ms-excel.numberformat:@ + * 2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd + * 3) 数字:vnd.ms-excel.numberformat:#,##0.00 + * 4) 货币:vnd.ms-excel.numberformat:¥#,##0.00 + * 5) 百分比:vnd.ms-excel.numberformat: #0.00% + */ + foreach ($data as $k => $v) + { + echo " + + + + + + + + "; + }; + echo "
".'几种常见excel格式处理,第一行是未作处理的数据'."
序号文本日期做完处理的数字未做处理的数字货币百分比
".$data[0]['id']." ".$data[0]['string']." ".$data[0]['date']." ".$data[0]['number']." ".$data[0]['number']." ".$data[0]['money']." ".$data[0]['percent']."
".$v['id']." ".$v['string']." ".$v['date']."".$v['number']." ".$v['number']." ".$v['money']." ".$v['percent']."
";exit; + ?> \ No newline at end of file From a012cda796025dbc21cb078917a9318d9db4e12a Mon Sep 17 00:00:00 2001 From: zouzz Date: Tue, 7 Jun 2016 10:30:21 +0800 Subject: [PATCH 81/88] =?UTF-8?q?=E5=8E=BB=E6=8E=89.svn/=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/excel_demo/excel_export/demo_3.php | 84 -------------------------- 1 file changed, 84 deletions(-) delete mode 100755 php/excel_demo/excel_export/demo_3.php diff --git a/php/excel_demo/excel_export/demo_3.php b/php/excel_demo/excel_export/demo_3.php deleted file mode 100755 index 1bf0fa4..0000000 --- a/php/excel_demo/excel_export/demo_3.php +++ /dev/null @@ -1,84 +0,0 @@ -1,'string'=>'1234567890123456781','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.33); -$data[1] = array('id'=>2,'string'=>'1234567890123456782','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.44); -$data[2] = array('id'=>3,'string'=>'1234567890123456783','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.55); -$data[3] = array('id'=>4,'string'=>'1234567890123456784','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.66); -$data[4] = array('id'=>5,'string'=>'1234567890123456785','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.77); -//开始导出 -header("Content-Type:application/vnd.ms-excel"); - header("Content-Disposition:attachment;filename=".iconv("utf-8", "GB2312", 'excel_测试').".xls"); - header("Content-type: text/html; charset=utf-8"); - echo " - - - - - - ".'数字测试'." - -
- - - - - - - - - - - - - - - - - "; - //这行是未作处理的效果 - echo " - - - - - - - - "; - //这里开始是格式处理后的效果 - /** - * 1) 文本:vnd.ms-excel.numberformat:@ - * 2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd - * 3) 数字:vnd.ms-excel.numberformat:#,##0.00 - * 4) 货币:vnd.ms-excel.numberformat:¥#,##0.00 - * 5) 百分比:vnd.ms-excel.numberformat: #0.00% - */ - foreach ($data as $k => $v) - { - echo " - - - - - - - - "; - }; - echo "
".'几种常见excel格式处理,第一行是未作处理的数据'."
序号文本日期做完处理的数字未做处理的数字货币百分比
".$data[0]['id']." ".$data[0]['string']." ".$data[0]['date']." ".$data[0]['number']." ".$data[0]['number']." ".$data[0]['money']." ".$data[0]['percent']."
".$v['id']." ".$v['string']." ".$v['date']."".$v['number']." ".$v['number']." ".$v['money']." ".$v['percent']."
";exit; - ?> \ No newline at end of file From 69cc7c1d6db351f2e19e572d3b92306cf9654320 Mon Sep 17 00:00:00 2001 From: zouzz Date: Tue, 7 Jun 2016 10:33:02 +0800 Subject: [PATCH 82/88] =?UTF-8?q?=E5=8E=BB=E6=8E=89.svn/=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/excel_demo/excel_export/demo_4.php | 84 ++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100755 php/excel_demo/excel_export/demo_4.php diff --git a/php/excel_demo/excel_export/demo_4.php b/php/excel_demo/excel_export/demo_4.php new file mode 100755 index 0000000..1bf0fa4 --- /dev/null +++ b/php/excel_demo/excel_export/demo_4.php @@ -0,0 +1,84 @@ +1,'string'=>'1234567890123456781','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.33); +$data[1] = array('id'=>2,'string'=>'1234567890123456782','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.44); +$data[2] = array('id'=>3,'string'=>'1234567890123456783','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.55); +$data[3] = array('id'=>4,'string'=>'1234567890123456784','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.66); +$data[4] = array('id'=>5,'string'=>'1234567890123456785','date'=>'2016-05-06','number'=>312312,'money'=>'199.80','percent'=>0.77); +//开始导出 +header("Content-Type:application/vnd.ms-excel"); + header("Content-Disposition:attachment;filename=".iconv("utf-8", "GB2312", 'excel_测试').".xls"); + header("Content-type: text/html; charset=utf-8"); + echo " + + + + + + ".'数字测试'." + +
+ + + + + + + + + + + + + + + + + "; + //这行是未作处理的效果 + echo " + + + + + + + + "; + //这里开始是格式处理后的效果 + /** + * 1) 文本:vnd.ms-excel.numberformat:@ + * 2) 日期:vnd.ms-excel.numberformat:yyyy/mm/dd + * 3) 数字:vnd.ms-excel.numberformat:#,##0.00 + * 4) 货币:vnd.ms-excel.numberformat:¥#,##0.00 + * 5) 百分比:vnd.ms-excel.numberformat: #0.00% + */ + foreach ($data as $k => $v) + { + echo " + + + + + + + + "; + }; + echo "
".'几种常见excel格式处理,第一行是未作处理的数据'."
序号文本日期做完处理的数字未做处理的数字货币百分比
".$data[0]['id']." ".$data[0]['string']." ".$data[0]['date']." ".$data[0]['number']." ".$data[0]['number']." ".$data[0]['money']." ".$data[0]['percent']."
".$v['id']." ".$v['string']." ".$v['date']."".$v['number']." ".$v['number']." ".$v['money']." ".$v['percent']."
";exit; + ?> \ No newline at end of file From 3d11cc9824c117b4d90040c855eaee3545aa8e9f Mon Sep 17 00:00:00 2001 From: zouuoz Date: Tue, 7 Jun 2016 10:40:12 +0800 Subject: [PATCH 83/88] Update readme.md --- php/excel_demo/excel_export/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/php/excel_demo/excel_export/readme.md b/php/excel_demo/excel_export/readme.md index 3782c5f..1209ede 100755 --- a/php/excel_demo/excel_export/readme.md +++ b/php/excel_demo/excel_export/readme.md @@ -1,3 +1,4 @@ ### excel导出 * demo_1.php 第一种导出excel的方法 * demo_2.php 第二种导出excel的方法 +* demo_4.php 第二种方法的延伸,对于:文本、数字、日期、货币、百分比 的处理 From 2d34f995ee8bd8c1b0559fb7de1f229953135f58 Mon Sep 17 00:00:00 2001 From: lyywld <294411607@qq.com> Date: Wed, 8 Jun 2016 17:39:37 +0800 Subject: [PATCH 84/88] add demo_3.php --- php/excel_demo/excel_export/demo_3.php | 126 +++++++++++++++++++++++++ php/excel_demo/excel_export/readme.md | 1 + 2 files changed, 127 insertions(+) create mode 100755 php/excel_demo/excel_export/demo_3.php diff --git a/php/excel_demo/excel_export/demo_3.php b/php/excel_demo/excel_export/demo_3.php new file mode 100755 index 0000000..148833e --- /dev/null +++ b/php/excel_demo/excel_export/demo_3.php @@ -0,0 +1,126 @@ +setActiveSheetIndex(1); +//设置当前活动sheet的名称 +$objPHPExcel->getActiveSheet()->setTitle('测试Sheet'); + +/*------设置excel的属性(非必要属性)-----------------*/ +//创建人 +$objPHPExcel->getProperties()->setCreator("Maarten Balliauw"); +//最后修改人 +$objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw"); +//标题 +$objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document"); +//题目 +$objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document"); +//描述 +$objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes."); +//关键字 +$objPHPExcel->getProperties()->setKeywords("office 2007 openxml php"); +//种类 +$objPHPExcel->getProperties()->setCategory("Test result file"); + + +/*--------链接数据库查询--------------------------*/ + +//链接数据库 +$con = mysql_connect($host,$username,$password) or die ('database connect failed'); +//链接数据库 +mysql_select_db($dbname,$con); +//设置字符集 +mysql_query($charset); +$sql = "select * from excel_demo limit 1"; +$result = mysql_query($sql); +//设置第一行的名称 +$objPHPExcel->getActiveSheet()->SetCellValue('A1', '字符串形式数字'); +$objPHPExcel->getActiveSheet()->SetCellValue('B1', '日期'); +$objPHPExcel->getActiveSheet()->SetCellValue('C1', '数字'); +$objPHPExcel->getActiveSheet()->SetCellValue('D1', '货币'); +$objPHPExcel->getActiveSheet()->SetCellValue('E1', '百分比'); +$n = 2; +while($row = mysql_fetch_assoc($result)) +{ + //设置单元格的值 + $objPHPExcel->getActiveSheet()->setCellValueExplicit('A'.$n, $row['string'],PHPExcel_Cell_DataType::TYPE_STRING);//字符串(防止数值型字符串科学计数法) + $objPHPExcel->getActiveSheet()->SetCellValue('B'.$n,$row['date']); + $objPHPExcel->getActiveSheet()->SetCellValue('C'.$n,$row['number']); + $objPHPExcel->getActiveSheet()->SetCellValue('D'.$n,$row['money']); + $objPHPExcel->getActiveSheet()->SetCellValue('E'.$n,$row['percent']); + //设置单元格值的形式 + $objPHPExcel->getActiveSheet()->getStyle('D'.$n)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_NUMBER_COMMA_SEPARATED1);//设置金额格式 11,333.00 + $objPHPExcel->getActiveSheet()->getStyle('E'.$n)->getNumberFormat()->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_PERCENTAGE_00);//设置百分比格式 0.30 30.00% + $n++; +} +/*------------------设置单元格属性(可以将某些属性写入上面的循环里)---------------------*/ +/* +//合并单元格: +$objPHPExcel->getActiveSheet()->mergeCells('A1:B1'); +//设置单元格宽度 +$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(20); +$objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(20); +$objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(20); +$objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(20); +$objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(20); +//设置表头行高 +$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(35);//第一行 : 字符串形式数字 +$objPHPExcel->getActiveSheet()->getRowDimension(2)->setRowHeight(22);//第二行 : 日期 +//设置字体样式 +//'A1:E3' 表示从A1到E3所有单元格 +http://www.cnblogs.com/freespider/p/3284828.html +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getFont()->setName('黑体');// 黑体/宋体 +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getFont()->setSize(20); +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getFont()->setBold(true);//加粗 +$objPHPExcel->getActiveSheet()->getStyle('B1')->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE);//设置下划线 +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getFont()->getColor()->setARGB(PHPExcel_Style_Color::COLOR_RED);//设置字体颜色:红色 +//设置居中 +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getAlignment()->setHorizontal(PHPExcel_Style_Alignment::HORIZONTAL_CENTER); +//所有垂直居中 +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getAlignment()->setVertical(PHPExcel_Style_Alignment::VERTICAL_CENTER); +//设置自动换行 +$objPHPExcel->getActiveSheet()->getStyle('A1:E3')->getAlignment()->setWrapText(true); +*/ +//输出文档 + $objWriter = new PHPExcel_Writer_Excel5($objPHPExcel); + //或者$objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel);//保存excel—2007格式 + if(1 == 1) + { + //保存文件位置 + $objWriter->save($path);//保存文件 参数为文件目录及文件名 + } + //直接输出到浏览器(输出时会把文件保存到一个默认的路径,用户无法选择路径) + header("Pragma: public"); + header("Expires: 0"); + header("Cache-Control:must-revalidate,post-check=0,pre-check=0"); + header("Content-Type:application/force-download"); + header("Content-Type:application/vnd.ms-execl"); + header("Content-Type:application/octet-stream"); + header("Content-Type:application/download"); + header("Content-Disposition:attachment;filename=".$filename); + header("Content-Transfer-Encoding:binary"); + $objWriter->save("php://output"); +?> diff --git a/php/excel_demo/excel_export/readme.md b/php/excel_demo/excel_export/readme.md index 1209ede..63d4848 100755 --- a/php/excel_demo/excel_export/readme.md +++ b/php/excel_demo/excel_export/readme.md @@ -1,4 +1,5 @@ ### excel导出 * demo_1.php 第一种导出excel的方法 * demo_2.php 第二种导出excel的方法 +* demo_3.php 第三种导出excel的方法(用excel类导出excel表格) * demo_4.php 第二种方法的延伸,对于:文本、数字、日期、货币、百分比 的处理 From 247a68e0dfbbdb10914a1942436a306df7ecab48 Mon Sep 17 00:00:00 2001 From: 131468yanglijun <903714303@qq.com> Date: Wed, 8 Jun 2016 18:04:48 +0800 Subject: [PATCH 85/88] change 1 --- php/gapDateDemo/My97DatePicker/.svn/entries | 170 ++++++++++++ .../prop-base/My97DatePicker.htm.svn-base | 5 + .../.svn/prop-base/WdatePicker.js.svn-base | 5 + .../.svn/prop-base/calendar.js.svn-base | 5 + .../.svn/prop-base/config.js.svn-base | 5 + .../text-base/My97DatePicker.htm.svn-base | 42 +++ .../.svn/text-base/WdatePicker.js.svn-base | 34 +++ .../.svn/text-base/calendar.js.svn-base | 7 + .../.svn/text-base/config.js.svn-base | 12 + .../My97DatePicker/My97DatePicker.htm | 42 +++ php/gapDateDemo/My97DatePicker/WdatePicker.js | 34 +++ php/gapDateDemo/My97DatePicker/calendar.js | 7 + php/gapDateDemo/My97DatePicker/config.js | 12 + .../My97DatePicker/lang/.svn/entries | 130 ++++++++++ .../lang/.svn/prop-base/en.js.svn-base | 5 + .../lang/.svn/prop-base/zh-cn.js.svn-base | 5 + .../lang/.svn/prop-base/zh-tw.js.svn-base | 5 + .../lang/.svn/text-base/en.js.svn-base | 12 + .../lang/.svn/text-base/zh-cn.js.svn-base | 12 + .../lang/.svn/text-base/zh-tw.js.svn-base | 12 + php/gapDateDemo/My97DatePicker/lang/en.js | 12 + php/gapDateDemo/My97DatePicker/lang/zh-cn.js | 12 + php/gapDateDemo/My97DatePicker/lang/zh-tw.js | 12 + .../My97DatePicker/skin/.svn/entries | 102 ++++++++ .../.svn/prop-base/WdatePicker.css.svn-base | 5 + .../.svn/prop-base/datePicker.gif.svn-base | 9 + .../.svn/text-base/WdatePicker.css.svn-base | 10 + .../.svn/text-base/datePicker.gif.svn-base | Bin 0 -> 1043 bytes .../My97DatePicker/skin/WdatePicker.css | 10 + .../My97DatePicker/skin/datePicker.gif | Bin 0 -> 1043 bytes .../My97DatePicker/skin/default/.svn/entries | 96 +++++++ .../.svn/prop-base/datepicker.css.svn-base | 5 + .../default/.svn/prop-base/img.gif.svn-base | 9 + .../.svn/text-base/datepicker.css.svn-base | 237 +++++++++++++++++ .../default/.svn/text-base/img.gif.svn-base | Bin 0 -> 1578 bytes .../skin/default/datepicker.css | 237 +++++++++++++++++ .../My97DatePicker/skin/default/img.gif | Bin 0 -> 1578 bytes .../My97DatePicker/skin/whyGreen/.svn/entries | 130 ++++++++++ .../whyGreen/.svn/prop-base/bg.jpg.svn-base | 9 + .../.svn/prop-base/datepicker.css.svn-base | 5 + .../whyGreen/.svn/prop-base/img.gif.svn-base | 9 + .../whyGreen/.svn/text-base/bg.jpg.svn-base | Bin 0 -> 307 bytes .../.svn/text-base/datepicker.css.svn-base | 243 ++++++++++++++++++ .../whyGreen/.svn/text-base/img.gif.svn-base | Bin 0 -> 1679 bytes .../My97DatePicker/skin/whyGreen/bg.jpg | Bin 0 -> 307 bytes .../skin/whyGreen/datepicker.css | 243 ++++++++++++++++++ .../My97DatePicker/skin/whyGreen/img.gif | Bin 0 -> 1679 bytes php/gapDateDemo/gapDateDemo.html | 93 +++++++ php/gapDateDemo/jquery-1.7.2.min.js | 4 + php/gapDateDemo/sale.css | 22 ++ 50 files changed, 2075 insertions(+) create mode 100755 php/gapDateDemo/My97DatePicker/.svn/entries create mode 100755 php/gapDateDemo/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/prop-base/calendar.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/prop-base/config.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/text-base/calendar.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/.svn/text-base/config.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/My97DatePicker.htm create mode 100755 php/gapDateDemo/My97DatePicker/WdatePicker.js create mode 100755 php/gapDateDemo/My97DatePicker/calendar.js create mode 100755 php/gapDateDemo/My97DatePicker/config.js create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/entries create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/en.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/text-base/en.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/lang/en.js create mode 100755 php/gapDateDemo/My97DatePicker/lang/zh-cn.js create mode 100755 php/gapDateDemo/My97DatePicker/lang/zh-tw.js create mode 100755 php/gapDateDemo/My97DatePicker/skin/.svn/entries create mode 100755 php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/WdatePicker.css create mode 100755 php/gapDateDemo/My97DatePicker/skin/datePicker.gif create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/.svn/entries create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/datepicker.css create mode 100755 php/gapDateDemo/My97DatePicker/skin/default/img.gif create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/entries create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/bg.jpg create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/datepicker.css create mode 100755 php/gapDateDemo/My97DatePicker/skin/whyGreen/img.gif create mode 100755 php/gapDateDemo/gapDateDemo.html create mode 100755 php/gapDateDemo/jquery-1.7.2.min.js create mode 100755 php/gapDateDemo/sale.css diff --git a/php/gapDateDemo/My97DatePicker/.svn/entries b/php/gapDateDemo/My97DatePicker/.svn/entries new file mode 100755 index 0000000..5724e96 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/entries @@ -0,0 +1,170 @@ +10 + +dir +29 +svn://192.168.9.224:3732/static/js/My97DatePicker +svn://192.168.9.224:3732 + + + +2016-04-21T02:58:45.041062Z +1 +zoulipeng + + + + + + + + + + + + + + +46ea9de0-ffdb-4b39-bd32-104de8a7632d + +My97DatePicker.htm +file + + + + +2016-04-26T01:49:31.783941Z +fa07f417ee130638c2ed286612d85bd5 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +1247 + +WdatePicker.js +file + + + + +2016-04-26T01:49:31.783941Z +5750cc4485f7337373bc6765ab30779e +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +7173 + +config.js +file + + + + +2016-04-26T01:49:31.779941Z +dd9c5041fad62419a87ac54c0f09d3d8 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +225 + +lang +dir + +skin +dir + +calendar.js +file + + + + +2016-04-26T01:49:31.779941Z +7aca41e8ffca1dca298ac92a239252f6 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +22088 + diff --git a/php/gapDateDemo/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base b/php/gapDateDemo/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/prop-base/My97DatePicker.htm.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/prop-base/WdatePicker.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/.svn/prop-base/calendar.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/prop-base/calendar.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/prop-base/calendar.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/.svn/prop-base/config.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/prop-base/config.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/prop-base/config.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base b/php/gapDateDemo/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base new file mode 100755 index 0000000..a0815fb --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/text-base/My97DatePicker.htm.svn-base @@ -0,0 +1,42 @@ + + + +My97DatePicker + + + + + + + + \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base new file mode 100755 index 0000000..147b1b8 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/text-base/WdatePicker.js.svn-base @@ -0,0 +1,34 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $dp,WdatePicker;(function(){var $={ + +$wdate:true, +$crossFrame:false, +$dpPath:"", +position:{}, +lang:"auto", +skin:"default", +dateFmt:"yyyy-MM-dd", +realDateFmt:"yyyy-MM-dd", +realTimeFmt:"HH:mm:ss", +realFullFmt:"%Date %Time", +minDate:"1900-01-01 00:00:00", +maxDate:"2099-12-31 23:59:59", +startDate:"", +alwaysUseStartDate:false, +yearOffset:1911, +isShowWeek:false, +highLineWeekDay:true, +isShowClear:true, +isShowToday:true, +isShowOthers:true, +readOnly:false, +errDealMode:0, +autoPickDate:null, +qsEnabled:true, + +disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=S;var V=window,N="document",H="documentElement",A="getElementsByTagName",T,_,R,G,Z;switch(navigator.appName){case"Microsoft Internet Explorer":R=true;break;case"Opera":Z=true;break;default:G=true;break}T=V;if($.$crossFrame){try{while(T.parent[N]!=T[N]&&T.parent[N][A]("frameset").length==0)T=T.parent}catch(P){}}_=J();if($.$wdate)K(_+"skin/WdatePicker.css");var L;if(T.$dp){try{L=(T.$dp.$("MY")=="lIkEmY97")}catch(P){L=P.number==-2146823277?true:false}}if(!T.$dp||L){$dp=Q({ff:G,ie:R,opera:Z,el:null,win:V,status:L?2:0,defMinDate:$.minDate,defMaxDate:$.maxDate,$:function(_){try{this.win[N]}catch($){return"lIkEmY97"}return(typeof _=="string")?this.win[N].getElementById(_):_},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var A in $){if(this.dt[A]===undefined)this.errMsg="invalid property:"+A;this.dt[A]+=$[A]}if(this.dt.refresh())return this.dt}return""},show:function(){if(this.dd)this.dd.style.display="block"},hide:function(){if(this.dd)this.dd.style.display="none"},attachEvent:C});if(!L)X(T,function(){S(null,true)})}else $dp=T.$dp;if(!V[N].docMD){C(V[N],"onmousedown",B);V[N].docMD=true}if(!T[N].docMD){C(T[N],"onmousedown",B);T[N].docMD=true}C(V,"onunload",function(){$dp.hide()});function Q(_){T.$dp=T.$dp||{};for(var $ in _)T.$dp[$]=_[$];return T.$dp}function C(A,$,_){if(R)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function J(){var _,A,$=document.getElementsByTagName("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function D(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=T.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var _="",D="",A="",H,G,B="";for(H=0;H_.scrollLeft||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function B(_){src=_?(_.srcElement||_.target):null;if($dp&&$dp.dd&&$dp.dd.style.display=="block"&&src!=$dp.el){var A=$dp.el,B=$dp.cal,$=$dp.el[$dp.elProp];if($!=null){$dp.$w.hideSel();if($!=""&&!$dp.readOnly)B.date.loadFromDate(B.splitDate($,B.dateFmt));if($==""||(B.isDate(B.date)&&B.isTime(B.date)&&B.checkValid(B.date))){B.mark(true);if($!="")B.update();else B.setRealValue("");$dp.hide()}else B.mark(false)}else $dp.hide()}}var O=[];function W(){$dp.status=2;F()}function F(){if(O.length>0){var $=O.shift();$.el={innerHTML:""};$.eCont=$dp.$($.eCont);$.autoPickDate=true;$.qsEnabled=false;I($)}}function S(C,$){$dp.win=V;C=C||{};if($){$dp.status=1;I({el:{innerHTML:""}},true)}else if(C.eCont){O.push(C);if($dp.status==2)F()}else{if($dp.status==0)$dp.status=1;if($dp.status!=2)return;var B,A=_();if(A){B=A.srcElement||A.target;A.cancelBubble=true}C.el=$dp.$(C.el||B);if(!C.el||C.el&&C.el.disabled||(C.el==$dp.el&&$dp.dd.style.display!="none"&&$dp.dd.style.left!="-1970px"))return;I(C)}function _(){if(G){func=_.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function I(G,A){for(var F in $)if(F.substring(0,1)!="$")$dp[F]=$[F];for(F in G)if($dp[F]===undefined)$dp.errMsg="invalid property:"+F;else $dp[F]=G[F];$dp.elProp=$dp.el&&$dp.el.nodeName=="INPUT"?"value":"innerHTML";if($dp.el[$dp.elProp]==null)return;if($dp.lang=="auto")$dp.lang=R?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang)){if($dp.dd&&!$dp.eCont)T[N].body.removeChild($dp.dd);if($.$dpPath=="")D(_);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/.svn/text-base/calendar.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/text-base/calendar.js.svn-base new file mode 100755 index 0000000..0ea7d69 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/text-base/calendar.js.svn-base @@ -0,0 +1,7 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/.svn/text-base/config.js.svn-base b/php/gapDateDemo/My97DatePicker/.svn/text-base/config.js.svn-base new file mode 100755 index 0000000..d0e1ac5 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/.svn/text-base/config.js.svn-base @@ -0,0 +1,12 @@ +var langList = +[ + {name:'en', charset:'UTF-8'}, + {name:'zh-cn', charset:'gb2312'}, + {name:'zh-tw', charset:'GBK'} +]; + +var skinList = +[ + {name:'default', charset:'gb2312'}, + {name:'whyGreen', charset:'gb2312'} +]; \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/My97DatePicker.htm b/php/gapDateDemo/My97DatePicker/My97DatePicker.htm new file mode 100755 index 0000000..a0815fb --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/My97DatePicker.htm @@ -0,0 +1,42 @@ + + + +My97DatePicker + + + + + + + + \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/WdatePicker.js b/php/gapDateDemo/My97DatePicker/WdatePicker.js new file mode 100755 index 0000000..147b1b8 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/WdatePicker.js @@ -0,0 +1,34 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $dp,WdatePicker;(function(){var $={ + +$wdate:true, +$crossFrame:false, +$dpPath:"", +position:{}, +lang:"auto", +skin:"default", +dateFmt:"yyyy-MM-dd", +realDateFmt:"yyyy-MM-dd", +realTimeFmt:"HH:mm:ss", +realFullFmt:"%Date %Time", +minDate:"1900-01-01 00:00:00", +maxDate:"2099-12-31 23:59:59", +startDate:"", +alwaysUseStartDate:false, +yearOffset:1911, +isShowWeek:false, +highLineWeekDay:true, +isShowClear:true, +isShowToday:true, +isShowOthers:true, +readOnly:false, +errDealMode:0, +autoPickDate:null, +qsEnabled:true, + +disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=S;var V=window,N="document",H="documentElement",A="getElementsByTagName",T,_,R,G,Z;switch(navigator.appName){case"Microsoft Internet Explorer":R=true;break;case"Opera":Z=true;break;default:G=true;break}T=V;if($.$crossFrame){try{while(T.parent[N]!=T[N]&&T.parent[N][A]("frameset").length==0)T=T.parent}catch(P){}}_=J();if($.$wdate)K(_+"skin/WdatePicker.css");var L;if(T.$dp){try{L=(T.$dp.$("MY")=="lIkEmY97")}catch(P){L=P.number==-2146823277?true:false}}if(!T.$dp||L){$dp=Q({ff:G,ie:R,opera:Z,el:null,win:V,status:L?2:0,defMinDate:$.minDate,defMaxDate:$.maxDate,$:function(_){try{this.win[N]}catch($){return"lIkEmY97"}return(typeof _=="string")?this.win[N].getElementById(_):_},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var A in $){if(this.dt[A]===undefined)this.errMsg="invalid property:"+A;this.dt[A]+=$[A]}if(this.dt.refresh())return this.dt}return""},show:function(){if(this.dd)this.dd.style.display="block"},hide:function(){if(this.dd)this.dd.style.display="none"},attachEvent:C});if(!L)X(T,function(){S(null,true)})}else $dp=T.$dp;if(!V[N].docMD){C(V[N],"onmousedown",B);V[N].docMD=true}if(!T[N].docMD){C(T[N],"onmousedown",B);T[N].docMD=true}C(V,"onunload",function(){$dp.hide()});function Q(_){T.$dp=T.$dp||{};for(var $ in _)T.$dp[$]=_[$];return T.$dp}function C(A,$,_){if(R)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function J(){var _,A,$=document.getElementsByTagName("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function D(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=T.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var _="",D="",A="",H,G,B="";for(H=0;H_.scrollLeft||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function B(_){src=_?(_.srcElement||_.target):null;if($dp&&$dp.dd&&$dp.dd.style.display=="block"&&src!=$dp.el){var A=$dp.el,B=$dp.cal,$=$dp.el[$dp.elProp];if($!=null){$dp.$w.hideSel();if($!=""&&!$dp.readOnly)B.date.loadFromDate(B.splitDate($,B.dateFmt));if($==""||(B.isDate(B.date)&&B.isTime(B.date)&&B.checkValid(B.date))){B.mark(true);if($!="")B.update();else B.setRealValue("");$dp.hide()}else B.mark(false)}else $dp.hide()}}var O=[];function W(){$dp.status=2;F()}function F(){if(O.length>0){var $=O.shift();$.el={innerHTML:""};$.eCont=$dp.$($.eCont);$.autoPickDate=true;$.qsEnabled=false;I($)}}function S(C,$){$dp.win=V;C=C||{};if($){$dp.status=1;I({el:{innerHTML:""}},true)}else if(C.eCont){O.push(C);if($dp.status==2)F()}else{if($dp.status==0)$dp.status=1;if($dp.status!=2)return;var B,A=_();if(A){B=A.srcElement||A.target;A.cancelBubble=true}C.el=$dp.$(C.el||B);if(!C.el||C.el&&C.el.disabled||(C.el==$dp.el&&$dp.dd.style.display!="none"&&$dp.dd.style.left!="-1970px"))return;I(C)}function _(){if(G){func=_.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function I(G,A){for(var F in $)if(F.substring(0,1)!="$")$dp[F]=$[F];for(F in G)if($dp[F]===undefined)$dp.errMsg="invalid property:"+F;else $dp[F]=G[F];$dp.elProp=$dp.el&&$dp.el.nodeName=="INPUT"?"value":"innerHTML";if($dp.el[$dp.elProp]==null)return;if($dp.lang=="auto")$dp.lang=R?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang)){if($dp.dd&&!$dp.eCont)T[N].body.removeChild($dp.dd);if($.$dpPath=="")D(_);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/calendar.js b/php/gapDateDemo/My97DatePicker/calendar.js new file mode 100755 index 0000000..0ea7d69 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/calendar.js @@ -0,0 +1,7 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/config.js b/php/gapDateDemo/My97DatePicker/config.js new file mode 100755 index 0000000..d0e1ac5 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/config.js @@ -0,0 +1,12 @@ +var langList = +[ + {name:'en', charset:'UTF-8'}, + {name:'zh-cn', charset:'gb2312'}, + {name:'zh-tw', charset:'GBK'} +]; + +var skinList = +[ + {name:'default', charset:'gb2312'}, + {name:'whyGreen', charset:'gb2312'} +]; \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/entries b/php/gapDateDemo/My97DatePicker/lang/.svn/entries new file mode 100755 index 0000000..7cd4a1f --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/entries @@ -0,0 +1,130 @@ +10 + +dir +29 +svn://192.168.9.224:3732/static/js/My97DatePicker/lang +svn://192.168.9.224:3732 + + + +2016-04-21T02:58:45.041062Z +1 +zoulipeng + + + + + + + + + + + + + + +46ea9de0-ffdb-4b39-bd32-104de8a7632d + +en.js +file + + + + +2016-04-26T01:49:31.659941Z +572900ed3f7553d0ebbc3067cfa8f57a +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +415 + +zh-tw.js +file + + + + +2016-04-26T01:49:31.655941Z +a4c09728c9524193c5b8f48aee304076 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +382 + +zh-cn.js +file + + + + +2016-04-26T01:49:31.659941Z +e0f9bf5fcb5bc718d31b976504448855 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +383 + diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/en.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/en.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/en.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-cn.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/prop-base/zh-tw.js.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/en.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/en.js.svn-base new file mode 100755 index 0000000..6923a38 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/en.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Invalid date or the date out of range,redo or not?", +aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], +aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], +clearStr: "Clear", +todayStr: "Today", +okStr: "OK", +updateStr: "OK", +timeStr: "Time", +quickStr: "Quick Selection", +err_1: 'MinDate Cannot be bigger than MaxDate!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base new file mode 100755 index 0000000..76ce7df --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-cn.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "ȷ", +updateStr: "ȷ", +timeStr: "ʱ", +quickStr: "ѡ", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base new file mode 100755 index 0000000..bd979f7 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/.svn/text-base/zh-tw.js.svn-base @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶,ҪN?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "_", +updateStr: "_", +timeStr: "rg", +quickStr: "x", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/en.js b/php/gapDateDemo/My97DatePicker/lang/en.js new file mode 100755 index 0000000..6923a38 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/en.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Invalid date or the date out of range,redo or not?", +aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], +aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], +clearStr: "Clear", +todayStr: "Today", +okStr: "OK", +updateStr: "OK", +timeStr: "Time", +quickStr: "Quick Selection", +err_1: 'MinDate Cannot be bigger than MaxDate!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/zh-cn.js b/php/gapDateDemo/My97DatePicker/lang/zh-cn.js new file mode 100755 index 0000000..76ce7df --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/zh-cn.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "ȷ", +updateStr: "ȷ", +timeStr: "ʱ", +quickStr: "ѡ", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/lang/zh-tw.js b/php/gapDateDemo/My97DatePicker/lang/zh-tw.js new file mode 100755 index 0000000..bd979f7 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/lang/zh-tw.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶,ҪN?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "_", +updateStr: "_", +timeStr: "rg", +quickStr: "x", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/.svn/entries b/php/gapDateDemo/My97DatePicker/skin/.svn/entries new file mode 100755 index 0000000..dec147b --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/.svn/entries @@ -0,0 +1,102 @@ +10 + +dir +29 +svn://192.168.9.224:3732/static/js/My97DatePicker/skin +svn://192.168.9.224:3732 + + + +2016-04-21T02:58:45.041062Z +1 +zoulipeng + + + + + + + + + + + + + + +46ea9de0-ffdb-4b39-bd32-104de8a7632d + +default +dir + +whyGreen +dir + +WdatePicker.css +file + + + + +2016-04-26T01:49:31.771941Z +53a188a6659467c66b46ded6f8e0484a +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +158 + +datePicker.gif +file + + + + +2016-04-26T01:49:31.771941Z +d6bfd22c5e8cdb08165658ea9cc40be7 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +1043 + diff --git a/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/WdatePicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/.svn/prop-base/datePicker.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/php/gapDateDemo/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base new file mode 100755 index 0000000..74a75e8 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/.svn/text-base/WdatePicker.css.svn-base @@ -0,0 +1,10 @@ +.Wdate{ + border:#999 1px solid; + height:20px; + background:#fff url(datePicker.gif) no-repeat right; +} + +.WdateFmtErr{ + font-weight:bold; + color:red; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/.svn/text-base/datePicker.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..d6bf40c9f290161c87230787a1056d977d36c821 GIT binary patch literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/WdatePicker.css b/php/gapDateDemo/My97DatePicker/skin/WdatePicker.css new file mode 100755 index 0000000..74a75e8 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/WdatePicker.css @@ -0,0 +1,10 @@ +.Wdate{ + border:#999 1px solid; + height:20px; + background:#fff url(datePicker.gif) no-repeat right; +} + +.WdateFmtErr{ + font-weight:bold; + color:red; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/datePicker.gif b/php/gapDateDemo/My97DatePicker/skin/datePicker.gif new file mode 100755 index 0000000000000000000000000000000000000000..d6bf40c9f290161c87230787a1056d977d36c821 GIT binary patch literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/default/.svn/entries b/php/gapDateDemo/My97DatePicker/skin/default/.svn/entries new file mode 100755 index 0000000..4b03cba --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/default/.svn/entries @@ -0,0 +1,96 @@ +10 + +dir +29 +svn://192.168.9.224:3732/static/js/My97DatePicker/skin/default +svn://192.168.9.224:3732 + + + +2016-04-21T02:58:45.041062Z +1 +zoulipeng + + + + + + + + + + + + + + +46ea9de0-ffdb-4b39-bd32-104de8a7632d + +img.gif +file + + + + +2016-04-26T01:49:31.743941Z +ed11a2b68742ccf22763d3e8f2454516 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +1578 + +datepicker.css +file + + + + +2016-04-26T01:49:31.743941Z +1650f9d02772e45f12be2c2347b86c92 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +4560 + diff --git a/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/datepicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/default/.svn/prop-base/img.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base new file mode 100755 index 0000000..d516e22 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/datepicker.css.svn-base @@ -0,0 +1,237 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:default + * Ƥ:My97 + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#FFFFFF; + border:#bbb 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } + +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + margin-bottom:2px; + padding:1px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + font-weight:bold; + color:blue; + border:#ccc 1px solid; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#ccc 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; + +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ +/* TR */ +.WdateDiv .MTitle{ + background-color:#BDEBEE; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + border:#c5d9e8 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#FF2F2F; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + color:#000; + background-color:#C0EBEF; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A9E4E9; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#6A6AFF; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} + +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + float:left; + margin-top:3px; + margin-right:30px; +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + border:#ccc 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + border:#ccc 1px solid; + padding:2px; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/default/.svn/text-base/img.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..053205d8201a3a59fb9870c6a4743fc3efd305fa GIT binary patch literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/default/datepicker.css b/php/gapDateDemo/My97DatePicker/skin/default/datepicker.css new file mode 100755 index 0000000..d516e22 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/default/datepicker.css @@ -0,0 +1,237 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:default + * Ƥ:My97 + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#FFFFFF; + border:#bbb 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } + +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + margin-bottom:2px; + padding:1px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + font-weight:bold; + color:blue; + border:#ccc 1px solid; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#ccc 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; + +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ +/* TR */ +.WdateDiv .MTitle{ + background-color:#BDEBEE; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + border:#c5d9e8 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#FF2F2F; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + color:#000; + background-color:#C0EBEF; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A9E4E9; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#6A6AFF; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} + +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + float:left; + margin-top:3px; + margin-right:30px; +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + border:#ccc 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + border:#ccc 1px solid; + padding:2px; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/default/img.gif b/php/gapDateDemo/My97DatePicker/skin/default/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..053205d8201a3a59fb9870c6a4743fc3efd305fa GIT binary patch literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/entries b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/entries new file mode 100755 index 0000000..c2fd651 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/entries @@ -0,0 +1,130 @@ +10 + +dir +29 +svn://192.168.9.224:3732/static/js/My97DatePicker/skin/whyGreen +svn://192.168.9.224:3732 + + + +2016-04-21T02:58:45.041062Z +1 +zoulipeng + + + + + + + + + + + + + + +46ea9de0-ffdb-4b39-bd32-104de8a7632d + +bg.jpg +file + + + + +2016-04-26T01:49:31.763941Z +21ec42adb09c1d8a4c09248f8325e53c +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +307 + +img.gif +file + + + + +2016-04-26T01:49:31.763941Z +d0570f39ca217fbf02f461ef0096d657 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +1679 + +datepicker.css +file + + + + +2016-04-26T01:49:31.763941Z +29f06da41ea571e7248086c4ae5b2948 +2016-04-21T02:58:45.041062Z +1 +zoulipeng +has-props + + + + + + + + + + + + + + + + + + + + +4763 + diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/bg.jpg.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base new file mode 100755 index 0000000..869ac71 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/datepicker.css.svn-base @@ -0,0 +1,5 @@ +K 14 +svn:executable +V 1 +* +END diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base new file mode 100755 index 0000000..dbc918b --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/prop-base/img.gif.svn-base @@ -0,0 +1,9 @@ +K 14 +svn:executable +V 1 +* +K 13 +svn:mime-type +V 24 +application/octet-stream +END diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/bg.jpg.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..75516a6380f3a18d246e090d47999698e4193d6c GIT binary patch literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base new file mode 100755 index 0000000..2052c87 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/datepicker.css.svn-base @@ -0,0 +1,243 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:whyGreen + * Ƥ:why + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#fff; + border:#C5E1E4 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + padding:1px; + border:#c5d9e8 1px solid; + background:url(bg.jpg); + margin-bottom:2px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + color:#034c50; + background-color:transparent; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + border:#939393 1px solid; + font-weight:bold; + color:#034c50; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#A3C6C8 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; + color:#11777C; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ + /* TR */ +.WdateDiv .MTitle{ + color:#13777e; + background-color:#bdebee; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + color:#13777e; + background-color:#edfbfb; + border:#BEE9F0 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#74d2d9 ; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#ab1e1e; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + background-color:#74d2d9; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A7E2E7; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#0099CC; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; + color:#497F7F; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + color:#333; + border:#61CAD0 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + padding:2px; + border:#38B1B9 1px solid; + background-color:#CFEBEE; + color:#08575B; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base b/php/gapDateDemo/My97DatePicker/skin/whyGreen/.svn/text-base/img.gif.svn-base new file mode 100755 index 0000000000000000000000000000000000000000..4003f20fb1197edf0433ff99759cb6399d0f99f9 GIT binary patch literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/bg.jpg b/php/gapDateDemo/My97DatePicker/skin/whyGreen/bg.jpg new file mode 100755 index 0000000000000000000000000000000000000000..75516a6380f3a18d246e090d47999698e4193d6c GIT binary patch literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/datepicker.css b/php/gapDateDemo/My97DatePicker/skin/whyGreen/datepicker.css new file mode 100755 index 0000000..2052c87 --- /dev/null +++ b/php/gapDateDemo/My97DatePicker/skin/whyGreen/datepicker.css @@ -0,0 +1,243 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:whyGreen + * Ƥ:why + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#fff; + border:#C5E1E4 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + padding:1px; + border:#c5d9e8 1px solid; + background:url(bg.jpg); + margin-bottom:2px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + color:#034c50; + background-color:transparent; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + border:#939393 1px solid; + font-weight:bold; + color:#034c50; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#A3C6C8 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; + color:#11777C; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ + /* TR */ +.WdateDiv .MTitle{ + color:#13777e; + background-color:#bdebee; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + color:#13777e; + background-color:#edfbfb; + border:#BEE9F0 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#74d2d9 ; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#ab1e1e; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + background-color:#74d2d9; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A7E2E7; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#0099CC; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; + color:#497F7F; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + color:#333; + border:#61CAD0 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + padding:2px; + border:#38B1B9 1px solid; + background-color:#CFEBEE; + color:#08575B; +} \ No newline at end of file diff --git a/php/gapDateDemo/My97DatePicker/skin/whyGreen/img.gif b/php/gapDateDemo/My97DatePicker/skin/whyGreen/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..4003f20fb1197edf0433ff99759cb6399d0f99f9 GIT binary patch literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 literal 0 HcmV?d00001 diff --git a/php/gapDateDemo/gapDateDemo.html b/php/gapDateDemo/gapDateDemo.html new file mode 100755 index 0000000..2fb4f07 --- /dev/null +++ b/php/gapDateDemo/gapDateDemo.html @@ -0,0 +1,93 @@ + + + + + +间断日期选择demo + + + + + +
+ 间断日期: +
+
间断日期
+
+ 活动日期选择: +
+ +
+
+
+ + + \ No newline at end of file diff --git a/php/gapDateDemo/jquery-1.7.2.min.js b/php/gapDateDemo/jquery-1.7.2.min.js new file mode 100755 index 0000000..16ad06c --- /dev/null +++ b/php/gapDateDemo/jquery-1.7.2.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.2 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(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){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){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)?+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=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};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=m.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.2",length:0,size:function(){return this.length},toArray:function(){return F.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)?E.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(),A.add(a);return this},eq:function(a){a=+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(F.apply(this,arguments),"slice",F.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:E,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;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.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):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(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(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;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(w,"ms-").replace(v,x)},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(;c
a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.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,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
"+""+"
",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
t
",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();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[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),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[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){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.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];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}}}}),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){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")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}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,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( +a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"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,g=p.selector),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=f.trim(I(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:"";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,m=E.test(s+h)?e:e.parentNode,n=null;for(;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;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.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));o.match.globalPOS=p;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(S(c[0])||S(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);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).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 V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},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){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):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 +.clean(arguments);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",arguments);a.push.apply(a,f.clean(arguments));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){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&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,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.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(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),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)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[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","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/php/gapDateDemo/sale.css b/php/gapDateDemo/sale.css new file mode 100755 index 0000000..6efc926 --- /dev/null +++ b/php/gapDateDemo/sale.css @@ -0,0 +1,22 @@ +i{font-style: normal;} +/*列表页新建活动和修改活动*/ +body{font-family: "微软雅黑", "宋体", Arial;font-size:12px;margin:0;} +.addActivity{padding:30px;} +.activityContent>p{border-bottom: 1px dashed #6484d9;padding-bottom: 10px;font-size:16px;margin:0;} +.activityContent .activity{padding-left:68px;} +.activity p input,.activityDate dd input{width:197px;height:22px;} +.activity p input{width:210px;} +.activity span{color:#f00;padding-left:20px;} +.activity p>i{padding-right:15px;} +.activity p input{margin-bottom:16px;} +.activityDate{width:465px;padding-bottom:6px;margin-left: 75px; +margin-top: -30px;} +.activityDate i{color:#30043f;} +.activityStartDate{margin-bottom:18px;margin-top:10px;} +.continuousDate{margin-bottom:10px;} +.activityDate dt{font-size:14px;} +.activityDate .jiange_p{padding:0 20px;border:1px solid #6484d9;padding:18px 0 18px 16px;margin:10px 20px 0 20px;background:#fff;} +.activityDate .jiange_p span{padding-left:0;display:inline-block;width: 24%; color:#333;cursor:pointer;line-height:25px;} +.jiange_p i{padding-left:12px;color:#ff0000;} +.activityDate .jiange_p .jiange_span{padding-right:0;} +.activity .activityBtn input{width:95px;height:25px;border:none;border:1px solid #6484d9;border-radius: 2px;} From 7264d327b704bf2b0459a756e3cf030d70a78722 Mon Sep 17 00:00:00 2001 From: 131468yanglijun <903714303@qq.com> Date: Mon, 11 Jul 2016 09:37:24 +0800 Subject: [PATCH 86/88] =?UTF-8?q?=E5=8E=9F=E5=A7=8B=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=EF=BC=8C=E7=94=9F=E6=88=90=E7=BC=A9=E7=95=A5?= =?UTF-8?q?=E5=9B=BE=E5=B9=B6=E7=94=A8iframe=E7=AB=8B=E5=8D=B3=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=88=B0=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/iframe_uploade_demo/iframe_uploade.html | 52 ++++++++++++++ php/iframe_uploade_demo/iframe_uploade.php | 76 +++++++++++++++++++++ php/iframe_uploade_demo/jquery-1.7.2.min.js | 4 ++ 3 files changed, 132 insertions(+) create mode 100755 php/iframe_uploade_demo/iframe_uploade.html create mode 100755 php/iframe_uploade_demo/iframe_uploade.php create mode 100755 php/iframe_uploade_demo/jquery-1.7.2.min.js diff --git a/php/iframe_uploade_demo/iframe_uploade.html b/php/iframe_uploade_demo/iframe_uploade.html new file mode 100755 index 0000000..72534e3 --- /dev/null +++ b/php/iframe_uploade_demo/iframe_uploade.html @@ -0,0 +1,52 @@ + + + + +iframe 图片上传demo + + + + + 上传图片: + + + + + + + + + diff --git a/php/iframe_uploade_demo/iframe_uploade.php b/php/iframe_uploade_demo/iframe_uploade.php new file mode 100755 index 0000000..2988d8c --- /dev/null +++ b/php/iframe_uploade_demo/iframe_uploade.php @@ -0,0 +1,76 @@ + 0){ + echo '!problem:'; + switch($_FILES['file']['error']) + { + case 1: echo '文件大小超过服务器限制'; + break; + case 2: echo '文件太大!'; + break; + case 3: echo '文件只加载了一部分!'; + break; + case 4: echo '文件加载失败!'; + break; + } + + exit; +} +if($_FILES['file']['size'] > 2*1024*1024){ //文件大小限制2M + echo '文件过大!'; + exit; +} +if($_FILES['file']['type']!='image/jpeg' && $_FILES['file']['type']!='image/png'){ + echo '文件不是JPG或者PNG图片!'; + exit; +} +$today = date("YmdHis"); +$filetype = $_FILES['file']['type']; //文件类型 +if($filetype == 'image/jpeg'){ + $type = '.jpg'; +} +if($filetype == 'image/png'){ + $type = '.png'; +} +$upfilePath = '/img/img_group/' . $today . $type; //文件上传路径 +if(is_uploaded_file($_FILES['file']['tmp_name'])) //文件上传 +{ + if(!move_uploaded_file($_FILES['file']['tmp_name'], $upfilePath)) + { + echo '移动文件失败!'; + exit; + } +} +else +{ + echo 'problem!'; + exit; +} +//生成缩略图 +$src_image=ImageCreateFromJPEG($upfilePath); +$srcW=ImageSX($src_image); //获得原图片宽 +$srcH=ImageSY($src_image); //获得原图片高 +$proportion = $srcW/$srcH;//宽和高的比例, +$round = round($proportion,2);//宽和高的比例,保留两位小数 +$width = round($srcW/$round,0);//等比例缩放的图片的宽 +$height = round($srcH/$round,0);//等比例缩放的图片的高 +$dst_image=ImageCreateTrueColor($width,$height);//创建图像 +ImageCopyResized($dst_image,$src_image,0,0,0,0,$width,$height,$srcW,$srcH); +$smallfile = '/img/img_group/' .'small'.$today.$type;//缩略图保存地址 +ImageJpeg($dst_image,$smallfile); +//删除原图 +unlink($upfilePath); +$path = 'http://img.ljlj.loc/img_group/'.'small'.$today . $type;//所略图输出路径 +?> + + + + + + + + + +
+ + diff --git a/php/iframe_uploade_demo/jquery-1.7.2.min.js b/php/iframe_uploade_demo/jquery-1.7.2.min.js new file mode 100755 index 0000000..16ad06c --- /dev/null +++ b/php/iframe_uploade_demo/jquery-1.7.2.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.2 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(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){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){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)?+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=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};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=m.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.2",length:0,size:function(){return this.length},toArray:function(){return F.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)?E.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(),A.add(a);return this},eq:function(a){a=+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(F.apply(this,arguments),"slice",F.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:E,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;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.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):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(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(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;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(w,"ms-").replace(v,x)},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(;c
a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.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,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
"+""+"
",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
t
",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();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[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),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[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){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.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];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}}}}),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){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")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}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,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( +a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"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,g=p.selector),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=f.trim(I(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:"";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,m=E.test(s+h)?e:e.parentNode,n=null;for(;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;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.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));o.match.globalPOS=p;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(S(c[0])||S(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);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).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 V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},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){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):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 +.clean(arguments);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",arguments);a.push.apply(a,f.clean(arguments));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){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&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,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.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(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),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)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[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","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file From 0c26be6fb62163019695578564a476ad6f15c1e8 Mon Sep 17 00:00:00 2001 From: 131468yanglijun <903714303@qq.com> Date: Mon, 11 Jul 2016 16:30:22 +0800 Subject: [PATCH 87/88] =?UTF-8?q?=E6=97=B6=E9=97=B4=E7=A9=BA=E9=97=B4?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=97=A5=E6=9C=9F=E8=87=AA=E5=8A=A8=E6=8C=89?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E5=8D=87=E5=BA=8F=E6=8E=92=E5=BA=8Fdemo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../My97DatePicker/My97DatePicker.htm | 42 +++ .../My97DatePicker/WdatePicker.js | 34 +++ php/gap_time_demo/My97DatePicker/calendar.js | 7 + php/gap_time_demo/My97DatePicker/config.js | 12 + php/gap_time_demo/My97DatePicker/lang/en.js | 12 + .../My97DatePicker/lang/zh-cn.js | 12 + .../My97DatePicker/lang/zh-tw.js | 12 + .../My97DatePicker/skin/WdatePicker.css | 10 + .../My97DatePicker/skin/datePicker.gif | Bin 0 -> 1043 bytes .../skin/default/datepicker.css | 237 +++++++++++++++++ .../My97DatePicker/skin/default/img.gif | Bin 0 -> 1578 bytes .../My97DatePicker/skin/whyGreen/bg.jpg | Bin 0 -> 307 bytes .../skin/whyGreen/datepicker.css | 243 ++++++++++++++++++ .../My97DatePicker/skin/whyGreen/img.gif | Bin 0 -> 1679 bytes php/gap_time_demo/README.md | 2 + php/gap_time_demo/gapDateDemo.html | 93 +++++++ php/gap_time_demo/jquery-1.7.2.min.js | 4 + php/gap_time_demo/sale.css | 22 ++ 18 files changed, 742 insertions(+) create mode 100755 php/gap_time_demo/My97DatePicker/My97DatePicker.htm create mode 100755 php/gap_time_demo/My97DatePicker/WdatePicker.js create mode 100755 php/gap_time_demo/My97DatePicker/calendar.js create mode 100755 php/gap_time_demo/My97DatePicker/config.js create mode 100755 php/gap_time_demo/My97DatePicker/lang/en.js create mode 100755 php/gap_time_demo/My97DatePicker/lang/zh-cn.js create mode 100755 php/gap_time_demo/My97DatePicker/lang/zh-tw.js create mode 100755 php/gap_time_demo/My97DatePicker/skin/WdatePicker.css create mode 100755 php/gap_time_demo/My97DatePicker/skin/datePicker.gif create mode 100755 php/gap_time_demo/My97DatePicker/skin/default/datepicker.css create mode 100755 php/gap_time_demo/My97DatePicker/skin/default/img.gif create mode 100755 php/gap_time_demo/My97DatePicker/skin/whyGreen/bg.jpg create mode 100755 php/gap_time_demo/My97DatePicker/skin/whyGreen/datepicker.css create mode 100755 php/gap_time_demo/My97DatePicker/skin/whyGreen/img.gif create mode 100755 php/gap_time_demo/README.md create mode 100755 php/gap_time_demo/gapDateDemo.html create mode 100755 php/gap_time_demo/jquery-1.7.2.min.js create mode 100755 php/gap_time_demo/sale.css diff --git a/php/gap_time_demo/My97DatePicker/My97DatePicker.htm b/php/gap_time_demo/My97DatePicker/My97DatePicker.htm new file mode 100755 index 0000000..a0815fb --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/My97DatePicker.htm @@ -0,0 +1,42 @@ + + + +My97DatePicker + + + + + + + + \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/WdatePicker.js b/php/gap_time_demo/My97DatePicker/WdatePicker.js new file mode 100755 index 0000000..147b1b8 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/WdatePicker.js @@ -0,0 +1,34 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $dp,WdatePicker;(function(){var $={ + +$wdate:true, +$crossFrame:false, +$dpPath:"", +position:{}, +lang:"auto", +skin:"default", +dateFmt:"yyyy-MM-dd", +realDateFmt:"yyyy-MM-dd", +realTimeFmt:"HH:mm:ss", +realFullFmt:"%Date %Time", +minDate:"1900-01-01 00:00:00", +maxDate:"2099-12-31 23:59:59", +startDate:"", +alwaysUseStartDate:false, +yearOffset:1911, +isShowWeek:false, +highLineWeekDay:true, +isShowClear:true, +isShowToday:true, +isShowOthers:true, +readOnly:false, +errDealMode:0, +autoPickDate:null, +qsEnabled:true, + +disabledDates:null,disabledDays:null,opposite:false,onpicking:null,onpicked:null,onclearing:null,oncleared:null,eCont:null,vel:null,errMsg:"",quickSel:[],has:{}};WdatePicker=S;var V=window,N="document",H="documentElement",A="getElementsByTagName",T,_,R,G,Z;switch(navigator.appName){case"Microsoft Internet Explorer":R=true;break;case"Opera":Z=true;break;default:G=true;break}T=V;if($.$crossFrame){try{while(T.parent[N]!=T[N]&&T.parent[N][A]("frameset").length==0)T=T.parent}catch(P){}}_=J();if($.$wdate)K(_+"skin/WdatePicker.css");var L;if(T.$dp){try{L=(T.$dp.$("MY")=="lIkEmY97")}catch(P){L=P.number==-2146823277?true:false}}if(!T.$dp||L){$dp=Q({ff:G,ie:R,opera:Z,el:null,win:V,status:L?2:0,defMinDate:$.minDate,defMaxDate:$.maxDate,$:function(_){try{this.win[N]}catch($){return"lIkEmY97"}return(typeof _=="string")?this.win[N].getElementById(_):_},$D:function($,_){return this.$DV(this.$($).value,_)},$DV:function(_,$){if(_!=""){this.dt=$dp.cal.splitDate(_,$dp.cal.dateFmt);if($)for(var A in $){if(this.dt[A]===undefined)this.errMsg="invalid property:"+A;this.dt[A]+=$[A]}if(this.dt.refresh())return this.dt}return""},show:function(){if(this.dd)this.dd.style.display="block"},hide:function(){if(this.dd)this.dd.style.display="none"},attachEvent:C});if(!L)X(T,function(){S(null,true)})}else $dp=T.$dp;if(!V[N].docMD){C(V[N],"onmousedown",B);V[N].docMD=true}if(!T[N].docMD){C(T[N],"onmousedown",B);T[N].docMD=true}C(V,"onunload",function(){$dp.hide()});function Q(_){T.$dp=T.$dp||{};for(var $ in _)T.$dp[$]=_[$];return T.$dp}function C(A,$,_){if(R)A.attachEvent($,_);else{var B=$.replace(/on/,"");_._ieEmuEventHandler=function($){return _($)};A.addEventListener(B,_._ieEmuEventHandler,false)}}function J(){var _,A,$=document.getElementsByTagName("script");for(var B=0;B<$.length;B++){_=$[B].src.substring(0,$[B].src.toLowerCase().indexOf("wdatepicker.js"));A=_.lastIndexOf("/");if(A>0)_=_.substring(0,A+1);if(_)break}return _}function D(F){var E,C;if(F.substring(0,1)!="/"&&F.indexOf("://")==-1){E=T.location.href;C=location.href;if(E.indexOf("?")>-1)E=E.substring(0,E.indexOf("?"));if(C.indexOf("?")>-1)C=C.substring(0,C.indexOf("?"));var _="",D="",A="",H,G,B="";for(H=0;H_.scrollLeft||A.scrollLeft>_.scrollLeft))?A:_;return{"top":B.scrollTop,"left":B.scrollLeft}}function B(_){src=_?(_.srcElement||_.target):null;if($dp&&$dp.dd&&$dp.dd.style.display=="block"&&src!=$dp.el){var A=$dp.el,B=$dp.cal,$=$dp.el[$dp.elProp];if($!=null){$dp.$w.hideSel();if($!=""&&!$dp.readOnly)B.date.loadFromDate(B.splitDate($,B.dateFmt));if($==""||(B.isDate(B.date)&&B.isTime(B.date)&&B.checkValid(B.date))){B.mark(true);if($!="")B.update();else B.setRealValue("");$dp.hide()}else B.mark(false)}else $dp.hide()}}var O=[];function W(){$dp.status=2;F()}function F(){if(O.length>0){var $=O.shift();$.el={innerHTML:""};$.eCont=$dp.$($.eCont);$.autoPickDate=true;$.qsEnabled=false;I($)}}function S(C,$){$dp.win=V;C=C||{};if($){$dp.status=1;I({el:{innerHTML:""}},true)}else if(C.eCont){O.push(C);if($dp.status==2)F()}else{if($dp.status==0)$dp.status=1;if($dp.status!=2)return;var B,A=_();if(A){B=A.srcElement||A.target;A.cancelBubble=true}C.el=$dp.$(C.el||B);if(!C.el||C.el&&C.el.disabled||(C.el==$dp.el&&$dp.dd.style.display!="none"&&$dp.dd.style.left!="-1970px"))return;I(C)}function _(){if(G){func=_.caller;while(func!=null){var $=func.arguments[0];if($&&($+"").indexOf("Event")>=0)return $;func=func.caller}return null}return event}}function I(G,A){for(var F in $)if(F.substring(0,1)!="$")$dp[F]=$[F];for(F in G)if($dp[F]===undefined)$dp.errMsg="invalid property:"+F;else $dp[F]=G[F];$dp.elProp=$dp.el&&$dp.el.nodeName=="INPUT"?"value":"innerHTML";if($dp.el[$dp.elProp]==null)return;if($dp.lang=="auto")$dp.lang=R?navigator.browserLanguage.toLowerCase():navigator.language.toLowerCase();if(!$dp.dd||$dp.eCont||($dp.lang&&$dp.realLang&&$dp.realLang.name!=$dp.lang)){if($dp.dd&&!$dp.eCont)T[N].body.removeChild($dp.dd);if($.$dpPath=="")D(_);var B="";if($dp.eCont){$dp.eCont.innerHTML=B;X($dp.eCont.childNodes[0],W)}else{$dp.dd=T[N].createElement("DIV");$dp.dd.style.cssText="position:absolute;z-index:19700";$dp.dd.innerHTML=B;T[N].body.appendChild($dp.dd);X($dp.dd.childNodes[0],W);if(A)$dp.dd.style.left=$dp.dd.style.top="-1970px";else{$dp.show();C()}}}else if($dp.cal){$dp.show();$dp.cal.init();C()}function C(){var F=$dp.position.left,B=$dp.position.top,G=U($dp.el),$=E(V),C=M(T),A=Y(T),D=$dp.dd.offsetHeight,_=$dp.dd.offsetWidth;if(isNaN(B)){if(B=="above"||(B!="under"&&(($.topM+G.bottom+D>C.height)&&($.topM+G.top-D>0))))B=A.top+$.topM+G.top-D-3;else B=A.top+$.topM+G.bottom;B+=R?-1:1}else B+=A.top+$.topM;if(isNaN(F))F=A.left+Math.min($.leftM+G.left,C.width-_-5)-(R?2:0);else F+=A.left+$.leftM;$dp.dd.style.top=B+"px";$dp.dd.style.left=F+"px"}}})() \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/calendar.js b/php/gap_time_demo/My97DatePicker/calendar.js new file mode 100755 index 0000000..0ea7d69 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/calendar.js @@ -0,0 +1,7 @@ +/* + * My97 DatePicker 4.2 + * SITE: http://dp.my97.net + * BLOG: http://my97.cnblogs.com + * MAIL: smallcarrot@163.com + */ +var $c;if($FF){Event.prototype.__defineSetter__("returnValue",function($){if(!$)this.preventDefault();return $});Event.prototype.__defineGetter__("srcElement",function(){var $=this.target;while($.nodeType!=1)$=$.parentNode;return $});HTMLElement.prototype.attachEvent=function($,_){var A=$.replace(/on/,"");_._ieEmuEventHandler=function($){window.event=$;return _()};this.addEventListener(A,_._ieEmuEventHandler,false)}}function My97DP(){$c=this;$dp.$w=window;$dt=this.date=new DPDate();this.QS=[];$d=document.createElement("div");$d.className="WdateDiv";$d.onmousedown=hideSel;$d.innerHTML="
 
";attachTabEvent($d,function(){hideSel()});_();this.init();$();$d.MI.attachEvent("onkeydown",A);$d.yI.attachEvent("onkeydown",A);$d.MI.onfocus=function($){this.className="yminputfocus";this.value=getA(this,"realValue");this.select();$c._fM();showB($d.MD)};$d.MI.onblur=function(){var $;if($lastInput==this){$dt.M=pIntDef(this.value,$dt.M);$=true}c_M($dt.M,$);this.className="yminput";hide($d.MD)};$d.yI.onfocus=function(){this.className="yminputfocus";this.select();$c._fy();showB($d.yD)};$d.yI.onblur=function(){var $;if($lastInput==this){$dt.y=pIntDef(this.value,$dt.y);$=true}c_y($dt.y,$);this.className="yminput";hide($d.yD)};$d.HI.onfocus=function(){$c.currFocus=this;this.select();$c._fH();showB($d.HD)};$d.HI.onblur=function(){var $;if($lastInput==this){$dt.H=pIntDef(this.value,$dt.H);$=true}c_H($dt.H,$);hide($d.HD)};$d.mI.onfocus=function(){$c.currFocus=this;this.select();$c._fm();showB($d.mD)};$d.mI.onblur=function(){var $;if($lastInput==this){$dt.m=pIntDef(this.value,$dt.m);$=true}c_m($dt.m,$);hide($d.mD)};$d.sI.onfocus=function(){$c.currFocus=this;this.select();$c._fs();showB($d.sD)};$d.sI.onblur=function(){var $;if($lastInput==this){$dt.s=pIntDef(this.value,$dt.s);$=true}c_s($dt.s,$);hide($d.sD)};$d.HI.attachEvent("onkeydown",A);$d.mI.attachEvent("onkeydown",A);$d.sI.attachEvent("onkeydown",A);$d.upButton.onclick=function(){updownEvent(1)};$d.downButton.onmousedown=function(){updownEvent(-1)};$d.qsDiv.onclick=function(){if($d.qsDivSel.style.display!="block"){$c._fillQS();showB($d.qsDivSel)}else hide($d.qsDivSel)};attachTabEvent($d.okI,function(){$d.MI.focus();event.returnValue=false});document.body.appendChild($d);function _(){var A=$d.getElementsByTagName("div"),$=$d.getElementsByTagName("input"),B=$d.getElementsByTagName("button"),_=$d.getElementsByTagName("span");$d.navLeftImg=A[1];$d.leftImg=A[2];$d.rightImg=A[8];$d.navRightImg=A[7];$d.MI=$[0];$d.yI=$[1];$d.titleDiv=A[0];$d.MD=A[4];$d.yD=A[6];$d.qsDivSel=A[9];$d.dDiv=A[10];$d.tDiv=A[11];$d.HD=A[12];$d.mD=A[13];$d.sD=A[14];$d.qsDiv=A[15];$d.bDiv=A[16];$d.HI=$[2];$d.mI=$[4];$d.sI=$[6];$d.clearI=$[7];$d.todayI=$[8];$d.okI=$[9];$d.upButton=B[0];$d.downButton=B[1];$d.timeSpan=_[0]}function $(){$d.navLeftImg.onclick=function(){$ny=$ny<=0?$ny-1:-1;if($ny%5==0)$d.yI.focus();c_y($dt.y-1)};$d.leftImg.onclick=function(){var $=$dt.M;if($>1)$-=1;else{$=12;$dt.y-=1}s_y($dt.y);c_M($)};$d.rightImg.onclick=function(){var $=$dt.M;if($<12)$+=1;else{$=1;$dt.y+=1}s_y($dt.y);c_M($)};$d.navRightImg.onclick=function(){$ny=$ny>=0?$ny+1:1;if($ny%5==0)$d.yI.focus();c_y($dt.y+1)}}function A(){var $=event,_=($.which==undefined)?$.keyCode:$.which;if(!$OPERA&&!((_>=48&&_<=57)||(_>=96&&_<=105)||_==8||_==46||_==37||_==39||_==9))$.returnValue=false;$lastInput=$.srcElement}}My97DP.prototype={init:function(){$ny=0;$dp.cal=this;if($dp.readOnly&&$dp.el.readOnly!=null){$dp.el.readOnly=true;$dp.el.blur()}$();this.dateFmt=$dp.dateFmt;this._dealFmt();this.autoPickDate=$dp.autoPickDate||(($dp.has.st)?false:true);$tdt=this.tdate=new DPDate();this.ddateRe=this._initRe("disabledDates");this.ddayRe=this._initRe("disabledDays");this.loadDate();this.minDate=this.doCustomDate($dp.minDate,$dp.minDate!=$dp.defMinDate?$dp.realFmt:$dp.realFullFmt,$dp.defMinDate);this.maxDate=this.doCustomDate($dp.maxDate,$dp.maxDate!=$dp.defMaxDate?$dp.realFmt:$dp.realFullFmt,$dp.defMaxDate);if(this.minDate.compareWith(this.maxDate)>0)$dp.errMsg=$lang.err_1;this._makeDateInRange();$sdt=this.sdate=new DPDate($dt.y,$dt.M,$dt.d,$dt.H,$dt.m,$dt.s);if(!$dp.alwaysUseStartDate&&$dp.el[$dp.elProp]!="")this.update();this.oldValue=$dp.el[$dp.elProp];setA($d.MI,"realValue",$dt.M);$d.MI.value=$lang.aMonStr[$dt.M-1];$d.yI.value=$dt.y;$d.HI.value=$dt.H;$d.mI.value=$dt.m;$d.sI.value=$dt.s;$d.timeSpan.innerHTML=$lang.timeStr;$d.clearI.value=$lang.clearStr;$d.todayI.value=$lang.todayStr;$d.okI.value=$lang.okStr;this.initShowAndHide();this.initBtn();if($dp.errMsg)alert($dp.errMsg);this.redraw();hideSel();if($dp.el.nodeType==1)$dp.attachEvent($dp.el,"onkeydown",function($){if($dp.dd.style.display!="none"){k=($.which==undefined)?$.keyCode:$.which;if(k==9){if($dp.el[$dp.elProp]!="")$c.update();hide($dp.dd)}}});function $(){var _,$;for(_=0;($=document.getElementsByTagName("link")[_]);_++)if(getA($,"rel").indexOf("style")!=-1&&getA($,"title")){$.disabled=true;if(getA($,"title")==$dp.skin)$.disabled=false}}},splitDate:function(J,C,O,E,B,G,F,K,L){var $;if(J&&J.loadDate)$=J;else{$=new DPDate();C=C||$dp.dateFmt;var H,N=0,A=/yyyy|yyy|yy|y|MM|M|dd|d|HH|H|mm|m|ss|s/g,M=J.split(/\W+/),_=C.match(A);A.lastIndex=0;if(!L&&M.length!=_.length){var D=0,K="^";while((M=A.exec(C))!==null){D=M.index-D;K+=(D==0)?"":(".{"+D+"}");D=A.lastIndex;switch(M[0]){case"yyyy":K+="(\\d{4})";break;case"yyy":K+="(\\d{3})";break;default:K+="(\\d\\d?)";break}}K+=".*$";M=new RegExp(K).exec(J);N=1}if(M)for(H=0;H<_.length;H++){var I=M[H+N];if(I)switch(_[H]){case"y":case"yy":I=pIntDef(I,0);if(I<50)I+=2000;else I+=1900;$.y=I;break;case"yyy":$.y=pIntDef(I,0)+$dp.yearOffset;break;default:$[_[H].slice(-1)]=I;break}}}$.coverDate(O,E,B,G,F,K);return $},_initRe:function(_){var B,$=$dp[_],A="(?:";if($){for(B=0;B<$.length;B++){A+=this.doExp($[B]);if(B!=$.length-1)A+="|"}A=new RegExp(A+")")}else A=null;return A},update:function(){$dp.el[$dp.elProp]=this.getDateStr();this.setRealValue()},setRealValue:function($){var _=$dp.$($dp.vel),$=rtn($,this.getDateStr($dp.realFmt));if(_)_.value=$;setA($dp.el,"realValue",$)},doExp:function(s){var ps="yMdHms",arr,tmpEval,re=/#\{(.*?)\}/;s=s+"";for(var i=0;i=0){A=A.replace(/%ld/g,"0");$.d=0;$.M=pInt($.M)+1}$.refresh()}return $},loadDate:function(){var _,$;if($dp.alwaysUseStartDate||($dp.startDate!=""&&$dp.el[$dp.elProp]=="")){_=this.doExp($dp.startDate);$=$dp.realFmt}else{_=$dp.el[$dp.elProp];$=this.dateFmt}$dt.loadFromDate(this.splitDate(_,$));if($dp.has.sd&&!this.isDate($dt)){$dt.y=$tdt.y;$dt.M=$tdt.M;$dt.d=$tdt.d}if($dp.has.st&&!this.isTime($dt)){$dt.H=$tdt.H;$dt.m=$tdt.m;$dt.s=$tdt.s}},isDate:function($){if($.y!=null)$=doStr($.y,4)+"-"+$.M+"-"+$.d;return $.match(/^((\d{2}(([02468][048])|([13579][26]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|([1-2][0-9])))))|(\d{2}(([02468][1235679])|([13579][01345789]))[\-\/\s]?((((0?[13578])|(1[02]))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(3[01])))|(((0?[469])|(11))[\-\/\s]?((0?[1-9])|([1-2][0-9])|(30)))|(0?2[\-\/\s]?((0?[1-9])|(1[0-9])|(2[0-8]))))))(\s(((0?[0-9])|([1-2][0-3]))\:([0-5]?[0-9])((\s)|(\:([0-5]?[0-9])))))?$/)},isTime:function($){if($.H!=null)$=$.H+":"+$.m+":"+$.s;return $.match(/^([0-9]|([0-1][0-9])|([2][0-3])):([0-9]|([0-5][0-9])):([0-9]|([0-5][0-9]))$/)},_makeDateInRange:function(){var _=this.checkRange(),A=true;if(_!=0){A=false;var $;if(_>0)$=this.maxDate;else $=this.minDate;if($dp.has.sd){$dt.y=$.y;$dt.M=$.M;$dt.d=$.d}if($dp.has.st){$dt.H=$.H;$dt.m=$.m;$dt.s=$.s}}return A},checkRange:function(A,$){$=$||$dt;var _=$.compareWith(this.minDate,A);if(_>0){_=$.compareWith(this.maxDate,A);if(_<0)_=0}return _},checkValid:function($,A,B){A=A||$dp.has.minUnit;var _=this.checkRange(A,$);if(_==0){if(A=="d"&&B==null)B=new Date($.y,$.M-1,$.d).getDay();_=!this.testDay(B)&&!this.testDate($)}else _=false;return _},_fd:function(){var F,D,E,L,H=new sb(),G,A,I,C,K="",$="",_=new DPDate($dt.y,$dt.M,$dt.d,0,0,0),J=_.y,B=_.M;G=new Date(J,B-1,1).getDay();A=1-G;I=new Date(J,B,0).getDay();C=new Date(J,B,0).getDate();H.a("");H.a("");F=$dp.isShowWeek?0:1;while(F<8)H.a("");H.a("");for(F=1,D=A;F<7;F++){H.a("");for(E=0;E<7;E++){_.loadDate(J,B,D++);_.refresh();if(_.M==B){L=true;if(_.compareWith($sdt,"d")==0)K="Wselday";else if(_.compareWith($tdt,"d")==0)K="Wtoday";else K=(($dp.highLineWeekDay&&(E==0||E==6))?"Wwday":"Wday");$=(($dp.highLineWeekDay&&(E==0||E==6))?"WwdayOn":"WdayOn")}else if($dp.isShowOthers){L=true;K="WotherDay";$="WotherDayOn"}else L=false;if($dp.isShowWeek&&E==0&&(F<4||L))H.a("");H.a("")}else H.a(">")}H.a("")}H.a("
"+$lang.aWeekStr[F++]+"
"+getWeek(_)+""+_.d+"
");return H.j()},testDate:function(_){var $=this.ddateRe&&this.ddateRe.test(this.getDateStr($dp.realFmt,_));if($dp.disabledDates&&$dp.opposite)$=!$;return $},testDay:function(_){var $=this.ddayRe&&this.ddayRe.test(_);if($dp.disabledDays&&$dp.opposite)$=!$;return $},_f:function(p,c,r,e){var s=new sb();bak=$dt[p];s.a("");for(var j=0;j"+(p=="M"?$lang.aMonStr[$dt[p]-1]:$dt[p])+"")}s.a("")}s.a("
");$dt[p]=bak;return s.j()},_fM:function(){$d.MD.innerHTML=this._f("M",2,6,"i+j*6+1")},_fy:function(_){var B,A=$dt.y,$=new sb();_=rtn(_,A-5);$.a(this._f("y",2,5,_+"+i+j*5"));$.a("
\u2190_+10?"class='menu' onmouseover=\"this.className='menuOn'\" onmouseout=\"this.className='menu'\" onmousedown='if(event.preventDefault)event.preventDefault();event.cancelBubble=true;$c._fy("+(_+10)+")';":"class='invalidMenu'");$.a(">\u2192
");$d.yD.innerHTML=$.j()},_fHMS:function(A,_,$){$d[A+"D"].innerHTML=this._f(A,6,_,$)},_fH:function(){this._fHMS("H",4,"i * 6 + j")},_fm:function(){this._fHMS("m",2,"i * 30 + j * 5")},_fs:function(){this._fHMS("s",1,"j * 10")},_fillQS:function(A){this.initQS();var _=$d.qsDivSel,C=_.style,$=new sb();$.a("");$.a("");for(var B=0;B")}else $.a("");$.a("
"+$lang.quickStr+"
");if(!A)$.a("
\xd7
");$.a("
");_.innerHTML=$.j()},_dealFmt:function(){$(/yyyy|yyy|yy|y/);$(/MM|M/);$(/dd|d/);$(/HH|H/);$(/mm|m/);$(/ss|s/);$dp.has.sd=($dp.has.y||$dp.has.M||$dp.has.d)?true:false;$dp.has.st=($dp.has.H||$dp.has.m||$dp.has.s)?true:false;$dp.realFullFmt=$dp.realFullFmt.replace(/%Date/,$dp.realDateFmt).replace(/%Time/,$dp.realTimeFmt);if($dp.has.sd){if($dp.has.st)$dp.realFmt=$dp.realFullFmt;else $dp.realFmt=$dp.realDateFmt}else $dp.realFmt=$dp.realTimeFmt;function $(_){var $=(_+"").slice(1,2);$dp.has[$]=_.exec($dp.dateFmt)?($dp.has.minUnit=$,true):false}},initShowAndHide:function(){var $=false;$dp.has.y?($=true,show($d.yI,$d.navLeftImg,$d.navRightImg)):hide($d.yI,$d.navLeftImg,$d.navRightImg);$dp.has.M?($=true,show($d.MI,$d.leftImg,$d.rightImg)):hide($d.MI,$d.leftImg,$d.rightImg);$?show($d.titleDiv):hide($d.titleDiv);if($dp.has.st){show($d.tDiv);disHMS($d.HI,$dp.has.H);disHMS($d.mI,$dp.has.m);disHMS($d.sI,$dp.has.s)}else hide($d.tDiv);shorH($d.clearI,$dp.isShowClear);shorH($d.todayI,$dp.isShowToday);shorH($d.qsDiv,($dp.has.d&&$dp.qsEnabled));if($dp.eCont)hide($d.bDiv)},mark:function(B){if($cMark){$cMark=false;return}var A=$dp.el,_=$FF?"class":"className";if(B)C(A);else switch($dp.errDealMode){case 0:$cMark=true;if(confirm($lang.errAlertMsg)){A[$dp.elProp]=this.oldValue;C(A)}else $(A);break;case 1:A[$dp.elProp]=this.oldValue;C(A);break;case 2:$(A);break}function C(A){var $=A.className.replace(/WdateFmtErr/g,"");if(A.className!=$)setA(A,_,$)}function $($){setA($,_,$.className+" WdateFmtErr")}},getP:function(C,_,$){$=$||$dt;var E,B,D,A;switch(C.charAt(0)){case"w":A=getDay($);break;case"D":B=[C];A=$lang.aWeekStr[getDay($)+1];break;case"W":A=getWeek($);break;case"y":B=["yyyy","yyy","yy","y"];break;default:break}B=B||[C+C,C];_=_||B[0];for(E=0;E=0)_=_.replace(D,doStr((C=="y"&&D.length<4)?(D.length<3?$.y%100:($.y+2000-$dp.yearOffset)%1000):A,D.length))}return _},getDateStr:function(_,$){$=$||$dt;_=_||this.dateFmt;var A="yMdHmswWD";for(var B=0;B0)$dt.d--;if(!$dp.eCont){this.update();if(this.checkValid($dt)){$c.mark(true);hide($dp.dd)}else $c.mark(false)}if($dp.onpicked)$dp.onpicked.call($dp.el,$dp);else if(this.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")},initBtn:function(){$d.clearI.onclick=function(){var $;if($dp.onclearing)$=$dp.onclearing.call($dp.el,$dp);if(!$){$dp.el[$dp.elProp]="";$c.setRealValue("");hide($dp.dd);if($dp.oncleared)$dp.oncleared.call($dp.el,$dp);else if($c.oldValue!=$dp.el[$dp.elProp]&&$dp.el.onchange)fireEvent($dp.el,"change")}};$d.okI.onclick=function(){day_Click()};if($dp.el[$dp.elProp]=="")$d.okI.value=$lang.okStr;else $d.okI.value=$lang.updateStr;if(this.checkValid($tdt)){$d.todayI.disabled=false;$d.todayI.onclick=function(){var $=$c.tdate;day_Click($.y,$.M,$.d,$.H,$.m,$.s)}}else $d.todayI.disabled=true},initQS:function(){var H,G,A,F,C=[],$=5,E=$dp.quickSel.length,_=$dp.has.minUnit;if(E>$)E=$;else if(_=="m"||_=="s")C=[0,15,30,45,59,-60,-45,-30,-15,-1];else for(H=0;H<$*2;H++)C[H]=$dt[_]-$+1+H;for(H=G=0;H0)_setAll($c.maxDate);function _setAll($){s_y($.y);s_M($.M);s_d($.d);if($dp.has.st){s_H($.H);s_m($.m);s_s($.s)}}}function s_y($){$dt.y=$d.yI.value=$}function s_M($){$dt.M=$;setA($d.MI,"realValue",$);$d.MI.value=$lang.aMonStr[$-1]}function s_d($){$sdt.d=$dt.d=$}function s_H($){$dt.H=$d.HI.value=$}function s_m($){$dt.m=$d.mI.value=$}function s_s($){$dt.s=$d.sI.value=$}function setA(A,_,$){if(A.setAttribute)A.setAttribute(_,$)}function getA(_,$){return _.getAttribute($)}function makeInRange(_,$,A){if(_<$)_=$;else if(_>A)_=A;return _}function attachTabEvent($,_){$.attachEvent("onkeydown",function(){var $=event,A=($.which==undefined)?$.keyCode:$.which;if(A==9)_()})}function doStr($,_){$=$+"";while($.length<_)$="0"+$;return $}function hideSel(){hide($d.yD,$d.MD,$d.HD,$d.mD,$d.sD)}function updownEvent($){if($c.currFocus==undefined)$c.currFocus=$d.mI;switch($c.currFocus){case $d.HI:c_H($dt.H+$);break;case $d.mI:c_m($dt.m+$);break;case $d.sI:c_s($dt.s+$);break}}function DPDate(D,A,$,C,B,_){this.loadDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(E,$.getFullYear());this.M=pIntDef(B,$.getMonth()+1);this.d=pIntDef(_,$.getDate());this.H=pIntDef(D,$.getHours());this.m=pIntDef(C,$.getMinutes());this.s=pIntDef(A,$.getSeconds())};this.loadFromDate=function($){if($==null)return;this.loadDate($.y,$.M,$.d,$.H,$.m,$.s)};this.coverDate=function(E,B,_,D,C,A){var $=new Date();this.y=pIntDef(this.y,rtn(E,$.getFullYear()));this.M=pIntDef(this.M,rtn(B,$.getMonth()+1));this.d=$dp.has.d?pIntDef(this.d,rtn(_,$.getDate())):1;this.H=pIntDef(this.H,rtn(D,$.getHours()));this.m=pIntDef(this.m,rtn(C,$.getMinutes()));this.s=pIntDef(this.s,rtn(A,$.getSeconds()))};this.compareWith=function($,C){var A="yMdHms",_,B;C=A.indexOf(C);C=C>=0?C:5;for(var D=0;D<=C;D++){B=A.charAt(D);_=this[B]-$[B];if(_>0)return 1;else if(_<0)return-1}return 0};this.refresh=function(){var $=new Date(this.y,this.M-1,this.d,this.H,this.m,this.s);this.y=$.getFullYear();this.M=$.getMonth()+1;this.d=$.getDate();this.H=$.getHours();this.m=$.getMinutes();this.s=$.getSeconds();return!isNaN(this.y)};this.loadDate(D,A,$,C,B,_)}function pInt($){return parseInt($,10)}function pIntDef(_,$){_=pInt(_);if(isNaN(_))_=$;return _}function rtn($,_){return $==null?_:$}function fireEvent(A,$){if($IE)A.fireEvent("on"+$);else{var _=document.createEvent("HTMLEvents");_.initEvent($,true,true);A.dispatchEvent(_)}} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/config.js b/php/gap_time_demo/My97DatePicker/config.js new file mode 100755 index 0000000..d0e1ac5 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/config.js @@ -0,0 +1,12 @@ +var langList = +[ + {name:'en', charset:'UTF-8'}, + {name:'zh-cn', charset:'gb2312'}, + {name:'zh-tw', charset:'GBK'} +]; + +var skinList = +[ + {name:'default', charset:'gb2312'}, + {name:'whyGreen', charset:'gb2312'} +]; \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/lang/en.js b/php/gap_time_demo/My97DatePicker/lang/en.js new file mode 100755 index 0000000..6923a38 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/lang/en.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Invalid date or the date out of range,redo or not?", +aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], +aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], +clearStr: "Clear", +todayStr: "Today", +okStr: "OK", +updateStr: "OK", +timeStr: "Time", +quickStr: "Quick Selection", +err_1: 'MinDate Cannot be bigger than MaxDate!' +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/lang/zh-cn.js b/php/gap_time_demo/My97DatePicker/lang/zh-cn.js new file mode 100755 index 0000000..76ce7df --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/lang/zh-cn.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶Χ,Ҫ?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "ȷ", +updateStr: "ȷ", +timeStr: "ʱ", +quickStr: "ѡ", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/lang/zh-tw.js b/php/gap_time_demo/My97DatePicker/lang/zh-tw.js new file mode 100755 index 0000000..bd979f7 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/lang/zh-tw.js @@ -0,0 +1,12 @@ +var $lang={ +errAlertMsg: "Ϸڸʽڳ޶,ҪN?", +aWeekStr: ["","","һ","","","","",""], +aMonStr: ["һ","","","","","","","","","ʮ","ʮһ","ʮ"], +clearStr: "", +todayStr: "", +okStr: "_", +updateStr: "_", +timeStr: "rg", +quickStr: "x", +err_1: 'Сڲܴ!' +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/skin/WdatePicker.css b/php/gap_time_demo/My97DatePicker/skin/WdatePicker.css new file mode 100755 index 0000000..74a75e8 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/skin/WdatePicker.css @@ -0,0 +1,10 @@ +.Wdate{ + border:#999 1px solid; + height:20px; + background:#fff url(datePicker.gif) no-repeat right; +} + +.WdateFmtErr{ + font-weight:bold; + color:red; +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/skin/datePicker.gif b/php/gap_time_demo/My97DatePicker/skin/datePicker.gif new file mode 100755 index 0000000000000000000000000000000000000000..d6bf40c9f290161c87230787a1056d977d36c821 GIT binary patch literal 1043 zcmd_p?QatW0LSs$R_K_-G(2dKnG6Nuloy5QzR9KEUo-T(>!P_I?XFKgvWtyr!WO4UlCn14~uDIk;oTK<^AT9>DEW?Q;pCx%I$O#N5 zF>!(7;)FBL?Y2>G#rVB@JJbtu9J~xNLUPnSUmhJPocq3fC#2n zf`T_#pxG40CJ;6a(?x<#)R9FWBOz>(W+;^9Jhbd%GBC47(G=xRz)Xgu8JJFcnCB3k z@%ssgmJo`6N-16{1yh`x7M3Z+cUmh9yt+9ezELo|GlGq&y6dm!P^77 zPxRDwnT=eC+BI(eaA zI@!?n@xITu?I(aA-qe2m>HYp*Ct=)U(OjDOa0{Y6er~AynCY7C-e-;9YJLGubiCfY z-F!#~Ha30Gckz2A(6j&ITSo^hZ7n9PzT@zN^LON3>zCUv7|#s8^X2uC{2FFF`}1xc GaQqdg9U6)N literal 0 HcmV?d00001 diff --git a/php/gap_time_demo/My97DatePicker/skin/default/datepicker.css b/php/gap_time_demo/My97DatePicker/skin/default/datepicker.css new file mode 100755 index 0000000..d516e22 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/skin/default/datepicker.css @@ -0,0 +1,237 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:default + * Ƥ:My97 + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#FFFFFF; + border:#bbb 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } + +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + margin-bottom:2px; + padding:1px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + font-weight:bold; + color:blue; + border:#ccc 1px solid; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#ccc 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; + +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ +/* TR */ +.WdateDiv .MTitle{ + background-color:#BDEBEE; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + border:#c5d9e8 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#FF2F2F; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + color:#000; + background-color:#C0EBEF; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A9E4E9; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#6A6AFF; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} + +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + float:left; + margin-top:3px; + margin-right:30px; +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + border:#ccc 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + border:#ccc 1px solid; + padding:2px; +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/skin/default/img.gif b/php/gap_time_demo/My97DatePicker/skin/default/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..053205d8201a3a59fb9870c6a4743fc3efd305fa GIT binary patch literal 1578 zcmeH`+f$MW0L8yg4A8uwQi_*?EFI0Au-(}$Yf8m?W;EG$nKo@ja+NL1Tea4jcp*!p z#xz<>P`7c+`wa^*R6tZzP(V!)H8t;$A?U37?Y7VRC+vARFX!bq=gjdB^gDF;iYKra z&;wtkQmNQ%c1R(COeQ~NGC!@X-L1IYFxXP4D45X9#Y#vG{O;&z3Z#Z4<8oSFA+x?V za{Tnn%#2>IZ&|L*t7Y8jifd|ntJ0009XO#-C~j&(iloKy>DgkjSTe29LF*P4Rz)>s zlR9lubIjD_(#1+*k9=rmZLzSbQZ@E*V{5&c-;ph)iRPts9Bz{4%o&bnk3?Qo|85>y zMIwzWCRiN`>GJZjNYwRAl_gh=>pw%8Y^n}|dKO1%w5(5CQ?kLa&MyMBe*G!`@#xgd zJhad%8%mfwUD?7RB_zwV-9n+TxcJZfD#rb>n2O#SVXyRsGKWe{k5&JiHju`7&x;;8 zX=mqRn${|1)AHbwV-H`x zWY%!VBNy&>$JYxurQC8-S!nN6-*1bd6|*Ju(cDTdpE7Z_rH{*QdZ*AU9yjDPi^cyi z|GV@5_8$%4)(t@fzyjR9W?w%6AR&NYWFJt?Y^5TtTrY{LS?!r9$Do3Mnj+tHLpYh# zWD(Jxy+9w6;6n2p`)^?{Gzp6(j7}kA52j9FckK z_pNGC_oRe{N_n`k2GUqo4!bS;JdZ}SXJWpEJ0%`;tcmOnfo~ZVB$@0wis7A)&MkWM zi*YID8j|kVk!5t)N%RVZt>u|lIMbyk;q*oOM#8Ggz|}RD(+*3UbrN{e+QSKMPF@3v zDP#4WQG>fSsFZ~d&gGDXaJhrW5q?=5zR9HK2Kv92L|Fi_6X_w) z3=Pz_Az@HIUwBEX>aLiJ}kGM#j_wVX#(Snb-z}VN@=1p54MEab$wzRB5iw+%tE;Dk0?L@ zv$zET51d@btHYeFN*gCB%_}aFXzq$FKxLJL`=i}s=>mrw;z5yPuqV?SbTmW(rq3r4 zj0k$d_6uYKheSrC(y}WR_1tYwhRL&8&;ZHAYXr91JTJH@D4IrLBe73-MzA#r((I7< zMjF_^iT80P&5jUlujaOj>=0Od2RaT}lmYt2HyiBPT|JH`94~m1k0}_Z^U?mLEWb97 zS literal 0 HcmV?d00001 diff --git a/php/gap_time_demo/My97DatePicker/skin/whyGreen/bg.jpg b/php/gap_time_demo/My97DatePicker/skin/whyGreen/bg.jpg new file mode 100755 index 0000000000000000000000000000000000000000..75516a6380f3a18d246e090d47999698e4193d6c GIT binary patch literal 307 zcma)%I}XA?3`ED-PeQVgH5(uz6x@S?0`WZ!4L6|Y8r*;uAv#(LJ`Fcn77CVOV!Xga(6BB4DrIK1H-OypPMC&9oX_}>}vF0mlTDi?z#<`+!ZctU# zVEEIggyJ}Enr3Nj+3#?t|AYS?{s>M`f&?)lCc)&-=mG*YNtFb@XTu9r1Cc8}Ah`8} kphyK!asc%NaohO^Ot2#sj4}3y?RB@F-shLmesl8oH`;+K5&!@I literal 0 HcmV?d00001 diff --git a/php/gap_time_demo/My97DatePicker/skin/whyGreen/datepicker.css b/php/gap_time_demo/My97DatePicker/skin/whyGreen/datepicker.css new file mode 100755 index 0000000..2052c87 --- /dev/null +++ b/php/gap_time_demo/My97DatePicker/skin/whyGreen/datepicker.css @@ -0,0 +1,243 @@ +/* + * My97 DatePicker 4.1 + * Ƥ:whyGreen + * Ƥ:why + */ + +/* ѡ DIV */ +.WdateDiv{ + width:180px; + background-color:#fff; + border:#C5E1E4 1px solid; + padding:2px; +} +.WdateDiv *{font-size:9pt;} + +/**************************** + * ͼ + ***************************/ +.WdateDiv .NavImg { + cursor:pointer; + width:16px; + height:16px; + margin-top:1px; +} +.WdateDiv .NavImgll { background:url(img.gif) no-repeat; } +.WdateDiv .NavImgl { background:url(img.gif) no-repeat -16px 0px; } +.WdateDiv .NavImgr { background:url(img.gif) no-repeat -32px 0px; } +.WdateDiv .NavImgrr { background:url(img.gif) no-repeat -48px 0px; } +/**************************** + * · + ***************************/ +/* · DIV */ +.WdateDiv #dpTitle{ + height:24px; + padding:1px; + border:#c5d9e8 1px solid; + background:url(bg.jpg); + margin-bottom:2px; +} +/* · INPUT */ +.WdateDiv .yminput{ + margin-top:2px; + text-align:center; + border:0px; + height:16px; + width:50px; + color:#034c50; + background-color:transparent; + cursor:pointer; +} +/* ·ýʱʽ INPUT */ +.WdateDiv .yminputfocus{ + margin-top:2px; + text-align:center; + border:#939393 1px solid; + font-weight:bold; + color:#034c50; + height:16px; + width:50px; +} +/* ˵ѡ DIV */ +.WdateDiv .menuSel{ + position:absolute; + background-color:#FFFFFF; + border:#A3C6C8 1px solid; + display:none; +} +/* ˵ʽ TD */ +.WdateDiv .menu{ + cursor:pointer; + background-color:#fff; + color:#11777C; +} +/* ˵mouseoverʽ TD */ +.WdateDiv .menuOn{ + cursor:pointer; + background-color:#BEEBEE; +} +/* ˵Чʱʽ TD */ +.WdateDiv .invalidMenu{ + color:#aaa; +} +/* ѡƫ DIV */ +.WdateDiv .YMenu{ + margin-top:16px; +} +/* ѡƫ DIV */ +.WdateDiv .MMenu{ + margin-top:16px; + *width:62px; +} +/* ʱѡλ DIV */ +.WdateDiv .hhMenu{ + margin-top:-90px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .mmMenu{ + margin-top:-46px; + margin-left:26px; +} +/* ѡλ DIV */ +.WdateDiv .ssMenu{ + margin-top:-24px; + margin-left:26px; +} + +/**************************** + * + ***************************/ + .WdateDiv .Wweek { + text-align:center; + background:#DAF3F5; + border-right:#BDEBEE 1px solid; + } +/**************************** + * , + ***************************/ + /* TR */ +.WdateDiv .MTitle{ + color:#13777e; + background-color:#bdebee; +} +/* TABLE */ +.WdateDiv .WdayTable{ + line-height:20px; + color:#13777e; + background-color:#edfbfb; + border:#BEE9F0 1px solid; +} +/* ڸʽ TD */ +.WdateDiv .Wday{ + cursor:pointer; +} +/* ڸmouseoverʽ TD */ +.WdateDiv .WdayOn{ + cursor:pointer; + background-color:#74d2d9 ; +} +/* ĩڸʽ TD */ +.WdateDiv .Wwday{ + cursor:pointer; + color:#ab1e1e; +} +/* ĩڸmouseoverʽ TD */ +.WdateDiv .WwdayOn{ + cursor:pointer; + background-color:#74d2d9; +} +.WdateDiv .Wtoday{ + cursor:pointer; + color:blue; +} +.WdateDiv .Wselday{ + background-color:#A7E2E7; +} +/* ·ݵ */ +.WdateDiv .WotherDay{ + cursor:pointer; + color:#0099CC; +} +/* ·ݵmouseoverʽ */ +.WdateDiv .WotherDayOn{ + cursor:pointer; + background-color:#C0EBEF; +} +/* Чڵʽ,ڷΧڸʽ,ѡ */ +.WdateDiv .WinvalidDay{ + color:#aaa; +} +/**************************** + * ʱ + ***************************/ +/* ʱ DIV */ +.WdateDiv #dpTime{ + +} +/* ʱ SPAN */ +.WdateDiv #dpTime #dpTimeStr{ + margin-left:1px; + color:#497F7F; +} +/* ʱ INPUT */ +.WdateDiv #dpTime input{ + height:16px; + width:18px; + text-align:center; + color:#333; + border:#61CAD0 1px solid; +} +/* ʱ ʱ INPUT */ +.WdateDiv #dpTime .tB{ + border-right:0px; +} +/* ʱ ֺͼ ':' INPUT */ +.WdateDiv #dpTime .tE{ + border-left:0; + border-right:0; +} +/* ʱ INPUT */ +.WdateDiv #dpTime .tm{ + width:7px; + border-left:0; + border-right:0; +} +/* ʱұߵϰť BUTTON */ +.WdateDiv #dpTime #dpTimeUp{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -32px -16px; +} +/* ʱұߵ°ť BUTTON */ +.WdateDiv #dpTime #dpTimeDown{ + height:10px; + width:13px; + border:0px; + background:url(img.gif) no-repeat -48px -16px; +} +/**************************** + * + ***************************/ + .WdateDiv #dpQS { + float:left; + margin-right:3px; + margin-top:3px; + background:url(img.gif) no-repeat 0px -16px; + width:20px; + height:20px; + cursor:pointer; + } +.WdateDiv #dpControl { + text-align:right; + margin-top:3px; +} +.WdateDiv .dpButton{ + height:20px; + width:45px; + padding:2px; + border:#38B1B9 1px solid; + background-color:#CFEBEE; + color:#08575B; +} \ No newline at end of file diff --git a/php/gap_time_demo/My97DatePicker/skin/whyGreen/img.gif b/php/gap_time_demo/My97DatePicker/skin/whyGreen/img.gif new file mode 100755 index 0000000000000000000000000000000000000000..4003f20fb1197edf0433ff99759cb6399d0f99f9 GIT binary patch literal 1679 zcmV;A25|XDNk%w1VL$*R0QUd@0000>z|tkRw@#l!oyCyW^wMhEO#o(Q*4EZ-x4K%c zP*b}=vCr2~x5%c%&Qh|zhqr?>W@b{St~9N+)b#(R%-5i?yE~z#=H}?2w6c`X)wSH? zVX(c6ot;9c!Mx1O#Pj)gylXe5w0^?DK(n}Qv9$m8|Ff^YsngM-(W7*QjZCCI*xcp! z_xGQ#u6)JRzV5Qk(A8vheD3bi_@$kld7x(9h-V@Bjq>_W%FS z@A`Vmb5y*=-QM7b(bSsVj&0D@RntqP*yeEWV(S0(H?y@ot+UeU@$mEf$@9gxx3`nh z;m6j|YQW7gw!8NK`OWn2e$CNL#m$n$k9Y7>EUvuF%*>asnXTcW(B;HqKl zS-;J=yvMh=y2ak!yYKu01pn9*~nwU#=F13gwuo(001$yx6s(zo73t=uf4Cdx@Oy1guu%}t+!pE zu;csxaL{Db^vmDl)k?I&IJU*r@aZnM$KBxRu-@Lr&e8Dx@7C}4c<@17vcJml#OMCx zwd3KH#J>Fg`K!CIuG8bc#>@Z@33=GmuD!(7?9wx@$(_vHwZ*k{;!%#YgNxGE01q8= zzPgg2pmN5@fy;D7sIGCn%Y?|uLbbim-QHTm$EVKS)Ysn4)!5(m+*i3mz1G&9%h6Fbx7R*o7! z!kxSJqTRcA^XlCj(L@VNmV}rvp=+=%S+eXX9s&l;42C}>&|rgv4G94vpn2LnkWH9Y zhpND;aO~JJf3<22G_iOvy+)0!1-p?X(3aaRax=Ve>JEr;jw)yo^x_2(A_FIc`Gzms zyE5G_T^iG%!9XEfgkYDI3PvP7dUEXl0`dt%(i(P+;5H0uD1yr0~QOP{bn2I%G6v14AN&u}B&^Xwbzk^AYjD0|T+b3oh?y zFhVXRaNy1=tgtemV0OS^1~VZ%5eOuru)snulB@#-dJFM^NI&lkGYlrlX!1ZjO*9eW zG+lIo2_|2BQG*0*WI2!>*cH$NDq=*!ju6zG@X9NnK(fguUTndT0R3cwg9GZ+Nkjws zxZ=t{e5BFEGd}nN007hQ(+p<<>9Peqf9x;{CpQR@MGX5u0ZBEV91%w!LNJ8H6}eQP z1UH?ugN!K;Ab|v*8YFW@EeT-%!hjr!OaKiu1KFSp6XqD81{aEWF@zL6)Z+yd)Q}Ow zCS))q3@Byz^TH!2;DCb>ZPZc6K>Cm}MIHf^a*iM*Owfcr`V16K5yf~z%O0bk;fE9% zs9*swF3f=e0)}9~5DD|VaEUZytfK0{s|r+#KZLBZN+<{)JWwFpFtSG!23)fO59M?q zLkBJ>;{q9Eh|=srZ7kso5%S0bam2|@FaZhWTEPd*iQdv^5DO?k03d*TAPx)n6urd^ zCiCUc5L+}7i2?&aki;BwL<0pn=Yc_uA&)7|&^>Q#!GtkROcG5jR(pZY5Nwly1*cv! z1jZYKsZtKru|VO47g_ggaRdgs#Jv!9x^7WPFI2=J>=26WdjuJ`39ir}E!?sO7$&eo zOd%{(LIwsH^brRJw@oNHLfWOCIs$!QfyEIqkTHYmr=zZV>MhtX!|pS*kX`DvA2itT Z!{27S@w5kD(DBS4ugmktD_>AR06TP*k#+z8 literal 0 HcmV?d00001 diff --git a/php/gap_time_demo/README.md b/php/gap_time_demo/README.md new file mode 100755 index 0000000..1ec7dd2 --- /dev/null +++ b/php/gap_time_demo/README.md @@ -0,0 +1,2 @@ +#时间控件 +选择日期自动按时间升序排序demo diff --git a/php/gap_time_demo/gapDateDemo.html b/php/gap_time_demo/gapDateDemo.html new file mode 100755 index 0000000..2fb4f07 --- /dev/null +++ b/php/gap_time_demo/gapDateDemo.html @@ -0,0 +1,93 @@ + + + + + +间断日期选择demo + + + + + +
+ 间断日期: +
+
间断日期
+
+ 活动日期选择: +
+ +
+
+
+ + + \ No newline at end of file diff --git a/php/gap_time_demo/jquery-1.7.2.min.js b/php/gap_time_demo/jquery-1.7.2.min.js new file mode 100755 index 0000000..16ad06c --- /dev/null +++ b/php/gap_time_demo/jquery-1.7.2.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.2 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"":"")+""),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(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){if(c!=="border")for(;e=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){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)?+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=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};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=m.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.2",length:0,size:function(){return this.length},toArray:function(){return F.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)?E.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(),A.add(a);return this},eq:function(a){a=+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(F.apply(this,arguments),"slice",F.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:E,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;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.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):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(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(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;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(w,"ms-").replace(v,x)},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(;c
a",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.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,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="
"+""+"
",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="
t
",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="
",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();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[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),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[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){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.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];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}}}}),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){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")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}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,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function( +a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"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,g=p.selector),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=f.trim(I(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:"";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,m=E.test(s+h)?e:e.parentNode,n=null;for(;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;le&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.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));o.match.globalPOS=p;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(S(c[0])||S(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);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).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 V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
","
"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},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){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):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 +.clean(arguments);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",arguments);a.push.apply(a,f.clean(arguments));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){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(;d1&&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,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]===""&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.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(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),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)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[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","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/php/gap_time_demo/sale.css b/php/gap_time_demo/sale.css new file mode 100755 index 0000000..22b5cda --- /dev/null +++ b/php/gap_time_demo/sale.css @@ -0,0 +1,22 @@ +i{font-style: normal;} +/*列表页新建活动和修改活动*/ +body{font-family: "微软雅黑", "宋体", Arial;font-size:12px;margin:0;} +.addActivity{padding:30px;} +.activityContent>p{border-bottom: 1px dashed #6484d9;padding-bottom: 10px;font-size:16px;margin:0;} +.activityContent .activity{padding-left:68px;} +.activity p input,.activityDate dd input{width:197px;height:22px;} +.activity p input{width:210px;} +.activity span{color:#f00;padding-left:20px;} +.activity p>i{padding-right:15px;} +.activity p input{margin-bottom:16px;} +.activityDate{width:465px;background:#e2e1f0;padding-bottom:6px;margin-left: 75px; +margin-top: -30px;} +.activityDate i{color:#30043f;} +.activityStartDate{margin-bottom:18px;margin-top:10px;} +.continuousDate{margin-bottom:10px;} +.activityDate dt{font-size:14px;} +.activityDate .jiange_p{padding:0 20px;border:1px solid #6484d9;padding:18px 0 18px 16px;margin:10px 20px 0 20px;background:#fff;} +.activityDate .jiange_p span{padding-left:0;display:inline-block;width: 24%; color:#333;cursor:pointer;line-height:25px;} +.jiange_p i{padding-left:12px;color:#ff0000;} +.activityDate .jiange_p .jiange_span{padding-right:0;} +.activity .activityBtn input{width:95px;height:25px;border:none;border:1px solid #6484d9;border-radius: 2px;} From 765386317cf5f9615a0f1607fd19f28cdab3e08f Mon Sep 17 00:00:00 2001 From: 131468yanglijun <903714303@qq.com> Date: Mon, 11 Jul 2016 16:43:59 +0800 Subject: [PATCH 88/88] =?UTF-8?q?php=E5=9B=BE=E7=89=87=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E5=8A=A0=E8=BD=BDiframe=E5=86=85=E8=81=94=E6=A1=86=E6=9E=B6?= =?UTF-8?q?=E5=AE=9E=E7=8E=B0=E9=A1=B5=E9=9D=A2=E4=B8=8D=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=9B=BE=E7=89=87demo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- php/iframe_uploade_demo/README.md | 2 ++ php/iframe_uploade_demo/iframe_uploade.html | 2 +- php/iframe_uploade_demo/iframe_uploade.php | 25 +++++---------------- 3 files changed, 9 insertions(+), 20 deletions(-) create mode 100755 php/iframe_uploade_demo/README.md diff --git a/php/iframe_uploade_demo/README.md b/php/iframe_uploade_demo/README.md new file mode 100755 index 0000000..3484139 --- /dev/null +++ b/php/iframe_uploade_demo/README.md @@ -0,0 +1,2 @@ +#php图片上传,html加载iframe内联框架 +这个demo主要是在php里面执行完图片上传的功能以后引用iframe的内连框架,目的是把上传完的图片路径保存到iframe的标签里,html接收到这个路径,实现不跳页面立即显示所上传图片 diff --git a/php/iframe_uploade_demo/iframe_uploade.html b/php/iframe_uploade_demo/iframe_uploade.html index 72534e3..4559ba8 100755 --- a/php/iframe_uploade_demo/iframe_uploade.html +++ b/php/iframe_uploade_demo/iframe_uploade.html @@ -3,7 +3,7 @@ iframe 图片上传demo - +
diff --git a/php/iframe_uploade_demo/iframe_uploade.php b/php/iframe_uploade_demo/iframe_uploade.php index 2988d8c..9fd4bc5 100755 --- a/php/iframe_uploade_demo/iframe_uploade.php +++ b/php/iframe_uploade_demo/iframe_uploade.php @@ -4,13 +4,13 @@ echo '!problem:'; switch($_FILES['file']['error']) { - case 1: echo '文件大小超过服务器限制'; + case 1: echo '文件大小超过php.ini中upload_max_filesize限制的值'; break; - case 2: echo '文件太大!'; + case 2: echo '上传文件的大小超过了HTML表单中MAX_FILE_SIZE选项指定的值'; break; - case 3: echo '文件只加载了一部分!'; + case 3: echo '文件只有部分被上传'; break; - case 4: echo '文件加载失败!'; + case 4: echo '文件加载失败,没有文件被上传!'; break; } @@ -46,21 +46,8 @@ echo 'problem!'; exit; } -//生成缩略图 -$src_image=ImageCreateFromJPEG($upfilePath); -$srcW=ImageSX($src_image); //获得原图片宽 -$srcH=ImageSY($src_image); //获得原图片高 -$proportion = $srcW/$srcH;//宽和高的比例, -$round = round($proportion,2);//宽和高的比例,保留两位小数 -$width = round($srcW/$round,0);//等比例缩放的图片的宽 -$height = round($srcH/$round,0);//等比例缩放的图片的高 -$dst_image=ImageCreateTrueColor($width,$height);//创建图像 -ImageCopyResized($dst_image,$src_image,0,0,0,0,$width,$height,$srcW,$srcH); -$smallfile = '/img/img_group/' .'small'.$today.$type;//缩略图保存地址 -ImageJpeg($dst_image,$smallfile); -//删除原图 -unlink($upfilePath); -$path = 'http://img.ljlj.loc/img_group/'.'small'.$today . $type;//所略图输出路径 +//页面上图片输出路径 +$path = 'http://img.ljlj.loc/img_group/'.$today . $type; ?>