├── .gitignore ├── Config ├── Migration │ ├── 001_initial_migration.php │ └── map.php └── Schema │ ├── rest_logs.sql │ └── schema.php ├── Controller └── Component │ └── RestComponent.php ├── Lib └── BluntXml.php ├── Model ├── RestAppModel.php └── RestLog.php ├── README.md ├── Test └── Case │ ├── Component │ └── RestComponentTest.php │ └── Helper │ └── RestXmlHelperTest.php └── View ├── CsvEncodeView.php ├── JsonEncodeView.php └── XmlEncodeView.php /.gitignore: -------------------------------------------------------------------------------- 1 | .gitup.dat 2 | *.swp 3 | -------------------------------------------------------------------------------- /Config/Migration/001_initial_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Config/Migration/001_initial_migration.php -------------------------------------------------------------------------------- /Config/Migration/map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Config/Migration/map.php -------------------------------------------------------------------------------- /Config/Schema/rest_logs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Config/Schema/rest_logs.sql -------------------------------------------------------------------------------- /Config/Schema/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Config/Schema/schema.php -------------------------------------------------------------------------------- /Controller/Component/RestComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Controller/Component/RestComponent.php -------------------------------------------------------------------------------- /Lib/BluntXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Lib/BluntXml.php -------------------------------------------------------------------------------- /Model/RestAppModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Model/RestAppModel.php -------------------------------------------------------------------------------- /Model/RestLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Model/RestLog.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Test/Case/Component/RestComponentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Test/Case/Component/RestComponentTest.php -------------------------------------------------------------------------------- /Test/Case/Helper/RestXmlHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/Test/Case/Helper/RestXmlHelperTest.php -------------------------------------------------------------------------------- /View/CsvEncodeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/View/CsvEncodeView.php -------------------------------------------------------------------------------- /View/JsonEncodeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/View/JsonEncodeView.php -------------------------------------------------------------------------------- /View/XmlEncodeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvz/cakephp-rest-plugin/HEAD/View/XmlEncodeView.php --------------------------------------------------------------------------------