From c8958cbee0a6b49b3f599dcc29179753e7896cfe Mon Sep 17 00:00:00 2001 From: origami11 Date: Thu, 16 Feb 2017 10:14:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B3=D0=B8=D1=81=D1=82=D1=80=20?= =?UTF-8?q?=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/{adapter.php => Adapter.php} | 0 src/{arr.php => Arr.php} | 0 src/{collection.php => Collection.php} | 0 .../HttpConnection.php} | 0 .../HttpConnectionResponse.php} | 0 .../idna_convert.php | 0 .../action.php => Controller/Action.php} | 0 .../Component.php} | 0 .../front.php => Controller/Front.php} | 0 .../Installer.php} | 0 .../model.php => Controller/Model.php} | 0 .../state.php => Controller/State.php} | 0 src/{database.php => Database.php} | 0 src/{error.php => Error.php} | 0 src/{file.php => File.php} | 0 .../ActionAccess.php} | 0 .../ActionLogger.php} | 0 src/{filter/filter.php => Filter/Filter.php} | 0 src/{filter/login.php => Filter/Login.php} | 0 .../useraccess.php => Filter/UserAccess.php} | 0 src/{form/form.php => Form/Form.php} | 0 .../viewstate.php => Form/ViewState.php} | 0 src/{formats/dot.php => Formats/Dot.php} | 0 src/{formats/helix.php => Formats/Helix.php} | 0 .../point.php => Geometry/Point.php} | 0 .../rectangle.php => Geometry/Rectangle.php} | 0 src/{httprequest.php => HttpRequest.php} | 0 .../manager.php => Layout/Manager.php} | 0 src/{layout/none.php => Layout/None.php} | 0 src/{mail.php => Mail.php} | 0 .../factory.php => Mapper/Factory.php} | 0 src/{mapper/mapper.php => Mapper/Mapper.php} | 0 .../pathmapper.php => Mapper/PathMapper.php} | 0 .../SimpleBBCode.php} | 0 src/{numbers.php => Numbers.php} | 0 src/{path.php => Path.php} | 0 src/{primitive.php => Primitive.php} | 0 src/{query => Query}/meta.php | 0 src/{query => Query}/query.php | 0 src/{query => Query}/table.php | 0 src/{registry.php => Registry.php} | 0 src/{search => Search}/htmlhelper.php | 0 src/{search => Search}/index.php | 0 src/{search => Search}/lexer.php | 0 src/{search => Search}/search.php | 0 src/{search => Search}/searcher.php | 0 src/{search => Search}/stemmer.php | 0 src/{session.php => Session.php} | 0 src/{settings.php => Settings.php} | 0 src/{setup.php => Setup.php} | 0 src/{shortcut.php => Shortcut.php} | 0 src/{sort.php => Sort.php} | 0 src/{spell.php => Spell.php} | 0 src/{tools/drawing.php => Tools/Drawing.php} | 0 .../exceltable.php => Tools/ExcelTable.php} | 0 src/{tools/image.php => Tools/Image.php} | 0 .../password.php => Tools/Password.php} | 0 src/{tools/string.php => Tools/String.php} | 0 .../tableview.php => Tools/TableView.php} | 0 .../TemplateImage.php} | 0 .../translit.php => Tools/Translit.php} | 0 src/{tree/dbtree.php => Tree/DBtree.php} | 0 src/{tree/database.php => Tree/Database.php} | 0 src/{tree/sort.php => Tree/Sort.php} | 0 .../Rule/Abstract.php} | 2 +- .../alpha.php => Validator/Rule/Alpha.php} | 4 +-- .../rule/code.php => Validator/Rule/Code.php} | 4 +-- .../count.php => Validator/Rule/Count.php} | 4 +-- .../rule/date.php => Validator/Rule/Date.php} | 4 +-- .../email.php => Validator/Rule/Email.php} | 4 +-- .../Rule/EmailList.php} | 4 +-- .../isfile.php => Validator/Rule/IsFile.php} | 4 +-- .../match.php => Validator/Rule/Match.php} | 4 +-- .../Rule/Notnull.php} | 4 +-- .../Rule/Numeric.php} | 4 +-- .../rule/time.php => Validator/Rule/Time.php} | 4 +-- .../unique.php => Validator/Rule/Unique.php} | 4 +-- .../validator.php => Validator/Validator.php} | 26 +++++++++---------- .../composite.php => View/Composite.php} | 0 src/{view/top.php => View/Top.php} | 0 src/{view/view.php => View/View.php} | 0 src/{zipfile.php => ZipFile.php} | 0 src/validator/rule/all.php | 2 -- 83 files changed, 25 insertions(+), 53 deletions(-) rename src/{adapter.php => Adapter.php} (100%) rename src/{arr.php => Arr.php} (100%) rename src/{collection.php => Collection.php} (100%) rename src/{connection/httpconnection.php => Connection/HttpConnection.php} (100%) rename src/{connection/httpconnectionresponse.php => Connection/HttpConnectionResponse.php} (100%) rename src/{connection => Connection}/idna_convert.php (100%) rename src/{controller/action.php => Controller/Action.php} (100%) rename src/{controller/component.php => Controller/Component.php} (100%) rename src/{controller/front.php => Controller/Front.php} (100%) rename src/{controller/installer.php => Controller/Installer.php} (100%) rename src/{controller/model.php => Controller/Model.php} (100%) rename src/{controller/state.php => Controller/State.php} (100%) rename src/{database.php => Database.php} (100%) rename src/{error.php => Error.php} (100%) rename src/{file.php => File.php} (100%) rename src/{filter/actionaccess.php => Filter/ActionAccess.php} (100%) rename src/{filter/actionlogger.php => Filter/ActionLogger.php} (100%) rename src/{filter/filter.php => Filter/Filter.php} (100%) rename src/{filter/login.php => Filter/Login.php} (100%) rename src/{filter/useraccess.php => Filter/UserAccess.php} (100%) rename src/{form/form.php => Form/Form.php} (100%) rename src/{form/viewstate.php => Form/ViewState.php} (100%) rename src/{formats/dot.php => Formats/Dot.php} (100%) rename src/{formats/helix.php => Formats/Helix.php} (100%) rename src/{geometry/point.php => Geometry/Point.php} (100%) rename src/{geometry/rectangle.php => Geometry/Rectangle.php} (100%) rename src/{httprequest.php => HttpRequest.php} (100%) rename src/{layout/manager.php => Layout/Manager.php} (100%) rename src/{layout/none.php => Layout/None.php} (100%) rename src/{mail.php => Mail.php} (100%) rename src/{mapper/factory.php => Mapper/Factory.php} (100%) rename src/{mapper/mapper.php => Mapper/Mapper.php} (100%) rename src/{mapper/pathmapper.php => Mapper/PathMapper.php} (100%) rename src/{markup/simplebbcode.php => Markup/SimpleBBCode.php} (100%) rename src/{numbers.php => Numbers.php} (100%) rename src/{path.php => Path.php} (100%) rename src/{primitive.php => Primitive.php} (100%) rename src/{query => Query}/meta.php (100%) rename src/{query => Query}/query.php (100%) rename src/{query => Query}/table.php (100%) rename src/{registry.php => Registry.php} (100%) rename src/{search => Search}/htmlhelper.php (100%) rename src/{search => Search}/index.php (100%) rename src/{search => Search}/lexer.php (100%) rename src/{search => Search}/search.php (100%) rename src/{search => Search}/searcher.php (100%) rename src/{search => Search}/stemmer.php (100%) rename src/{session.php => Session.php} (100%) rename src/{settings.php => Settings.php} (100%) rename src/{setup.php => Setup.php} (100%) rename src/{shortcut.php => Shortcut.php} (100%) rename src/{sort.php => Sort.php} (100%) rename src/{spell.php => Spell.php} (100%) rename src/{tools/drawing.php => Tools/Drawing.php} (100%) rename src/{tools/exceltable.php => Tools/ExcelTable.php} (100%) rename src/{tools/image.php => Tools/Image.php} (100%) rename src/{tools/password.php => Tools/Password.php} (100%) rename src/{tools/string.php => Tools/String.php} (100%) rename src/{tools/tableview.php => Tools/TableView.php} (100%) rename src/{tools/templateimage.php => Tools/TemplateImage.php} (100%) rename src/{tools/translit.php => Tools/Translit.php} (100%) rename src/{tree/dbtree.php => Tree/DBtree.php} (100%) rename src/{tree/database.php => Tree/Database.php} (100%) rename src/{tree/sort.php => Tree/Sort.php} (100%) rename src/{validator/rule/abstract.php => Validator/Rule/Abstract.php} (95%) rename src/{validator/rule/alpha.php => Validator/Rule/Alpha.php} (82%) rename src/{validator/rule/code.php => Validator/Rule/Code.php} (96%) rename src/{validator/rule/count.php => Validator/Rule/Count.php} (91%) rename src/{validator/rule/date.php => Validator/Rule/Date.php} (87%) rename src/{validator/rule/email.php => Validator/Rule/Email.php} (92%) rename src/{validator/rule/emaillist.php => Validator/Rule/EmailList.php} (92%) rename src/{validator/rule/isfile.php => Validator/Rule/IsFile.php} (94%) rename src/{validator/rule/match.php => Validator/Rule/Match.php} (88%) rename src/{validator/rule/notnull.php => Validator/Rule/Notnull.php} (88%) rename src/{validator/rule/numeric.php => Validator/Rule/Numeric.php} (81%) rename src/{validator/rule/time.php => Validator/Rule/Time.php} (90%) rename src/{validator/rule/unique.php => Validator/Rule/Unique.php} (81%) rename src/{validator/validator.php => Validator/Validator.php} (85%) rename src/{view/composite.php => View/Composite.php} (100%) rename src/{view/top.php => View/Top.php} (100%) rename src/{view/view.php => View/View.php} (100%) rename src/{zipfile.php => ZipFile.php} (100%) delete mode 100644 src/validator/rule/all.php diff --git a/src/adapter.php b/src/Adapter.php similarity index 100% rename from src/adapter.php rename to src/Adapter.php diff --git a/src/arr.php b/src/Arr.php similarity index 100% rename from src/arr.php rename to src/Arr.php diff --git a/src/collection.php b/src/Collection.php similarity index 100% rename from src/collection.php rename to src/Collection.php diff --git a/src/connection/httpconnection.php b/src/Connection/HttpConnection.php similarity index 100% rename from src/connection/httpconnection.php rename to src/Connection/HttpConnection.php diff --git a/src/connection/httpconnectionresponse.php b/src/Connection/HttpConnectionResponse.php similarity index 100% rename from src/connection/httpconnectionresponse.php rename to src/Connection/HttpConnectionResponse.php diff --git a/src/connection/idna_convert.php b/src/Connection/idna_convert.php similarity index 100% rename from src/connection/idna_convert.php rename to src/Connection/idna_convert.php diff --git a/src/controller/action.php b/src/Controller/Action.php similarity index 100% rename from src/controller/action.php rename to src/Controller/Action.php diff --git a/src/controller/component.php b/src/Controller/Component.php similarity index 100% rename from src/controller/component.php rename to src/Controller/Component.php diff --git a/src/controller/front.php b/src/Controller/Front.php similarity index 100% rename from src/controller/front.php rename to src/Controller/Front.php diff --git a/src/controller/installer.php b/src/Controller/Installer.php similarity index 100% rename from src/controller/installer.php rename to src/Controller/Installer.php diff --git a/src/controller/model.php b/src/Controller/Model.php similarity index 100% rename from src/controller/model.php rename to src/Controller/Model.php diff --git a/src/controller/state.php b/src/Controller/State.php similarity index 100% rename from src/controller/state.php rename to src/Controller/State.php diff --git a/src/database.php b/src/Database.php similarity index 100% rename from src/database.php rename to src/Database.php diff --git a/src/error.php b/src/Error.php similarity index 100% rename from src/error.php rename to src/Error.php diff --git a/src/file.php b/src/File.php similarity index 100% rename from src/file.php rename to src/File.php diff --git a/src/filter/actionaccess.php b/src/Filter/ActionAccess.php similarity index 100% rename from src/filter/actionaccess.php rename to src/Filter/ActionAccess.php diff --git a/src/filter/actionlogger.php b/src/Filter/ActionLogger.php similarity index 100% rename from src/filter/actionlogger.php rename to src/Filter/ActionLogger.php diff --git a/src/filter/filter.php b/src/Filter/Filter.php similarity index 100% rename from src/filter/filter.php rename to src/Filter/Filter.php diff --git a/src/filter/login.php b/src/Filter/Login.php similarity index 100% rename from src/filter/login.php rename to src/Filter/Login.php diff --git a/src/filter/useraccess.php b/src/Filter/UserAccess.php similarity index 100% rename from src/filter/useraccess.php rename to src/Filter/UserAccess.php diff --git a/src/form/form.php b/src/Form/Form.php similarity index 100% rename from src/form/form.php rename to src/Form/Form.php diff --git a/src/form/viewstate.php b/src/Form/ViewState.php similarity index 100% rename from src/form/viewstate.php rename to src/Form/ViewState.php diff --git a/src/formats/dot.php b/src/Formats/Dot.php similarity index 100% rename from src/formats/dot.php rename to src/Formats/Dot.php diff --git a/src/formats/helix.php b/src/Formats/Helix.php similarity index 100% rename from src/formats/helix.php rename to src/Formats/Helix.php diff --git a/src/geometry/point.php b/src/Geometry/Point.php similarity index 100% rename from src/geometry/point.php rename to src/Geometry/Point.php diff --git a/src/geometry/rectangle.php b/src/Geometry/Rectangle.php similarity index 100% rename from src/geometry/rectangle.php rename to src/Geometry/Rectangle.php diff --git a/src/httprequest.php b/src/HttpRequest.php similarity index 100% rename from src/httprequest.php rename to src/HttpRequest.php diff --git a/src/layout/manager.php b/src/Layout/Manager.php similarity index 100% rename from src/layout/manager.php rename to src/Layout/Manager.php diff --git a/src/layout/none.php b/src/Layout/None.php similarity index 100% rename from src/layout/none.php rename to src/Layout/None.php diff --git a/src/mail.php b/src/Mail.php similarity index 100% rename from src/mail.php rename to src/Mail.php diff --git a/src/mapper/factory.php b/src/Mapper/Factory.php similarity index 100% rename from src/mapper/factory.php rename to src/Mapper/Factory.php diff --git a/src/mapper/mapper.php b/src/Mapper/Mapper.php similarity index 100% rename from src/mapper/mapper.php rename to src/Mapper/Mapper.php diff --git a/src/mapper/pathmapper.php b/src/Mapper/PathMapper.php similarity index 100% rename from src/mapper/pathmapper.php rename to src/Mapper/PathMapper.php diff --git a/src/markup/simplebbcode.php b/src/Markup/SimpleBBCode.php similarity index 100% rename from src/markup/simplebbcode.php rename to src/Markup/SimpleBBCode.php diff --git a/src/numbers.php b/src/Numbers.php similarity index 100% rename from src/numbers.php rename to src/Numbers.php diff --git a/src/path.php b/src/Path.php similarity index 100% rename from src/path.php rename to src/Path.php diff --git a/src/primitive.php b/src/Primitive.php similarity index 100% rename from src/primitive.php rename to src/Primitive.php diff --git a/src/query/meta.php b/src/Query/meta.php similarity index 100% rename from src/query/meta.php rename to src/Query/meta.php diff --git a/src/query/query.php b/src/Query/query.php similarity index 100% rename from src/query/query.php rename to src/Query/query.php diff --git a/src/query/table.php b/src/Query/table.php similarity index 100% rename from src/query/table.php rename to src/Query/table.php diff --git a/src/registry.php b/src/Registry.php similarity index 100% rename from src/registry.php rename to src/Registry.php diff --git a/src/search/htmlhelper.php b/src/Search/htmlhelper.php similarity index 100% rename from src/search/htmlhelper.php rename to src/Search/htmlhelper.php diff --git a/src/search/index.php b/src/Search/index.php similarity index 100% rename from src/search/index.php rename to src/Search/index.php diff --git a/src/search/lexer.php b/src/Search/lexer.php similarity index 100% rename from src/search/lexer.php rename to src/Search/lexer.php diff --git a/src/search/search.php b/src/Search/search.php similarity index 100% rename from src/search/search.php rename to src/Search/search.php diff --git a/src/search/searcher.php b/src/Search/searcher.php similarity index 100% rename from src/search/searcher.php rename to src/Search/searcher.php diff --git a/src/search/stemmer.php b/src/Search/stemmer.php similarity index 100% rename from src/search/stemmer.php rename to src/Search/stemmer.php diff --git a/src/session.php b/src/Session.php similarity index 100% rename from src/session.php rename to src/Session.php diff --git a/src/settings.php b/src/Settings.php similarity index 100% rename from src/settings.php rename to src/Settings.php diff --git a/src/setup.php b/src/Setup.php similarity index 100% rename from src/setup.php rename to src/Setup.php diff --git a/src/shortcut.php b/src/Shortcut.php similarity index 100% rename from src/shortcut.php rename to src/Shortcut.php diff --git a/src/sort.php b/src/Sort.php similarity index 100% rename from src/sort.php rename to src/Sort.php diff --git a/src/spell.php b/src/Spell.php similarity index 100% rename from src/spell.php rename to src/Spell.php diff --git a/src/tools/drawing.php b/src/Tools/Drawing.php similarity index 100% rename from src/tools/drawing.php rename to src/Tools/Drawing.php diff --git a/src/tools/exceltable.php b/src/Tools/ExcelTable.php similarity index 100% rename from src/tools/exceltable.php rename to src/Tools/ExcelTable.php diff --git a/src/tools/image.php b/src/Tools/Image.php similarity index 100% rename from src/tools/image.php rename to src/Tools/Image.php diff --git a/src/tools/password.php b/src/Tools/Password.php similarity index 100% rename from src/tools/password.php rename to src/Tools/Password.php diff --git a/src/tools/string.php b/src/Tools/String.php similarity index 100% rename from src/tools/string.php rename to src/Tools/String.php diff --git a/src/tools/tableview.php b/src/Tools/TableView.php similarity index 100% rename from src/tools/tableview.php rename to src/Tools/TableView.php diff --git a/src/tools/templateimage.php b/src/Tools/TemplateImage.php similarity index 100% rename from src/tools/templateimage.php rename to src/Tools/TemplateImage.php diff --git a/src/tools/translit.php b/src/Tools/Translit.php similarity index 100% rename from src/tools/translit.php rename to src/Tools/Translit.php diff --git a/src/tree/dbtree.php b/src/Tree/DBtree.php similarity index 100% rename from src/tree/dbtree.php rename to src/Tree/DBtree.php diff --git a/src/tree/database.php b/src/Tree/Database.php similarity index 100% rename from src/tree/database.php rename to src/Tree/Database.php diff --git a/src/tree/sort.php b/src/Tree/Sort.php similarity index 100% rename from src/tree/sort.php rename to src/Tree/Sort.php diff --git a/src/validator/rule/abstract.php b/src/Validator/Rule/Abstract.php similarity index 95% rename from src/validator/rule/abstract.php rename to src/Validator/Rule/Abstract.php index 06189ec..cc5548f 100644 --- a/src/validator/rule/abstract.php +++ b/src/Validator/Rule/Abstract.php @@ -1,6 +1,6 @@ 'Rule_Date', - 'email' => 'Rule_Email', - 'emaillist'=> 'Rule_EmailList', - 'match' => 'Rule_Match', - 'time' => 'Rule_Time', - 'alpha' => 'Rule_Alpha', - 'require' => 'Rule_Notnull', - 'numeric' => 'Rule_Numeric', - 'unique' => 'Rule_Unique', - 'count' => 'Rule_Count', - 'isfile' => 'Rule_IsFile', - 'code' => 'Rule_Code' + 'date' => 'Validator_Rule_Date', + 'email' => 'Validator_Rule_Email', + 'emaillist'=> 'Validator_Rule_EmailList', + 'match' => 'Validator_Rule_Match', + 'time' => 'Validator_Rule_Time', + 'alpha' => 'Validator_Rule_Alpha', + 'require' => 'Validator_Rule_Notnull', + 'numeric' => 'Validator_Rule_Numeric', + 'unique' => 'Validator_Rule_Unique', + 'count' => 'Validator_Rule_Count', + 'isfile' => 'Validator_Rule_IsFile', + 'code' => 'Validator_Rule_Code' ); // Разбор правила проверки diff --git a/src/view/composite.php b/src/View/Composite.php similarity index 100% rename from src/view/composite.php rename to src/View/Composite.php diff --git a/src/view/top.php b/src/View/Top.php similarity index 100% rename from src/view/top.php rename to src/View/Top.php diff --git a/src/view/view.php b/src/View/View.php similarity index 100% rename from src/view/view.php rename to src/View/View.php diff --git a/src/zipfile.php b/src/ZipFile.php similarity index 100% rename from src/zipfile.php rename to src/ZipFile.php diff --git a/src/validator/rule/all.php b/src/validator/rule/all.php deleted file mode 100644 index 47006d7..0000000 --- a/src/validator/rule/all.php +++ /dev/null @@ -1,2 +0,0 @@ -