From 366b7f387d1b1a5deaec2d3e3035d0bbd1eba1f1 Mon Sep 17 00:00:00 2001 From: "PC-201804110447\\Administrator" Date: Mon, 21 May 2018 01:02:53 +0800 Subject: [PATCH] =?UTF-8?q?update=20version=202.2.2=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E6=97=A5=E5=BF=97=E5=BC=82=E5=B8=B8=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9debug=E6=A8=A1=E5=BC=8F=E9=83=A8=E5=88=86?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=20=E4=BF=AE=E6=94=B9=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E5=AF=BB=E9=A1=B5=E6=9C=BA=E5=88=B6=20=E5=A2=9E=E5=8A=A0sql?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E6=96=B9=E6=B3=95=E5=88=AB=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/PHP300Framework2x.iml | 8 + .idea/modules.xml | 8 + .idea/php.xml | 4 + .idea/vcs.xml | 6 + .idea/workspace.xml | 692 ++++++ CNAME | 1 - Extend/Class/index.html | 0 Extend/Package/index.html | 0 Framework/Library/Common/helper.php | 46 +- .../Library/Interfaces/CacheInterface.php | 17 +- .../Library/Interfaces/ConfigInterface.php | 5 +- Framework/Library/Interfaces/DbInterface.php | 7 +- Framework/Library/Interfaces/LogInterface.php | 2 +- Framework/Library/Process/Auxiliary.class.php | 130 +- Framework/Library/Process/Cache.class.php | 8 +- Framework/Library/Process/Config.class.php | 37 +- Framework/Library/Process/Db.class.php | 25 +- .../Library/Process/Drive/Cache/Memcache.php | 25 +- .../Library/Process/Drive/Cache/Redis.php | 28 +- Framework/Library/Process/Drive/Db/Mysqli.php | 172 +- Framework/Library/Process/Drive/Db/PDO.php | 177 +- Framework/Library/Process/Extend.class.php | 49 +- Framework/Library/Process/Log.class.php | 35 +- .../Library/Process/LogicExceptions.class.php | 137 +- Framework/Library/Process/Router.class.php | 23 +- Framework/Library/Process/Running.class.php | 29 +- Framework/Library/Process/Structure.class.php | 152 +- Framework/Library/Process/Tpl/error.tpl | 56 +- Framework/Library/Process/Tpl/error_page.tpl | 64 + .../Library/Process/Tpl/success_page.tpl | 63 + Framework/Library/Process/View.class.php | 38 +- Framework/Library/Process/Visit.class.php | 15 +- Framework/frame.php | 181 +- Project/Common/Config/Db.cfg.php | 26 +- Project/Common/Config/Router.cfg.php | 2 +- Project/Common/Config/index.html | 0 Project/Home/Index.class.php | 23 +- Project/Home/index.html | 0 Project/Model/UserModel.class.php | 1 + Project/Model/index.html | 0 .../Runtime/Home/Log/Error_2018-05-20(0).log | 911 +++++++ ...bea94fe58ea7699_0.file.error.tpl.cache.php | 133 + ...b6a0d3d87d1bd81587777b3.error_page.tpl.php | 81 + ...68838fdfa62b0d3843bb418fda6e.error.tpl.php | 132 + ...0aa2f16c38d6779a219d7cb2092.index.html.php | 88 + ...bdfe84584fbda3_0.file.index.html.cache.php | 95 + ...62529e9d4e_0.file.error_page.tpl.cache.php | 93 + ...bea94fe58ea7699_0.file.error.tpl.cache.php | 133 + ...68838fdfa62b0d3843bb418fda6e.error.tpl.php | 114 + Project/View/Home/index.html | 98 +- Web/Public/home/css/font-awesome.css | 2199 ----------------- Web/Public/home/css/style.css | 760 ------ Web/Public/home/fonts/FontAwesome.otf | Bin 124988 -> 0 bytes Web/Public/home/fonts/fontawesome-webfont.eot | Bin 76518 -> 0 bytes Web/Public/home/fonts/fontawesome-webfont.svg | 685 ----- Web/Public/home/fonts/fontawesome-webfont.ttf | Bin 152796 -> 0 bytes .../home/fonts/fontawesome-webfont.woff | Bin 90412 -> 0 bytes .../home/fonts/fontawesome-webfont.woff2 | Bin 71896 -> 0 bytes Web/Public/home/images/Thumbs.db | Bin 11776 -> 0 bytes Web/Public/home/images/banner.jpg | Bin 24084 -> 0 bytes Web/index.php | 9 +- 61 files changed, 3526 insertions(+), 4297 deletions(-) create mode 100644 .idea/PHP300Framework2x.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml delete mode 100644 CNAME delete mode 100644 Extend/Class/index.html delete mode 100644 Extend/Package/index.html create mode 100644 Framework/Library/Process/Tpl/error_page.tpl create mode 100644 Framework/Library/Process/Tpl/success_page.tpl delete mode 100644 Project/Common/Config/index.html delete mode 100644 Project/Home/index.html delete mode 100644 Project/Model/index.html create mode 100644 Project/Runtime/Home/Log/Error_2018-05-20(0).log create mode 100644 Project/Runtime/Home/View/30254b2a4348204387573be5dbea94fe58ea7699_0.file.error.tpl.cache.php create mode 100644 Project/Runtime/Home/View/Cache/2b3f6b472f8fc68bfb6a0d3d87d1bd81587777b3.error_page.tpl.php create mode 100644 Project/Runtime/Home/View/Cache/47b038c8c9cf68838fdfa62b0d3843bb418fda6e.error.tpl.php create mode 100644 Project/Runtime/Home/View/Cache/591504bfe0de50aa2f16c38d6779a219d7cb2092.index.html.php create mode 100644 Project/Runtime/Home/View/b69bea6fdba389f4e2126d45f7bdfe84584fbda3_0.file.index.html.cache.php create mode 100644 Project/Runtime/Home/View/fd97c8d35190c3b0a6343df62568dd62529e9d4e_0.file.error_page.tpl.cache.php create mode 100644 Project/Runtime/View/View/30254b2a4348204387573be5dbea94fe58ea7699_0.file.error.tpl.cache.php create mode 100644 Project/Runtime/View/View/Cache/47b038c8c9cf68838fdfa62b0d3843bb418fda6e.error.tpl.php delete mode 100644 Web/Public/home/css/font-awesome.css delete mode 100644 Web/Public/home/css/style.css delete mode 100644 Web/Public/home/fonts/FontAwesome.otf delete mode 100644 Web/Public/home/fonts/fontawesome-webfont.eot delete mode 100644 Web/Public/home/fonts/fontawesome-webfont.svg delete mode 100644 Web/Public/home/fonts/fontawesome-webfont.ttf delete mode 100644 Web/Public/home/fonts/fontawesome-webfont.woff delete mode 100644 Web/Public/home/fonts/fontawesome-webfont.woff2 delete mode 100644 Web/Public/home/images/Thumbs.db delete mode 100644 Web/Public/home/images/banner.jpg diff --git a/.idea/PHP300Framework2x.iml b/.idea/PHP300Framework2x.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/PHP300Framework2x.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9fc087d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..cd67c36 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..8da70c0 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,692 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $PROJECT_DIR$/composer.json + + + + + + + + + + smarty_internal_template + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +