├── .gitignore ├── .htaccess ├── Documentacao ├── DER.mwb ├── logomarca.svg └── project-manager.sql ├── README.md ├── app ├── .htaccess ├── Config │ ├── Schema │ │ ├── db_acl.php │ │ ├── db_acl.sql │ │ ├── i18n.php │ │ ├── i18n.sql │ │ ├── schema.php │ │ ├── sessions.php │ │ └── sessions.sql │ ├── acl.ini.php │ ├── acl.php │ ├── bootstrap.php │ ├── core.php │ ├── database.php │ ├── email.php.default │ └── routes.php ├── Console │ ├── Command │ │ ├── AppShell.php │ │ └── Task │ │ │ └── empty │ ├── Templates │ │ ├── Cakestrap │ │ │ ├── actions │ │ │ │ └── controller_actions.ctp │ │ │ └── views │ │ │ │ ├── form.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ └── empty │ ├── cake │ ├── cake.bat │ └── cake.php ├── Controller │ ├── AppController.php │ ├── BugmessagesController.php │ ├── BugsController.php │ ├── CalledmessagesController.php │ ├── CalledsController.php │ ├── CategoriesController.php │ ├── ClientsController.php │ ├── ClientsUsersController.php │ ├── Component │ │ └── empty │ ├── DashboardController.php │ ├── FramesController.php │ ├── GroupsController.php │ ├── PagesController.php │ ├── ProjectsController.php │ ├── TaskmessagesController.php │ ├── TasksController.php │ └── UsersController.php ├── Lib │ └── empty ├── Locale │ └── eng │ │ └── LC_MESSAGES │ │ └── empty ├── Model │ ├── AppModel.php │ ├── Behavior │ │ └── empty │ ├── Bug.php │ ├── Bugmessage.php │ ├── Called.php │ ├── Calledmessage.php │ ├── Category.php │ ├── Client.php │ ├── ClientsUser.php │ ├── Datasource │ │ └── empty │ ├── Group.php │ ├── Project.php │ ├── Task.php │ ├── Taskmessage.php │ └── User.php ├── Plugin │ └── empty ├── Test │ ├── Case │ │ ├── Controller │ │ │ ├── BugmessagesControllerTest.php │ │ │ ├── BugsControllerTest.php │ │ │ ├── CalledmessagesControllerTest.php │ │ │ ├── CalledsControllerTest.php │ │ │ ├── CategoriesControllerTest.php │ │ │ ├── ClientsControllerTest.php │ │ │ ├── ClientsUsersControllerTest.php │ │ │ ├── Component │ │ │ │ └── empty │ │ │ ├── GroupsControllerTest.php │ │ │ ├── ProjectsControllerTest.php │ │ │ ├── TaskmessagesControllerTest.php │ │ │ ├── TasksControllerTest.php │ │ │ └── UsersControllerTest.php │ │ ├── Model │ │ │ ├── Behavior │ │ │ │ └── empty │ │ │ ├── BugTest.php │ │ │ ├── BugmessageTest.php │ │ │ ├── CalledTest.php │ │ │ ├── CalledmessageTest.php │ │ │ ├── CategoryTest.php │ │ │ ├── ClientTest.php │ │ │ ├── ClientsUserTest.php │ │ │ ├── GroupTest.php │ │ │ ├── ProjectTest.php │ │ │ ├── TaskTest.php │ │ │ ├── TaskmessageTest.php │ │ │ └── UserTest.php │ │ └── View │ │ │ └── Helper │ │ │ └── empty │ └── Fixture │ │ ├── BugFixture.php │ │ ├── BugmessageFixture.php │ │ ├── CalledFixture.php │ │ ├── CalledmessageFixture.php │ │ ├── CategoryFixture.php │ │ ├── ClientFixture.php │ │ ├── ClientsUserFixture.php │ │ ├── GroupFixture.php │ │ ├── ProjectFixture.php │ │ ├── TaskFixture.php │ │ ├── TaskmessageFixture.php │ │ ├── UserFixture.php │ │ └── empty ├── Vendor │ └── empty ├── View │ ├── Bugmessages │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Bugs │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Calledmessages │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Calleds │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Categories │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Clients │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── ClientsUsers │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Dashboard │ │ └── index.ctp │ ├── Elements │ │ ├── botao_novo_registro_index.ctp │ │ ├── breadcrumbs.ctp │ │ └── empty │ ├── Emails │ │ ├── html │ │ │ └── default.ctp │ │ └── text │ │ │ └── default.ctp │ ├── Errors │ │ ├── error400.ctp │ │ └── error500.ctp │ ├── Frames │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ ├── view_bugs.ctp │ │ └── view_tasks.ctp │ ├── Groups │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Helper │ │ ├── AppHelper.php │ │ └── MysqlEnumFormHelper.php │ ├── Layouts │ │ ├── Emails │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── ajax.ctp │ │ ├── default.ctp │ │ ├── error.ctp │ │ ├── flash.ctp │ │ ├── js │ │ │ └── default.ctp │ │ ├── login.ctp │ │ ├── rss │ │ │ └── default.ctp │ │ └── xml │ │ │ └── default.ctp │ ├── Pages │ │ └── home.ctp │ ├── Projects │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Scaffolds │ │ └── empty │ ├── Taskmessages │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Tasks │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Themed │ │ └── Cakestrap │ │ │ ├── Elements │ │ │ ├── flash │ │ │ │ ├── default.ctp │ │ │ │ ├── error.ctp │ │ │ │ ├── info.ctp │ │ │ │ ├── success.ctp │ │ │ │ └── warning.ctp │ │ │ └── menu │ │ │ │ └── top_menu.ctp │ │ │ ├── Layouts │ │ │ ├── default.ctp │ │ │ └── login.ctp │ │ │ └── webroot │ │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── main.css │ │ │ └── style.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── js │ │ │ └── libs │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ └── jquery-1.10.2.min.map │ │ │ └── sass │ │ │ ├── bootstrap.scss │ │ │ ├── bootstrap │ │ │ ├── _alerts.scss │ │ │ ├── _badges.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _breadcrumbs.scss │ │ │ ├── _button-groups.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _component-animations.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _forms.scss │ │ │ ├── _glyphicons.scss │ │ │ ├── _grid.scss │ │ │ ├── _input-groups.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _labels.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modals.scss │ │ │ ├── _navbar.scss │ │ │ ├── _navs.scss │ │ │ ├── _normalize.scss │ │ │ ├── _pager.scss │ │ │ ├── _pagination.scss │ │ │ ├── _panels.scss │ │ │ ├── _popovers.scss │ │ │ ├── _print.scss │ │ │ ├── _progress-bars.scss │ │ │ ├── _responsive-utilities.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme.scss │ │ │ ├── _thumbnails.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ └── _wells.scss │ │ │ ├── fontawesome │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _font-awesome.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ └── _variables.scss │ │ │ └── main.scss │ └── Users │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ ├── login.ctp │ │ └── view.ctp ├── index.php └── webroot │ ├── .htaccess │ ├── css │ └── cake.generic.css │ ├── error_log │ ├── favicon.ico │ ├── files │ └── empty │ ├── img │ ├── cake.icon.png │ ├── cake.power.gif │ ├── logomarca.png │ ├── logomarca_30px.png │ ├── logomarca_large.png │ ├── test-error-icon.png │ ├── test-fail-icon.png │ ├── test-pass-icon.png │ └── test-skip-icon.png │ ├── index.php │ ├── js │ └── empty │ ├── manifest.webapp │ └── test.php ├── index.php └── lib └── Cake ├── Cache ├── Cache.php ├── CacheEngine.php └── Engine │ ├── ApcEngine.php │ ├── FileEngine.php │ ├── MemcacheEngine.php │ ├── RedisEngine.php │ ├── WincacheEngine.php │ └── XcacheEngine.php ├── Config ├── cacert.pem ├── config.php ├── routes.php └── unicode │ └── casefolding │ ├── 0080_00ff.php │ ├── 0100_017f.php │ ├── 0180_024F.php │ ├── 0250_02af.php │ ├── 0370_03ff.php │ ├── 0400_04ff.php │ ├── 0500_052f.php │ ├── 0530_058f.php │ ├── 1e00_1eff.php │ ├── 1f00_1fff.php │ ├── 2100_214f.php │ ├── 2150_218f.php │ ├── 2460_24ff.php │ ├── 2c00_2c5f.php │ ├── 2c60_2c7f.php │ ├── 2c80_2cff.php │ └── ff00_ffef.php ├── Configure ├── ConfigReaderInterface.php ├── IniReader.php └── PhpReader.php ├── Console ├── Command │ ├── AclShell.php │ ├── ApiShell.php │ ├── AppShell.php │ ├── BakeShell.php │ ├── CommandListShell.php │ ├── ConsoleShell.php │ ├── I18nShell.php │ ├── SchemaShell.php │ ├── ServerShell.php │ ├── Task │ │ ├── BakeTask.php │ │ ├── ControllerTask.php │ │ ├── DbConfigTask.php │ │ ├── ExtractTask.php │ │ ├── FixtureTask.php │ │ ├── ModelTask.php │ │ ├── PluginTask.php │ │ ├── ProjectTask.php │ │ ├── TemplateTask.php │ │ ├── TestTask.php │ │ └── ViewTask.php │ ├── TestShell.php │ ├── TestsuiteShell.php │ └── UpgradeShell.php ├── ConsoleErrorHandler.php ├── ConsoleInput.php ├── ConsoleInputArgument.php ├── ConsoleInputOption.php ├── ConsoleInputSubcommand.php ├── ConsoleOptionParser.php ├── ConsoleOutput.php ├── HelpFormatter.php ├── Shell.php ├── ShellDispatcher.php ├── TaskCollection.php ├── Templates │ ├── default │ │ ├── actions │ │ │ └── controller_actions.ctp │ │ ├── classes │ │ │ ├── controller.ctp │ │ │ ├── fixture.ctp │ │ │ ├── model.ctp │ │ │ └── test.ctp │ │ └── views │ │ │ ├── form.ctp │ │ │ ├── index.ctp │ │ │ └── view.ctp │ └── skel │ │ ├── .htaccess │ │ ├── Config │ │ ├── Schema │ │ │ ├── db_acl.php │ │ │ ├── db_acl.sql │ │ │ ├── i18n.php │ │ │ ├── i18n.sql │ │ │ ├── sessions.php │ │ │ └── sessions.sql │ │ ├── acl.ini.php │ │ ├── acl.php │ │ ├── bootstrap.php │ │ ├── core.php │ │ ├── database.php.default │ │ ├── email.php.default │ │ └── routes.php │ │ ├── Console │ │ ├── Command │ │ │ ├── AppShell.php │ │ │ └── Task │ │ │ │ └── empty │ │ ├── Templates │ │ │ └── empty │ │ ├── cake │ │ ├── cake.bat │ │ └── cake.php │ │ ├── Controller │ │ ├── AppController.php │ │ ├── Component │ │ │ └── empty │ │ └── PagesController.php │ │ ├── Lib │ │ └── empty │ │ ├── Locale │ │ └── eng │ │ │ └── LC_MESSAGES │ │ │ └── empty │ │ ├── Model │ │ ├── AppModel.php │ │ ├── Behavior │ │ │ └── empty │ │ └── Datasource │ │ │ └── empty │ │ ├── Plugin │ │ └── empty │ │ ├── Test │ │ ├── Case │ │ │ ├── Controller │ │ │ │ └── Component │ │ │ │ │ └── empty │ │ │ ├── Model │ │ │ │ └── Behavior │ │ │ │ │ └── empty │ │ │ └── View │ │ │ │ └── Helper │ │ │ │ └── empty │ │ └── Fixture │ │ │ └── empty │ │ ├── Vendor │ │ └── empty │ │ ├── View │ │ ├── Elements │ │ │ └── empty │ │ ├── Emails │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── Errors │ │ │ ├── error400.ctp │ │ │ └── error500.ctp │ │ ├── Helper │ │ │ └── AppHelper.php │ │ ├── Layouts │ │ │ ├── Emails │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ ├── ajax.ctp │ │ │ ├── default.ctp │ │ │ ├── error.ctp │ │ │ ├── flash.ctp │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ └── xml │ │ │ │ └── default.ctp │ │ ├── Pages │ │ │ └── home.ctp │ │ └── Scaffolds │ │ │ └── empty │ │ ├── index.php │ │ └── webroot │ │ ├── .htaccess │ │ ├── css │ │ └── cake.generic.css │ │ ├── favicon.ico │ │ ├── files │ │ └── empty │ │ ├── img │ │ ├── cake.icon.png │ │ ├── cake.power.gif │ │ ├── test-error-icon.png │ │ ├── test-fail-icon.png │ │ ├── test-pass-icon.png │ │ └── test-skip-icon.png │ │ ├── index.php │ │ ├── js │ │ └── empty │ │ └── test.php ├── cake ├── cake.bat └── cake.php ├── Controller ├── CakeErrorController.php ├── Component.php ├── Component │ ├── Acl │ │ ├── AclInterface.php │ │ ├── DbAcl.php │ │ ├── IniAcl.php │ │ └── PhpAcl.php │ ├── AclComponent.php │ ├── Auth │ │ ├── AbstractPasswordHasher.php │ │ ├── ActionsAuthorize.php │ │ ├── BaseAuthenticate.php │ │ ├── BaseAuthorize.php │ │ ├── BasicAuthenticate.php │ │ ├── BlowfishAuthenticate.php │ │ ├── BlowfishPasswordHasher.php │ │ ├── ControllerAuthorize.php │ │ ├── CrudAuthorize.php │ │ ├── DigestAuthenticate.php │ │ ├── FormAuthenticate.php │ │ └── SimplePasswordHasher.php │ ├── AuthComponent.php │ ├── CookieComponent.php │ ├── EmailComponent.php │ ├── PaginatorComponent.php │ ├── RequestHandlerComponent.php │ ├── SecurityComponent.php │ └── SessionComponent.php ├── ComponentCollection.php ├── Controller.php └── Scaffold.php ├── Core ├── App.php ├── CakePlugin.php ├── Configure.php └── Object.php ├── Error ├── ErrorHandler.php ├── ExceptionRenderer.php └── exceptions.php ├── Event ├── CakeEvent.php ├── CakeEventListener.php └── CakeEventManager.php ├── I18n ├── I18n.php ├── L10n.php └── Multibyte.php ├── LICENSE.txt ├── Log ├── CakeLog.php ├── CakeLogInterface.php ├── Engine │ ├── BaseLog.php │ ├── ConsoleLog.php │ ├── FileLog.php │ └── SyslogLog.php └── LogEngineCollection.php ├── Model ├── AclNode.php ├── Aco.php ├── AcoAction.php ├── Aro.php ├── Behavior │ ├── AclBehavior.php │ ├── ContainableBehavior.php │ ├── TranslateBehavior.php │ └── TreeBehavior.php ├── BehaviorCollection.php ├── CakeSchema.php ├── ConnectionManager.php ├── Datasource │ ├── CakeSession.php │ ├── DataSource.php │ ├── Database │ │ ├── Mysql.php │ │ ├── Postgres.php │ │ ├── Sqlite.php │ │ └── Sqlserver.php │ ├── DboSource.php │ └── Session │ │ ├── CacheSession.php │ │ ├── CakeSessionHandlerInterface.php │ │ └── DatabaseSession.php ├── I18nModel.php ├── Model.php ├── ModelBehavior.php ├── ModelValidator.php ├── Permission.php └── Validator │ ├── CakeValidationRule.php │ └── CakeValidationSet.php ├── Network ├── CakeRequest.php ├── CakeResponse.php ├── CakeSocket.php ├── Email │ ├── AbstractTransport.php │ ├── CakeEmail.php │ ├── DebugTransport.php │ ├── MailTransport.php │ └── SmtpTransport.php └── Http │ ├── BasicAuthentication.php │ ├── DigestAuthentication.php │ ├── HttpResponse.php │ ├── HttpSocket.php │ └── HttpSocketResponse.php ├── Routing ├── Dispatcher.php ├── DispatcherFilter.php ├── Filter │ ├── AssetDispatcher.php │ └── CacheDispatcher.php ├── Route │ ├── CakeRoute.php │ ├── PluginShortRoute.php │ └── RedirectRoute.php └── Router.php ├── Test ├── Case │ ├── AllBehaviorsTest.php │ ├── AllCacheTest.php │ ├── AllComponentsTest.php │ ├── AllConfigureTest.php │ ├── AllConsoleTest.php │ ├── AllControllerTest.php │ ├── AllCoreTest.php │ ├── AllDatabaseTest.php │ ├── AllDbRelatedTest.php │ ├── AllErrorTest.php │ ├── AllEventTest.php │ ├── AllHelpersTest.php │ ├── AllI18nTest.php │ ├── AllLogTest.php │ ├── AllNetworkTest.php │ ├── AllRoutingTest.php │ ├── AllTestSuiteTest.php │ ├── AllTestsTest.php │ ├── AllUtilityTest.php │ ├── AllViewTest.php │ ├── BasicsTest.php │ ├── Cache │ │ ├── CacheTest.php │ │ └── Engine │ │ │ ├── ApcEngineTest.php │ │ │ ├── FileEngineTest.php │ │ │ ├── MemcacheEngineTest.php │ │ │ ├── RedisEngineTest.php │ │ │ ├── WincacheEngineTest.php │ │ │ └── XcacheEngineTest.php │ ├── Configure │ │ ├── IniReaderTest.php │ │ └── PhpReaderTest.php │ ├── Console │ │ ├── AllConsoleLibsTest.php │ │ ├── AllConsoleTest.php │ │ ├── AllShellsTest.php │ │ ├── AllTasksTest.php │ │ ├── Command │ │ │ ├── AclShellTest.php │ │ │ ├── ApiShellTest.php │ │ │ ├── BakeShellTest.php │ │ │ ├── CommandListShellTest.php │ │ │ ├── SchemaShellTest.php │ │ │ ├── Task │ │ │ │ ├── ControllerTaskTest.php │ │ │ │ ├── DbConfigTaskTest.php │ │ │ │ ├── ExtractTaskTest.php │ │ │ │ ├── FixtureTaskTest.php │ │ │ │ ├── ModelTaskTest.php │ │ │ │ ├── PluginTaskTest.php │ │ │ │ ├── ProjectTaskTest.php │ │ │ │ ├── TemplateTaskTest.php │ │ │ │ ├── TestTaskTest.php │ │ │ │ └── ViewTaskTest.php │ │ │ └── TestShellTest.php │ │ ├── ConsoleErrorHandlerTest.php │ │ ├── ConsoleOptionParserTest.php │ │ ├── ConsoleOutputTest.php │ │ ├── HelpFormatterTest.php │ │ ├── ShellDispatcherTest.php │ │ ├── ShellTest.php │ │ └── TaskCollectionTest.php │ ├── Controller │ │ ├── Component │ │ │ ├── Acl │ │ │ │ ├── DbAclTest.php │ │ │ │ ├── IniAclTest.php │ │ │ │ └── PhpAclTest.php │ │ │ ├── AclComponentTest.php │ │ │ ├── Auth │ │ │ │ ├── ActionsAuthorizeTest.php │ │ │ │ ├── BasicAuthenticateTest.php │ │ │ │ ├── BlowfishAuthenticateTest.php │ │ │ │ ├── ControllerAuthorizeTest.php │ │ │ │ ├── CrudAuthorizeTest.php │ │ │ │ ├── DigestAuthenticateTest.php │ │ │ │ └── FormAuthenticateTest.php │ │ │ ├── AuthComponentTest.php │ │ │ ├── CookieComponentTest.php │ │ │ ├── EmailComponentTest.php │ │ │ ├── PaginatorComponentTest.php │ │ │ ├── RequestHandlerComponentTest.php │ │ │ ├── SecurityComponentTest.php │ │ │ └── SessionComponentTest.php │ │ ├── ComponentCollectionTest.php │ │ ├── ComponentTest.php │ │ ├── ControllerMergeVarsTest.php │ │ ├── ControllerTest.php │ │ ├── PagesControllerTest.php │ │ └── ScaffoldTest.php │ ├── Core │ │ ├── AppTest.php │ │ ├── CakePluginTest.php │ │ ├── ConfigureTest.php │ │ └── ObjectTest.php │ ├── Error │ │ ├── ErrorHandlerTest.php │ │ └── ExceptionRendererTest.php │ ├── Event │ │ ├── CakeEventManagerTest.php │ │ └── CakeEventTest.php │ ├── I18n │ │ ├── I18nTest.php │ │ ├── L10nTest.php │ │ └── MultibyteTest.php │ ├── Log │ │ ├── CakeLogTest.php │ │ ├── Engine │ │ │ ├── ConsoleLogTest.php │ │ │ ├── FileLogTest.php │ │ │ └── SyslogLogTest.php │ │ └── LogEngineCollectionTest.php │ ├── Model │ │ ├── AclNodeTest.php │ │ ├── Behavior │ │ │ ├── AclBehaviorTest.php │ │ │ ├── ContainableBehaviorTest.php │ │ │ ├── TranslateBehaviorTest.php │ │ │ ├── TreeBehaviorAfterTest.php │ │ │ ├── TreeBehaviorNumberTest.php │ │ │ ├── TreeBehaviorScopedTest.php │ │ │ ├── TreeBehaviorTest.php │ │ │ └── TreeBehaviorUuidTest.php │ │ ├── BehaviorCollectionTest.php │ │ ├── CakeSchemaTest.php │ │ ├── ConnectionManagerTest.php │ │ ├── Datasource │ │ │ ├── CakeSessionTest.php │ │ │ ├── DataSourceTest.php │ │ │ ├── Database │ │ │ │ ├── MysqlTest.php │ │ │ │ ├── PostgresTest.php │ │ │ │ ├── SqliteTest.php │ │ │ │ └── SqlserverTest.php │ │ │ ├── DboSourceTest.php │ │ │ └── Session │ │ │ │ ├── CacheSessionTest.php │ │ │ │ └── DatabaseSessionTest.php │ │ ├── ModelCrossSchemaHabtmTest.php │ │ ├── ModelDeleteTest.php │ │ ├── ModelIntegrationTest.php │ │ ├── ModelReadTest.php │ │ ├── ModelTest.php │ │ ├── ModelTestBase.php │ │ ├── ModelValidationTest.php │ │ ├── ModelWriteTest.php │ │ ├── Validator │ │ │ ├── CakeValidationRuleTest.php │ │ │ └── CakeValidationSetTest.php │ │ └── models.php │ ├── Network │ │ ├── CakeRequestTest.php │ │ ├── CakeResponseTest.php │ │ ├── CakeSocketTest.php │ │ ├── Email │ │ │ ├── CakeEmailTest.php │ │ │ ├── DebugTransportTest.php │ │ │ ├── MailTransportTest.php │ │ │ └── SmtpTransportTest.php │ │ └── Http │ │ │ ├── BasicAuthenticationTest.php │ │ │ ├── DigestAuthenticationTest.php │ │ │ ├── HttpResponseTest.php │ │ │ └── HttpSocketTest.php │ ├── Routing │ │ ├── DispatcherTest.php │ │ ├── Filter │ │ │ └── AssetDispatcherTest.php │ │ ├── Route │ │ │ ├── CakeRouteTest.php │ │ │ ├── PluginShortRouteTest.php │ │ │ └── RedirectRouteTest.php │ │ └── RouterTest.php │ ├── TestSuite │ │ ├── CakeTestCaseTest.php │ │ ├── CakeTestFixtureTest.php │ │ ├── CakeTestSuiteTest.php │ │ ├── ControllerTestCaseTest.php │ │ └── HtmlCoverageReportTest.php │ ├── Utility │ │ ├── CakeNumberTest.php │ │ ├── CakeTimeTest.php │ │ ├── ClassRegistryTest.php │ │ ├── DebuggerTest.php │ │ ├── FileTest.php │ │ ├── FolderTest.php │ │ ├── HashTest.php │ │ ├── InflectorTest.php │ │ ├── ObjectCollectionTest.php │ │ ├── SanitizeTest.php │ │ ├── SecurityTest.php │ │ ├── SetTest.php │ │ ├── StringTest.php │ │ ├── ValidationTest.php │ │ └── XmlTest.php │ └── View │ │ ├── Helper │ │ ├── CacheHelperTest.php │ │ ├── FormHelperTest.php │ │ ├── HtmlHelperTest.php │ │ ├── JqueryEngineHelperTest.php │ │ ├── JsHelperTest.php │ │ ├── MootoolsEngineHelperTest.php │ │ ├── NumberHelperTest.php │ │ ├── PaginatorHelperTest.php │ │ ├── PrototypeEngineHelperTest.php │ │ ├── RssHelperTest.php │ │ ├── SessionHelperTest.php │ │ ├── TextHelperTest.php │ │ └── TimeHelperTest.php │ │ ├── HelperCollectionTest.php │ │ ├── HelperTest.php │ │ ├── JsonViewTest.php │ │ ├── MediaViewTest.php │ │ ├── ScaffoldViewTest.php │ │ ├── ThemeViewTest.php │ │ ├── ViewTest.php │ │ └── XmlViewTest.php ├── Fixture │ ├── AccountFixture.php │ ├── AcoActionFixture.php │ ├── AcoFixture.php │ ├── AcoTwoFixture.php │ ├── AdFixture.php │ ├── AdvertisementFixture.php │ ├── AfterTreeFixture.php │ ├── AnotherArticleFixture.php │ ├── AppleFixture.php │ ├── ArmorFixture.php │ ├── ArmorsPlayerFixture.php │ ├── AroFixture.php │ ├── AroTwoFixture.php │ ├── ArosAcoFixture.php │ ├── ArosAcoTwoFixture.php │ ├── ArticleFeaturedFixture.php │ ├── ArticleFeaturedsTagsFixture.php │ ├── ArticleFixture.php │ ├── ArticlesTagFixture.php │ ├── AssertTagsTestCase.php │ ├── AttachmentFixture.php │ ├── AuthUserCustomFieldFixture.php │ ├── AuthUserFixture.php │ ├── AuthorFixture.php │ ├── BakeArticleFixture.php │ ├── BakeArticlesBakeTagFixture.php │ ├── BakeCommentFixture.php │ ├── BakeTagFixture.php │ ├── BasketFixture.php │ ├── BidFixture.php │ ├── BiddingFixture.php │ ├── BiddingMessageFixture.php │ ├── BinaryTestFixture.php │ ├── BookFixture.php │ ├── CacheTestModelFixture.php │ ├── CakeSessionFixture.php │ ├── CallbackFixture.php │ ├── CampaignFixture.php │ ├── CategoryFixture.php │ ├── CategoryThreadFixture.php │ ├── CdFixture.php │ ├── CommentFixture.php │ ├── ContentAccountFixture.php │ ├── ContentFixture.php │ ├── CounterCachePostFixture.php │ ├── CounterCachePostNonstandardPrimaryKeyFixture.php │ ├── CounterCacheUserFixture.php │ ├── CounterCacheUserNonstandardPrimaryKeyFixture.php │ ├── DataTestFixture.php │ ├── DatatypeFixture.php │ ├── DependencyFixture.php │ ├── DeviceFixture.php │ ├── DeviceTypeCategoryFixture.php │ ├── DeviceTypeFixture.php │ ├── DocumentDirectoryFixture.php │ ├── DocumentFixture.php │ ├── DomainFixture.php │ ├── DomainsSiteFixture.php │ ├── ExteriorTypeCategoryFixture.php │ ├── FeatureSetFixture.php │ ├── FeaturedFixture.php │ ├── FilmFileFixture.php │ ├── FixturizedTestCase.php │ ├── FlagTreeFixture.php │ ├── FruitFixture.php │ ├── FruitsUuidTagFixture.php │ ├── GroupUpdateAllFixture.php │ ├── GuildFixture.php │ ├── GuildsPlayerFixture.php │ ├── HomeFixture.php │ ├── ImageFixture.php │ ├── InnoFixture.php │ ├── ItemFixture.php │ ├── ItemsPortfolioFixture.php │ ├── JoinABFixture.php │ ├── JoinACFixture.php │ ├── JoinAFixture.php │ ├── JoinBFixture.php │ ├── JoinCFixture.php │ ├── JoinThingFixture.php │ ├── MessageFixture.php │ ├── MyCategoriesMyProductsFixture.php │ ├── MyCategoriesMyUsersFixture.php │ ├── MyCategoryFixture.php │ ├── MyProductFixture.php │ ├── MyUserFixture.php │ ├── NodeFixture.php │ ├── NumberTreeFixture.php │ ├── NumberTreeTwoFixture.php │ ├── NumericArticleFixture.php │ ├── OverallFavoriteFixture.php │ ├── PersonFixture.php │ ├── PlayerFixture.php │ ├── PortfolioFixture.php │ ├── PostFixture.php │ ├── PostsTagFixture.php │ ├── PrefixTestFixture.php │ ├── PrimaryModelFixture.php │ ├── ProductFixture.php │ ├── ProductUpdateAllFixture.php │ ├── ProjectFixture.php │ ├── SampleFixture.php │ ├── SecondaryModelFixture.php │ ├── SessionFixture.php │ ├── SiteFixture.php │ ├── SomethingElseFixture.php │ ├── SomethingFixture.php │ ├── StoriesTagFixture.php │ ├── StoryFixture.php │ ├── SyfileFixture.php │ ├── TagFixture.php │ ├── TestPluginArticleFixture.php │ ├── TestPluginCommentFixture.php │ ├── ThePaperMonkiesFixture.php │ ├── ThreadFixture.php │ ├── TranslateArticleFixture.php │ ├── TranslateFixture.php │ ├── TranslateTableFixture.php │ ├── TranslateWithPrefixFixture.php │ ├── TranslatedArticleFixture.php │ ├── TranslatedItemFixture.php │ ├── UnconventionalTreeFixture.php │ ├── UnderscoreFieldFixture.php │ ├── UserFixture.php │ ├── UuidFixture.php │ ├── UuidTagFixture.php │ ├── UuidTreeFixture.php │ ├── UuiditemFixture.php │ ├── UuiditemsUuidportfolioFixture.php │ ├── UuiditemsUuidportfolioNumericidFixture.php │ ├── UuidportfolioFixture.php │ ├── rss.xml │ ├── sample.xml │ ├── soap_request.xml │ └── soap_response.xml ├── bake_compare │ └── Controller │ │ ├── ActionsUsingSessions.ctp │ │ ├── ActionsWithNoSessions.ctp │ │ ├── NoActions.ctp │ │ ├── NoHelpersOrComponents.ctp │ │ └── Scaffold.ctp └── test_app │ ├── Config │ ├── acl.ini │ ├── acl.ini.php │ ├── acl.php │ ├── empty.ini │ ├── empty.php │ ├── htmlhelper_minimized.ini │ ├── htmlhelper_tags.php │ ├── nested.ini │ ├── no_ini_extension │ ├── no_php_extension │ ├── no_section.ini │ ├── routes.php │ ├── var_test.php │ └── var_test2.php │ ├── Console │ ├── Command │ │ ├── SampleShell.php │ │ └── Task │ │ │ └── empty │ └── Templates │ │ └── test │ │ ├── classes │ │ └── test_object.ctp │ │ └── views │ │ └── admin_edit.ctp │ ├── Controller │ ├── AppController.php │ ├── Component │ │ └── empty │ ├── PagesController.php │ ├── TestAppsErrorController.php │ ├── TestConfigsController.php │ ├── TestsAppsController.php │ └── TestsAppsPostsController.php │ ├── Error │ └── TestAppsExceptionRenderer.php │ ├── Lib │ ├── Cache │ │ └── Engine │ │ │ └── TestAppCacheEngine.php │ ├── Library.php │ ├── Log │ │ └── Engine │ │ │ └── TestAppLog.php │ └── Utility │ │ └── TestUtilityClass.php │ ├── Locale │ ├── cache_test_po │ │ └── LC_MESSAGES │ │ │ ├── default.po │ │ │ ├── dom1.po │ │ │ └── dom2.po │ ├── eng │ │ └── LC_MESSAGES │ │ │ └── validation_messages.po │ ├── ja_jp │ │ └── LC_TIME │ ├── nld │ │ └── LC_TIME │ ├── po │ │ ├── LC_MESSAGES │ │ │ └── default.po │ │ ├── LC_MONETARY │ │ │ └── default.po │ │ └── LC_TIME │ ├── rule_0_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_0_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_10_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_10_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_11_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_11_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_12_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_12_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_13_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_13_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_14_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_14_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_1_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_1_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_2_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_2_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_3_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_3_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_4_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_4_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_5_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_5_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_6_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_6_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_7_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_7_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_8_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_8_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ ├── rule_9_mo │ │ └── LC_MESSAGES │ │ │ ├── core.mo │ │ │ └── default.mo │ ├── rule_9_po │ │ └── LC_MESSAGES │ │ │ ├── core.po │ │ │ └── default.po │ └── time_test │ │ └── LC_TIME │ ├── Model │ ├── AppModel.php │ ├── Behavior │ │ ├── PersisterOneBehaviorBehavior.php │ │ └── PersisterTwoBehaviorBehavior.php │ ├── Comment.php │ ├── Datasource │ │ ├── Database │ │ │ └── TestLocalDriver.php │ │ ├── Session │ │ │ └── TestAppLibSession.php │ │ ├── Test2OtherSource.php │ │ └── Test2Source.php │ ├── PersisterOne.php │ ├── PersisterTwo.php │ └── Post.php │ ├── Plugin │ ├── PluginJs │ │ ├── Config │ │ │ └── bootstrap.php │ │ └── webroot │ │ │ └── js │ │ │ ├── one │ │ │ └── plugin_one.js │ │ │ └── plugin_js.js │ ├── TestPlugin │ │ ├── Config │ │ │ ├── Schema │ │ │ │ └── schema.php │ │ │ ├── acl.ini.php │ │ │ ├── bootstrap.php │ │ │ ├── custom_config.php │ │ │ ├── load.php │ │ │ ├── more.load.php │ │ │ ├── nested.ini │ │ │ └── routes.php │ │ ├── Console │ │ │ ├── Command │ │ │ │ ├── ExampleShell.php │ │ │ │ └── Task │ │ │ │ │ └── OtherTaskTask.php │ │ │ └── Templates │ │ │ │ └── empty │ │ ├── Controller │ │ │ ├── Component │ │ │ │ ├── OtherComponent.php │ │ │ │ ├── PluginsComponent.php │ │ │ │ ├── TestPluginComponent.php │ │ │ │ └── TestPluginOtherComponent.php │ │ │ ├── TestPluginAppController.php │ │ │ ├── TestPluginController.php │ │ │ └── TestsController.php │ │ ├── Lib │ │ │ ├── Cache │ │ │ │ └── Engine │ │ │ │ │ └── TestPluginCacheEngine.php │ │ │ ├── Custom │ │ │ │ └── Package │ │ │ │ │ └── CustomLibClass.php │ │ │ ├── Error │ │ │ │ └── TestPluginExceptionRenderer.php │ │ │ ├── Log │ │ │ │ └── Engine │ │ │ │ │ └── TestPluginLog.php │ │ │ ├── Routing │ │ │ │ ├── Filter │ │ │ │ │ ├── Test2DispatcherFilter.php │ │ │ │ │ └── TestDispatcherFilter.php │ │ │ │ └── Route │ │ │ │ │ └── TestRoute.php │ │ │ ├── TestPluginLibrary.php │ │ │ └── TestPluginOtherLibrary.php │ │ ├── Locale │ │ │ └── po │ │ │ │ ├── LC_MESSAGES │ │ │ │ └── test_plugin.po │ │ │ │ └── LC_MONETARY │ │ │ │ └── test_plugin.po │ │ ├── Model │ │ │ ├── Behavior │ │ │ │ ├── TestPluginPersisterOneBehavior.php │ │ │ │ └── TestPluginPersisterTwoBehavior.php │ │ │ ├── Datasource │ │ │ │ ├── Database │ │ │ │ │ ├── DboDummy.php │ │ │ │ │ └── TestDriver.php │ │ │ │ ├── Session │ │ │ │ │ └── TestPluginSession.php │ │ │ │ ├── TestOtherSource.php │ │ │ │ └── TestSource.php │ │ │ ├── TestPluginAppModel.php │ │ │ ├── TestPluginAuthUser.php │ │ │ ├── TestPluginAuthors.php │ │ │ ├── TestPluginComment.php │ │ │ └── TestPluginPost.php │ │ ├── Utility │ │ │ └── TestPluginEngine.php │ │ ├── Vendor │ │ │ ├── Example │ │ │ │ └── ExampleExample.php │ │ │ ├── sample │ │ │ │ └── sample_plugin.php │ │ │ └── welcome.php │ │ ├── View │ │ │ ├── Elements │ │ │ │ ├── plugin_element.ctp │ │ │ │ ├── sub_dir │ │ │ │ │ └── sub_element.ctp │ │ │ │ ├── test_plugin_element.ctp │ │ │ │ └── translate.ctp │ │ │ ├── Emails │ │ │ │ └── text │ │ │ │ │ └── test_plugin_tpl.ctp │ │ │ ├── Helper │ │ │ │ ├── OtherHelperHelper.php │ │ │ │ ├── PluggedHelperHelper.php │ │ │ │ └── TestPluginAppHelper.php │ │ │ ├── Layouts │ │ │ │ ├── Emails │ │ │ │ │ └── text │ │ │ │ │ │ └── plug_default.ctp │ │ │ │ └── default.ctp │ │ │ └── Tests │ │ │ │ ├── index.ctp │ │ │ │ └── scaffold.form.ctp │ │ └── webroot │ │ │ ├── css │ │ │ ├── test_plugin_asset.css │ │ │ ├── theme_one.htc │ │ │ └── unknown.extension │ │ │ ├── flash │ │ │ └── plugin_test.swf │ │ │ ├── img │ │ │ └── cake.icon.gif │ │ │ ├── js │ │ │ └── test_plugin │ │ │ │ └── test.js │ │ │ ├── pdfs │ │ │ └── plugin_test.pdf │ │ │ └── root.js │ └── TestPluginTwo │ │ ├── Config │ │ └── bootstrap.php │ │ └── Console │ │ ├── Command │ │ ├── ExampleShell.php │ │ ├── Task │ │ │ └── empty │ │ └── WelcomeShell.php │ │ └── Templates │ │ └── empty │ ├── Utility │ └── TestAppEngine.php │ ├── Vendor │ ├── Test │ │ ├── MyTest.php │ │ └── hello.php │ ├── css │ │ └── test_asset.css │ ├── img │ │ ├── test.jpg │ │ └── test_2.JPG │ ├── sample │ │ └── configure_test_vendor_sample.php │ ├── somename │ │ └── some.name.php │ └── welcome.php │ ├── View │ ├── Elements │ │ ├── extended_element.ctp │ │ ├── extended_missing_element.ctp │ │ ├── html_call.ctp │ │ ├── nocache │ │ │ ├── contains_nocache.ctp │ │ │ ├── plain.ctp │ │ │ ├── sub1.ctp │ │ │ └── sub2.ctp │ │ ├── parent_element.ctp │ │ ├── session_helper.ctp │ │ ├── test_element.ctp │ │ ├── test_element.xml │ │ └── type_check.ctp │ ├── Emails │ │ ├── html │ │ │ ├── custom.ctp │ │ │ ├── default.ctp │ │ │ ├── html.ctp │ │ │ ├── image.ctp │ │ │ ├── japanese.ctp │ │ │ └── nested_element.ctp │ │ └── text │ │ │ ├── custom.ctp │ │ │ ├── custom_helper.ctp │ │ │ ├── default.ctp │ │ │ ├── japanese.ctp │ │ │ └── wide.ctp │ ├── Errors │ │ ├── error400.ctp │ │ └── error500.ctp │ ├── Helper │ │ └── BananaHelper.php │ ├── Layouts │ │ ├── Emails │ │ │ ├── html │ │ │ │ ├── default.ctp │ │ │ │ ├── japanese.ctp │ │ │ │ └── thin.ctp │ │ │ └── text │ │ │ │ ├── default.ctp │ │ │ │ └── japanese.ctp │ │ ├── ajax.ctp │ │ ├── ajax2.ctp │ │ ├── banana.ctp │ │ ├── cache_empty_sections.ctp │ │ ├── cache_layout.ctp │ │ ├── default.ctp │ │ ├── flash.ctp │ │ ├── js │ │ │ └── default.ctp │ │ ├── json │ │ │ └── default.ctp │ │ ├── multi_cache.ctp │ │ ├── rss │ │ │ └── default.ctp │ │ └── xml │ │ │ └── default.ctp │ ├── Pages │ │ ├── extract.ctp │ │ ├── home.ctp │ │ └── page.home.ctp │ ├── Posts │ │ ├── alt_ext.alt │ │ ├── cache_empty_sections.ctp │ │ ├── cache_form.ctp │ │ ├── extend_element.ctp │ │ ├── extend_loop.ctp │ │ ├── extend_loop_inner.ctp │ │ ├── extend_missing_element.ctp │ │ ├── extend_self.ctp │ │ ├── extend_with_element.ctp │ │ ├── helper_overwrite.ctp │ │ ├── index.ctp │ │ ├── json │ │ │ └── index.ctp │ │ ├── multiple_nocache.ctp │ │ ├── nested_extends.ctp │ │ ├── nocache_multiple_element.ctp │ │ ├── open_block.ctp │ │ ├── parent_1.ctp │ │ ├── parent_2.ctp │ │ ├── parent_view.ctp │ │ ├── scaffold.form.ctp │ │ ├── sequencial_nocache.ctp │ │ ├── test_nocache_tags.ctp │ │ └── xml │ │ │ └── index.ctp │ ├── Scaffolds │ │ └── empty │ ├── TestsApps │ │ ├── index.ctp │ │ └── json │ │ │ └── index.ctp │ └── Themed │ │ └── TestTheme │ │ ├── Elements │ │ └── test_element.ctp │ │ ├── Emails │ │ └── text │ │ │ └── themed.ctp │ │ ├── Layouts │ │ └── default.ctp │ │ ├── Plugin │ │ └── TestPlugin │ │ │ ├── Emails │ │ │ └── text │ │ │ │ └── test_plugin_tpl.ctp │ │ │ ├── Layouts │ │ │ └── plugin_default.ctp │ │ │ └── Tests │ │ │ └── index.ctp │ │ ├── Posts │ │ ├── index.ctp │ │ ├── scaffold.index.ctp │ │ └── themed.ctp │ │ └── webroot │ │ ├── css │ │ ├── test_asset.css │ │ └── theme_webroot.css │ │ ├── flash │ │ └── theme_test.swf │ │ ├── img │ │ ├── cake.power.gif │ │ └── test.jpg │ │ ├── js │ │ ├── one │ │ │ └── theme_one.js │ │ └── theme.js │ │ ├── pdfs │ │ └── theme_test.pdf │ │ └── space image.text │ ├── tmp │ └── empty │ └── webroot │ ├── img │ └── cake.power.gif │ └── theme │ └── test_theme │ ├── css │ ├── theme_webroot.css │ └── webroot_test.css │ └── img │ ├── cake.power.gif │ └── test.jpg ├── TestSuite ├── CakeTestCase.php ├── CakeTestLoader.php ├── CakeTestRunner.php ├── CakeTestSuite.php ├── CakeTestSuiteCommand.php ├── CakeTestSuiteDispatcher.php ├── ControllerTestCase.php ├── Coverage │ ├── BaseCoverageReport.php │ ├── HtmlCoverageReport.php │ └── TextCoverageReport.php ├── Fixture │ ├── CakeFixtureManager.php │ ├── CakeTestFixture.php │ └── CakeTestModel.php ├── Reporter │ ├── CakeBaseReporter.php │ ├── CakeHtmlReporter.php │ └── CakeTextReporter.php └── templates │ ├── footer.php │ ├── header.php │ ├── menu.php │ ├── missing_connection.php │ ├── phpunit.php │ └── xdebug.php ├── Utility ├── CakeNumber.php ├── CakeTime.php ├── ClassRegistry.php ├── Debugger.php ├── File.php ├── Folder.php ├── Hash.php ├── Inflector.php ├── ObjectCollection.php ├── Sanitize.php ├── Security.php ├── Set.php ├── String.php ├── Validation.php └── Xml.php ├── VERSION.txt ├── View ├── Elements │ ├── exception_stack_trace.ctp │ └── sql_dump.ctp ├── Errors │ ├── fatal_error.ctp │ ├── missing_action.ctp │ ├── missing_behavior.ctp │ ├── missing_component.ctp │ ├── missing_connection.ctp │ ├── missing_controller.ctp │ ├── missing_database.ctp │ ├── missing_datasource.ctp │ ├── missing_datasource_config.ctp │ ├── missing_helper.ctp │ ├── missing_layout.ctp │ ├── missing_plugin.ctp │ ├── missing_table.ctp │ ├── missing_view.ctp │ ├── pdo_error.ctp │ ├── private_action.ctp │ └── scaffold_error.ctp ├── Helper.php ├── Helper │ ├── CacheHelper.php │ ├── FormHelper.php │ ├── HtmlHelper.php │ ├── JqueryEngineHelper.php │ ├── JsBaseEngineHelper.php │ ├── JsHelper.php │ ├── MootoolsEngineHelper.php │ ├── NumberHelper.php │ ├── PaginatorHelper.php │ ├── PrototypeEngineHelper.php │ ├── RssHelper.php │ ├── SessionHelper.php │ ├── TextHelper.php │ └── TimeHelper.php ├── HelperCollection.php ├── JsonView.php ├── MediaView.php ├── ScaffoldView.php ├── Scaffolds │ ├── form.ctp │ ├── index.ctp │ └── view.ctp ├── ThemeView.php ├── View.php ├── ViewBlock.php └── XmlView.php ├── basics.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /gerenciador-de-projetos/nbproject/private/ -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ app/webroot/ [L] 4 | RewriteRule (.*) app/webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /Documentacao/DER.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/Documentacao/DER.mwb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Project Manager # 2 | 3 | Sistema para gerenciamento de projetos: 4 | 5 | 6 | A sql do banco encontra-se dentro do diretório: documentacao 7 | 8 | **Usuário:** admin@admin.com.br
9 | **Senha:** admin 10 | 11 |
12 | 13 | **Observação:** O projeto ainda está em desenvolvimento, portanto há vários "cruds" prontos e que não estão linkados no menu da administração. 14 | 15 |
16 | 17 | # Recursos existentes 18 | 19 | * Gerenciamento de Clientes 20 | * Gerenciamento de Projetos 21 | * Gerenciamento de Tarefas 22 | * Gerenciamento de Bugs 23 | * Gerenciamento de Usuários 24 | * Gerenciamento de Chamados (incompleto) 25 | * Resumo de tudo que há no sistema na dashboard 26 | * Lista de projetos existentes na dashboard 27 | * Gráfico com andamento da execuções de todas as tarefas na dashboard 28 | * Gráfico com andamento das correções de todos os bugs na dashboard 29 | * Gráfico com todos os projetos mostrando números de tarefas e bugs para cada um 30 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /app/Config/Schema/i18n.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 5 | # Licensed under The MIT License 6 | # For full copyright and license information, please see the LICENSE.txt 7 | # Redistributions of files must retain the above copyright notice. 8 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 9 | 10 | CREATE TABLE i18n ( 11 | id int(10) NOT NULL auto_increment, 12 | locale varchar(6) NOT NULL, 13 | model varchar(255) NOT NULL, 14 | foreign_key int(10) NOT NULL, 15 | field varchar(255) NOT NULL, 16 | content mediumtext, 17 | PRIMARY KEY (id), 18 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field), 19 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key), 20 | # INDEX I18N_LOCALE_MODEL(locale, model), 21 | # INDEX I18N_FIELD(model, foreign_key, field), 22 | # INDEX I18N_ROW(model, foreign_key), 23 | INDEX locale (locale), 24 | INDEX model (model), 25 | INDEX row_id (foreign_key), 26 | INDEX field (field) 27 | ); -------------------------------------------------------------------------------- /app/Config/Schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # For full copyright and license information, please see the LICENSE.txt 9 | # Redistributions of files must retain the above copyright notice. 10 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 11 | 12 | CREATE TABLE cake_sessions ( 13 | id varchar(255) NOT NULL default '', 14 | data text, 15 | expires int(11) default NULL, 16 | PRIMARY KEY (id) 17 | ); -------------------------------------------------------------------------------- /app/Console/Command/AppShell.php: -------------------------------------------------------------------------------- 1 | Bug = ClassRegistry::init('Bug'); 30 | } 31 | 32 | /** 33 | * tearDown method 34 | * 35 | * @return void 36 | */ 37 | public function tearDown() { 38 | unset($this->Bug); 39 | 40 | parent::tearDown(); 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /app/Test/Case/Model/BugmessageTest.php: -------------------------------------------------------------------------------- 1 | Bugmessage = ClassRegistry::init('Bugmessage'); 28 | } 29 | 30 | /** 31 | * tearDown method 32 | * 33 | * @return void 34 | */ 35 | public function tearDown() { 36 | unset($this->Bugmessage); 37 | 38 | parent::tearDown(); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/Test/Case/Model/CalledTest.php: -------------------------------------------------------------------------------- 1 | Called = ClassRegistry::init('Called'); 30 | } 31 | 32 | /** 33 | * tearDown method 34 | * 35 | * @return void 36 | */ 37 | public function tearDown() { 38 | unset($this->Called); 39 | 40 | parent::tearDown(); 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /app/Test/Case/Model/CalledmessageTest.php: -------------------------------------------------------------------------------- 1 | Calledmessage = ClassRegistry::init('Calledmessage'); 29 | } 30 | 31 | /** 32 | * tearDown method 33 | * 34 | * @return void 35 | */ 36 | public function tearDown() { 37 | unset($this->Calledmessage); 38 | 39 | parent::tearDown(); 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /app/Test/Case/Model/CategoryTest.php: -------------------------------------------------------------------------------- 1 | Category = ClassRegistry::init('Category'); 28 | } 29 | 30 | /** 31 | * tearDown method 32 | * 33 | * @return void 34 | */ 35 | public function tearDown() { 36 | unset($this->Category); 37 | 38 | parent::tearDown(); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/Test/Case/Model/ClientTest.php: -------------------------------------------------------------------------------- 1 | Client = ClassRegistry::init('Client'); 30 | } 31 | 32 | /** 33 | * tearDown method 34 | * 35 | * @return void 36 | */ 37 | public function tearDown() { 38 | unset($this->Client); 39 | 40 | parent::tearDown(); 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /app/Test/Case/Model/ClientsUserTest.php: -------------------------------------------------------------------------------- 1 | ClientsUser = ClassRegistry::init('ClientsUser'); 30 | } 31 | 32 | /** 33 | * tearDown method 34 | * 35 | * @return void 36 | */ 37 | public function tearDown() { 38 | unset($this->ClientsUser); 39 | 40 | parent::tearDown(); 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /app/Test/Case/Model/GroupTest.php: -------------------------------------------------------------------------------- 1 | Group = ClassRegistry::init('Group'); 28 | } 29 | 30 | /** 31 | * tearDown method 32 | * 33 | * @return void 34 | */ 35 | public function tearDown() { 36 | unset($this->Group); 37 | 38 | parent::tearDown(); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/Test/Case/Model/ProjectTest.php: -------------------------------------------------------------------------------- 1 | Project = ClassRegistry::init('Project'); 36 | } 37 | 38 | /** 39 | * tearDown method 40 | * 41 | * @return void 42 | */ 43 | public function tearDown() { 44 | unset($this->Project); 45 | 46 | parent::tearDown(); 47 | } 48 | 49 | } 50 | -------------------------------------------------------------------------------- /app/Test/Case/Model/TaskTest.php: -------------------------------------------------------------------------------- 1 | Task = ClassRegistry::init('Task'); 37 | } 38 | 39 | /** 40 | * tearDown method 41 | * 42 | * @return void 43 | */ 44 | public function tearDown() { 45 | unset($this->Task); 46 | 47 | parent::tearDown(); 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /app/Test/Case/Model/TaskmessageTest.php: -------------------------------------------------------------------------------- 1 | Taskmessage = ClassRegistry::init('Taskmessage'); 28 | } 29 | 30 | /** 31 | * tearDown method 32 | * 33 | * @return void 34 | */ 35 | public function tearDown() { 36 | unset($this->Taskmessage); 37 | 38 | parent::tearDown(); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /app/Test/Case/Model/UserTest.php: -------------------------------------------------------------------------------- 1 | User = ClassRegistry::init('User'); 38 | } 39 | 40 | /** 41 | * tearDown method 42 | * 43 | * @return void 44 | */ 45 | public function tearDown() { 46 | unset($this->User); 47 | 48 | parent::tearDown(); 49 | } 50 | 51 | } 52 | -------------------------------------------------------------------------------- /app/Test/Case/View/Helper/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/Test/Case/View/Helper/empty -------------------------------------------------------------------------------- /app/Test/Fixture/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/Test/Fixture/empty -------------------------------------------------------------------------------- /app/Vendor/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/Vendor/empty -------------------------------------------------------------------------------- /app/View/Categories/add.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | Html->addCrumb('Categorias', '/categories'); 7 | $this->Html->addCrumb('Adicionar'); 8 | echo $this->element('breadcrumbs'); 9 | ?> 10 | 11 |

12 | 13 |
14 | 15 | Form->create('Category', array('role' => 'form')); ?> 16 | 17 |
18 | 19 |
20 | Form->input('name', array('class' => 'form-control', 'label' => 'Nome')); ?> 21 |
22 | 23 | Form->submit('Salvar', array('class' => 'btn btn-large btn-primary')); ?> 24 | 25 |
26 | 27 | Form->end(); ?> 28 | 29 |
30 | 31 |
32 | 33 |
34 | -------------------------------------------------------------------------------- /app/View/Elements/botao_novo_registro_index.ctp: -------------------------------------------------------------------------------- 1 | Html->link( 3 | 'Novo registro', 4 | array( 5 | 'controller' => $this->request->params['controller'], 6 | 'action' => 'add' 7 | ), 8 | array( 9 | 'class' => 'btn btn-sm btn-default', 10 | 'style' => 'float: right; margin: 10px 0px' 11 | ) 12 | ); 13 | ?> 14 |
-------------------------------------------------------------------------------- /app/View/Elements/breadcrumbs.ctp: -------------------------------------------------------------------------------- 1 | Html->getCrumbList( 3 | array( 4 | 'class' => 'breadcrumb' 5 | ), 6 | array( 7 | 'text' => 'Home', 8 | 'url' => array('controller' => 'dashboards', 'action' => 'index'), 9 | ) 10 | ); 11 | ?> -------------------------------------------------------------------------------- /app/View/Elements/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Elements/empty -------------------------------------------------------------------------------- /app/View/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | ' . $line . "

\n"; 24 | endforeach; 25 | ?> -------------------------------------------------------------------------------- /app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /app/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 | 19 |

20 |

21 | : 22 | '{$url}'" 25 | ); ?> 26 |

27 | 0): 29 | echo $this->element('exception_stack_trace'); 30 | endif; 31 | ?> 32 | -------------------------------------------------------------------------------- /app/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 19 |

20 |

21 | : 22 | 23 |

24 | 0): 26 | echo $this->element('exception_stack_trace'); 27 | endif; 28 | ?> 29 | -------------------------------------------------------------------------------- /app/View/Groups/add.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | Html->addCrumb('Grupos', '/groups'); 7 | $this->Html->addCrumb('Adicionar'); 8 | echo $this->element('breadcrumbs'); 9 | ?> 10 | 11 |

12 | 13 |
14 | 15 | Form->create('Group', array('role' => 'form')); ?> 16 | 17 |
18 | 19 |
20 | Form->input('name', array('class' => 'form-control', 'label' => 'Nome')); ?> 21 |
22 | 23 | Form->submit('Salvar', array('class' => 'btn btn-large btn-primary')); ?> 24 | 25 |
26 | 27 | Form->end(); ?> 28 | 29 |
30 | 31 |
32 | 33 |
34 | -------------------------------------------------------------------------------- /app/View/Layouts/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | <?php echo $title_for_layout; ?> 23 | 24 | 25 | fetch('content'); ?> 26 | 27 |

This email was sent using the CakePHP Framework

28 | 29 | -------------------------------------------------------------------------------- /app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | -------------------------------------------------------------------------------- /app/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->document( 10 | $this->Rss->channel( 11 | array(), $channel, $this->fetch('content') 12 | ) 13 | ); 14 | ?> 15 | -------------------------------------------------------------------------------- /app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /app/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Scaffolds/empty -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/Elements/flash/default.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/Elements/flash/error.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/Elements/flash/info.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/Elements/flash/success.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/Elements/flash/warning.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
-------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/css/main.css: -------------------------------------------------------------------------------- 1 | #header{margin-top:20px}#page-container{margin-bottom:20px}#url-rewriting-warning{display:none} 2 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/css/style.css: -------------------------------------------------------------------------------- 1 | .post-it { 2 | background:#fefabc; 3 | padding:15px; 4 | font-family: 'Gloria Hallelujah', cursive; 5 | font-size:11px; 6 | color: #000; 7 | width:172px; 8 | margin: 20px; 9 | 10 | -moz-transform: rotate(3deg); 11 | -webkit-transform: rotate(3deg); 12 | -o-transform: rotate(3deg); 13 | -ms-transform: rotate(3deg); 14 | transform: rotate(3deg); 15 | 16 | box-shadow: 0px 4px 6px #333; 17 | -moz-box-shadow: 0px 4px 6px #333; 18 | -webkit-box-shadow: 0px 4px 6px #333; 19 | } 20 | .post-it p:first-child{ 21 | font-size: 14.5px; 22 | border-bottom: 1px solid #CCC; 23 | } -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/View/Themed/Cakestrap/webroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import "bootstrap/_bootstrap"; 2 | @import "fontawesome/_font-awesome"; -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin-bottom: $line-height-computed; 9 | list-style: none; 10 | background-color: $breadcrumb-bg; 11 | border-radius: $border-radius-base; 12 | > li { 13 | display: inline-block; 14 | + li:before { 15 | content: "#{$breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 16 | padding: 0 5px; 17 | color: $breadcrumb-color; 18 | } 19 | } 20 | > .active { 21 | color: $breadcrumb-active-color; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_close.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: ($font-size-base * 1.5); 9 | font-weight: $close-font-weight; 10 | line-height: 1; 11 | color: $close-color; 12 | text-shadow: $close-text-shadow; 13 | @include opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: $close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | @include opacity(.5); 21 | } 22 | 23 | // [converter] extracted button& to button.close 24 | } 25 | 26 | // Additional properties for button version 27 | // iOS requires the button element instead of an anchor tag. 28 | // If you want the anchor version, it requires `href="#"`. 29 | button.close { 30 | padding: 0; 31 | cursor: pointer; 32 | background: transparent; 33 | border: 0; 34 | -webkit-appearance: none; 35 | } 36 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_component-animations.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | @include transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | &.in { 21 | display: block; 22 | } 23 | } 24 | .collapsing { 25 | position: relative; 26 | height: 0; 27 | overflow: hidden; 28 | @include transition(height .35s ease); 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding: $jumbotron-padding; 8 | margin-bottom: $jumbotron-padding; 9 | font-size: $jumbotron-font-size; 10 | font-weight: 200; 11 | line-height: ($line-height-base * 1.5); 12 | color: $jumbotron-color; 13 | background-color: $jumbotron-bg; 14 | 15 | h1 { 16 | line-height: 1; 17 | color: $jumbotron-heading-color; 18 | } 19 | p { 20 | line-height: 1.4; 21 | } 22 | 23 | .container & { 24 | border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container 25 | } 26 | 27 | @media screen and (min-width: $screen-sm-min) { 28 | padding-top: ($jumbotron-padding * 1.6); 29 | padding-bottom: ($jumbotron-padding * 1.6); 30 | 31 | .container & { 32 | padding-left: ($jumbotron-padding * 2); 33 | padding-right: ($jumbotron-padding * 2); 34 | } 35 | 36 | h1 { 37 | font-size: ($font-size-base * 4.5); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_thumbnails.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | @extend .img-thumbnail; 9 | display: block; // Override the inline-block from `.img-thumbnail` 10 | margin-bottom: $line-height-computed; 11 | 12 | > img { 13 | @include img-responsive(); 14 | margin-left: auto; 15 | margin-right: auto; 16 | } 17 | } 18 | 19 | 20 | // Add a hover state for linked versions only 21 | a.thumbnail:hover, 22 | a.thumbnail:focus, 23 | a.thumbnail.active { 24 | border-color: $link-color; 25 | } 26 | 27 | // Image captions 28 | .thumbnail .caption { 29 | padding: $thumbnail-caption-padding; 30 | color: $thumbnail-caption-color; 31 | } 32 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | @include clearfix(); 11 | } 12 | .center-block { 13 | @include center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | @include text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | visibility: hidden !important; 48 | } 49 | 50 | 51 | // For Affix plugin 52 | // ------------------------- 53 | 54 | .affix { 55 | position: fixed; 56 | } 57 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/bootstrap/_wells.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: $well-bg; 12 | border: 1px solid darken($well-bg, 7%); 13 | border-radius: $border-radius-base; 14 | @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: $border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: $border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon-rotate($degrees, $rotation) { 5 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation); 6 | -webkit-transform: rotate($degrees); 7 | -moz-transform: rotate($degrees); 8 | -ms-transform: rotate($degrees); 9 | -o-transform: rotate($degrees); 10 | transform: rotate($degrees); 11 | } 12 | 13 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation); 15 | -webkit-transform: scale($horiz, $vert); 16 | -moz-transform: scale($horiz, $vert); 17 | -ms-transform: scale($horiz, $vert); 18 | -o-transform: scale($horiz, $vert); 19 | transform: scale($horiz, $vert); 20 | } 21 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: spin 2s infinite linear; 6 | -moz-animation: spin 2s infinite linear; 7 | -o-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | } 10 | 11 | @-moz-keyframes spin { 12 | 0% { -moz-transform: rotate(0deg); } 13 | 100% { -moz-transform: rotate(359deg); } 14 | } 15 | @-webkit-keyframes spin { 16 | 0% { -webkit-transform: rotate(0deg); } 17 | 100% { -webkit-transform: rotate(359deg); } 18 | } 19 | @-o-keyframes spin { 20 | 0% { -o-transform: rotate(0deg); } 21 | 100% { -o-transform: rotate(359deg); } 22 | } 23 | @-ms-keyframes spin { 24 | 0% { -ms-transform: rotate(0deg); } 25 | 100% { -ms-transform: rotate(359deg); } 26 | } 27 | @keyframes spin { 28 | 0% { transform: rotate(0deg); } 29 | 100% { transform: rotate(359deg); } 30 | } 31 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/fontawesome/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /app/View/Themed/Cakestrap/webroot/sass/main.scss: -------------------------------------------------------------------------------- 1 | #header{margin-top:20px;} 2 | #page-container{margin-bottom:20px;} 3 | #url-rewriting-warning {display: none;} -------------------------------------------------------------------------------- /app/View/Users/login.ctp: -------------------------------------------------------------------------------- 1 | Form->create( 'User', array( 'class' => 'form-signin' ) ) 3 | . $this->Html->tag( 'h2', 'Faça o login', 4 | array( 'class' => 'form-signin-heading' ) ) 5 | . $this->Form->input( 'username', 6 | array( 'label'=>false, 'class'=>'form-control', 'placeholder'=>'Usuário' ) ) 7 | . $this->Form->input( 'password', 8 | array( 'label'=>false, 'class'=>'form-control', 'placeholder'=>'Senha' ) ) 9 | . $this->Form->submit( 'Login', array( 'class' => 'btn btn-default' ) ) 10 | . $this->Form->end(); 11 | ?> -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^ index.php [L] 6 | 7 | -------------------------------------------------------------------------------- /app/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/favicon.ico -------------------------------------------------------------------------------- /app/webroot/files/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/files/empty -------------------------------------------------------------------------------- /app/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /app/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /app/webroot/img/logomarca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/logomarca.png -------------------------------------------------------------------------------- /app/webroot/img/logomarca_30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/logomarca_30px.png -------------------------------------------------------------------------------- /app/webroot/img/logomarca_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/logomarca_large.png -------------------------------------------------------------------------------- /app/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /app/webroot/js/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/app/webroot/js/empty -------------------------------------------------------------------------------- /app/webroot/manifest.webapp: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "name": "Project Manager", 4 | "launch_path": "/", 5 | "description": "Sistema para gerenciamento de projetos", 6 | "icons": { 7 | "16": "http://projetos.tayron.com.br/img/logomarca_30px.png", 8 | "32": "http://projetos.tayron.com.br/img/logomarca_30px.png", 9 | "48": "http://projetos.tayron.com.br/img/logomarca_30px.png", 10 | "64": "http://projetos.tayron.com.br/img/logomarca_30px.png", 11 | "128": "http://projetos.tayron.com.br/img/logomarca_30px.png" 12 | }, 13 | "developer": { 14 | "name": "Tayron Miranda", 15 | "url": "http://www.tayron.com.br" 16 | }, 17 | "installs_allowed_from": ["*"], 18 | "default_locale": "pt" 19 | } -------------------------------------------------------------------------------- /lib/Cake/Config/config.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/i18n.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 5 | # Licensed under The MIT License 6 | # For full copyright and license information, please see the LICENSE.txt 7 | # Redistributions of files must retain the above copyright notice. 8 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 9 | 10 | CREATE TABLE i18n ( 11 | id int(10) NOT NULL auto_increment, 12 | locale varchar(6) NOT NULL, 13 | model varchar(255) NOT NULL, 14 | foreign_key int(10) NOT NULL, 15 | field varchar(255) NOT NULL, 16 | content mediumtext, 17 | PRIMARY KEY (id), 18 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field), 19 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key), 20 | # INDEX I18N_LOCALE_MODEL(locale, model), 21 | # INDEX I18N_FIELD(model, foreign_key, field), 22 | # INDEX I18N_ROW(model, foreign_key), 23 | INDEX locale (locale), 24 | INDEX model (model), 25 | INDEX row_id (foreign_key), 26 | INDEX field (field) 27 | ); -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/sessions.php: -------------------------------------------------------------------------------- 1 | array('type' => 'string', 'null' => false, 'key' => 'primary'), 31 | 'data' => array('type' => 'text', 'null' => true, 'default' => null), 32 | 'expires' => array('type' => 'integer', 'null' => true, 'default' => null), 33 | 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) 34 | ); 35 | 36 | } 37 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # For full copyright and license information, please see the LICENSE.txt 9 | # Redistributions of files must retain the above copyright notice. 10 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 11 | 12 | CREATE TABLE cake_sessions ( 13 | id varchar(255) NOT NULL default '', 14 | data text, 15 | expires int(11) default NULL, 16 | PRIMARY KEY (id) 17 | ); -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Console/Command/AppShell.php: -------------------------------------------------------------------------------- 1 | 19 | ' . $line . "

\n"; 24 | endforeach; 25 | ?> -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 | 10 |

11 |

12 | : 13 | '{$url}'" 16 | ); ?> 17 |

18 | 0): 20 | echo $this->element('exception_stack_trace'); 21 | endif; 22 | ?> 23 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 10 |

11 |

12 | : 13 | 14 |

15 | 0): 17 | echo $this->element('exception_stack_trace'); 18 | endif; 19 | ?> 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Helper/AppHelper.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | <?php echo $title_for_layout; ?> 14 | 15 | 16 | fetch('content'); ?> 17 | 18 |

This email was sent using the CakePHP Framework

19 | 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 10 | fetch('content'); ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | Html->charset(); ?> 14 | <?php echo $page_title; ?> 15 | 16 | 17 | 18 | 19 | 24 | 25 | 26 |

27 | 28 | 29 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->document( 10 | $this->Rss->channel( 11 | array(), $channel, $this->fetch('content') 12 | ) 13 | ); 14 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/View/Scaffolds/empty -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/index.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^ index.php [L] 6 | 7 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/favicon.ico -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/files/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/files/empty -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Console/Templates/skel/webroot/js/empty -------------------------------------------------------------------------------- /lib/Cake/Console/cake.bat: -------------------------------------------------------------------------------- 1 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 2 | :: 3 | :: Bake is a shell script for running CakePHP bake script 4 | :: 5 | :: CakePHP(tm) : Rapid Development Framework (http://cakephp.org) 6 | :: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | :: 8 | :: Licensed under The MIT License 9 | :: Redistributions of files must retain the above copyright notice. 10 | :: 11 | :: @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 12 | :: @link http://cakephp.org CakePHP(tm) Project 13 | :: @package Cake.Console 14 | :: @since CakePHP(tm) v 1.2.0.5012 15 | :: @license http://www.opensource.org/licenses/mit-license.php MIT License 16 | :: 17 | :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 18 | 19 | :: In order for this script to work as intended, the cake\console\ folder must be in your PATH 20 | 21 | @echo. 22 | @echo off 23 | 24 | SET app=%0 25 | SET lib=%~dp0 26 | 27 | php -q "%lib%cake.php" -working "%CD% " %* 28 | 29 | echo. 30 | 31 | exit /B %ERRORLEVEL% 32 | -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/sample.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | defect 5 | 6 | 7 | enhancement 8 | 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/soap_request.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | IBM 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/soap_response.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 34.5 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/bake_compare/Controller/NoActions.ctp: -------------------------------------------------------------------------------- 1 | array( 5 | 'form' => 'start form', 6 | 'formend' => 'finish form', 7 | 'hiddenblock' => '' 8 | ) 9 | ); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/nested.ini: -------------------------------------------------------------------------------- 1 | ; Test file for testing ini files with . syntax 2 | [database] 3 | db.username = mark 4 | db.password = secret 5 | 6 | [nesting] 7 | one.two.three = 3 8 | a.b.c.d = On 9 | 10 | [bools] 11 | test_on = on 12 | test_off = off 13 | test_yes = yes 14 | test_no = no 15 | test_true = true 16 | test_false = false 17 | test_null = null 18 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_ini_extension: -------------------------------------------------------------------------------- 1 | ; Test file for testing config file without .ini extension. 2 | some_key = some_value 3 | bool_key = 1 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_php_extension: -------------------------------------------------------------------------------- 1 | array( 5 | 'Third' => array( 6 | 'ThirdDeepest' => 'buried3' 7 | ) 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_section.ini: -------------------------------------------------------------------------------- 1 | some_key = some_value 2 | bool_key = 1 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/routes.php: -------------------------------------------------------------------------------- 1 | 'tests_apps', 'action' => 'some_method')); 23 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/var_test.php: -------------------------------------------------------------------------------- 1 | 'value', 4 | 'Deep' => array( 5 | 'Deeper' => array( 6 | 'Deepest' => 'buried' 7 | ) 8 | ), 9 | 'TestAcl' => array( 10 | 'classname' => 'Original' 11 | ) 12 | ); 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/var_test2.php: -------------------------------------------------------------------------------- 1 | 'value2', 4 | 'Deep' => array( 5 | 'Second' => array( 6 | 'SecondDeepest' => 'buried2' 7 | ) 8 | ), 9 | 'TestAcl' => array( 10 | 'classname' => 'Overwrite', 11 | 'custom' => 'one' 12 | ) 13 | ); 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Command/Task/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Console/Command/Task/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Templates/test/classes/test_object.ctp: -------------------------------------------------------------------------------- 1 | I got rendered 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Templates/test/views/admin_edit.ctp: -------------------------------------------------------------------------------- 1 | admin_edit template -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Controller/Component/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Controller/Component/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Controller/TestAppsErrorController.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'some' => 'config' 10 | ) 11 | ); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Error/TestAppsExceptionRenderer.php: -------------------------------------------------------------------------------- 1 | layout = 'banana'; 14 | } catch (Exception $e) { 15 | $controller = new Controller($request, $response); 16 | $controller->viewPath = 'Errors'; 17 | } 18 | return $controller; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Lib/Library.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Lib 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class Library 21 | * 22 | * @package Cake.Test.TestApp.Lib 23 | */ 24 | class Library { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Lib/Log/Engine/TestAppLog.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Lib.Log.Engine 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | App::uses('BaseLog', 'Log/Engine'); 20 | 21 | /** 22 | * Class TestAppLog 23 | * 24 | * @package Cake.Test.TestApp.Lib.Log.Engine 25 | */ 26 | class TestAppLog extends BaseLog { 27 | 28 | public function write($type, $message) { 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Lib/Utility/TestUtilityClass.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Lib.Utility 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestUtilityClass 21 | * 22 | * @package Cake.Test.TestApp.Lib.Utility 23 | */ 24 | class TestUtilityClass { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "default.foo" 2 | msgstr "Default Foo" 3 | 4 | msgid "default.bar" 5 | msgstr "Default Bar" 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/dom1.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain 1" 3 | 4 | msgid "dom1.foo" 5 | msgstr "Dom 1 Foo" 6 | 7 | msgid "dom1.bar" 8 | msgstr "Dom 1 Bar" 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/dom2.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain" 3 | 4 | msgid "dom2.foo" 5 | msgstr "Dom 2 Foo" 6 | 7 | msgid "dom2.bar" 8 | msgstr "Dom 2 Bar" 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/eng/LC_MESSAGES/validation_messages.po: -------------------------------------------------------------------------------- 1 | msgid "Validation failed: %s" 2 | msgstr "Translated validation failed: %s" 3 | 4 | msgid "arg1" 5 | msgstr "Translated arg1" -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/po/LC_MONETARY/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | msgid "" 15 | msgstr "header" 16 | 17 | msgid "Plural Rule 1" 18 | msgstr "Monetary Po (translated)" -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 0 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends with any # (from core translated)" 21 | 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 0 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends with any # (translated)" 21 | 22 | #~ msgid "Plural-Forms 1" 23 | #~ msgstr "Plural-Forms 0" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 10 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1 (from core translated)" 21 | msgstr[1] "%d ends in 2 (from core translated)" 22 | msgstr[2] "%d ends in 03-04 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 10 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1 (translated)" 21 | msgstr[1] "%d ends in 2 (translated)" 22 | msgstr[2] "%d ends in 03-04 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | #~ msgid "Plural-Forms 1" 26 | #~ msgstr "Plural-Forms 1 (translated)" 27 | 28 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4;\n" 12 | "X-Poedit-Language: Five Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 11 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2 (from core translated)" 22 | msgstr[2] "%d is 3-6 (from core translated)" 23 | msgstr[3] "%d is 7-10 (from core translated)" 24 | msgstr[4] "%d everything else (from core translated)" 25 | 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4;\n" 12 | "X-Poedit-Language: Five Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 11 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2 (translated)" 22 | msgstr[2] "%d is 3-6 (translated)" 23 | msgstr[3] "%d is 7-10 (translated)" 24 | msgstr[4] "%d everything else (translated)" 25 | 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 12 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2 (from core translated)" 22 | msgstr[2] "%d is 0 or 3-10 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 12 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2 (translated)" 22 | msgstr[2] "%d is 0 or 3-10 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || (n%100>=1 && n%100<=10) ? 1 : n%100>=11 && n%100<=20 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 13 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 0 or ends in 01-10 (from core translated)" 22 | msgstr[2] "%d ends in 11-20 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || (n%100>=1 && n%100<=10) ? 1 : n%100>=11 && n%100<=20 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 13 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 0 or ends in 01-10 (translated)" 22 | msgstr[2] "%d ends in 11-20 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 14 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1 (from core translated)" 21 | msgstr[1] "%d ends in 2 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 14 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1 (translated)" 21 | msgstr[1] "%d ends in 2 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 1 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 0 or > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 1 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 1 (translated)" 21 | msgstr[1] "%d = 0 or > 1 (translated)" 22 | 23 | #~ msgid "Plural-Forms 1" 24 | #~ msgstr "Plural-Forms 1 (translated)" 25 | 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n>1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 2 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 0 or 1 (from core translated)" 21 | msgstr[1] "%d > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n>1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 2 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 0 or 1 (translated)" 21 | msgstr[1] "%d > 1 (translated)" 22 | 23 | #~ msgid "Plural-Forms 1" 24 | #~ msgstr "Plural-Forms 1 (translated)" 25 | 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 3 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends 1 but not 11 (from core translated)" 21 | msgstr[1] "%d everything else (from core translated)" 22 | msgstr[2] "%d = 0 (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 3 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends 1 but not 11 (translated)" 21 | msgstr[1] "%d everything else (translated)" 22 | msgstr[2] "%d = 0 (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 4 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 2 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 4 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 1 (translated)" 21 | msgstr[1] "%d = 2 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 5 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 0 or ends in 01-19 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" 12 | 13 | msgid "Plural Rule 1" 14 | msgstr "Plural Rule 5 (translated)" 15 | 16 | msgid "%d = 1" 17 | msgid_plural "%d = 0 or > 1" 18 | msgstr[0] "%d = 1 (translated)" 19 | msgstr[1] "%d = 0 or ends in 01-19 (translated)" 20 | msgstr[2] "%d everything else (translated)" 21 | 22 | #~ msgid "Plural-Forms 1" 23 | #~ msgstr "Plural-Forms 1 (translated)" 24 | 25 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 6 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1, not 11 (from core translated)" 21 | msgstr[1] "%d everything else (from core translated)" 22 | msgstr[2] "%d ends in 0 or ends in 10-20 (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 6 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1, not 11 (translated)" 21 | msgstr[1] "%d everything else (translated)" 22 | msgstr[2] "%d ends in 0 or ends in 10-20 (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 7 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1, not 11 (from core translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 7 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1, not 11 (translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 8 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2-4 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 8 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2-4 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 9 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 9 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Model/Comment.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Config 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | $config['plugin_load'] = '/test_app/plugins/test_plugin/config/load.php'; 20 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/more.load.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Config 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | $config['plugin_more_load'] = '/test_app/plugins/test_plugin/config/more.load.php'; 20 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/nested.ini: -------------------------------------------------------------------------------- 1 | ; Test file for testing ini files with . syntax 2 | [database] 3 | db.username = bar 4 | db.password = foo 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/routes.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Console.Command.Task 15 | * @since CakePHP(tm) v 2.0 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class OtherTaskTask 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Console.Command.Task 23 | */ 24 | class OtherTaskTask extends Shell { 25 | 26 | } -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Templates/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Plugin/TestPlugin/Console/Templates/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Controller/Component/OtherComponent.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Controller.Component 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class OtherComponent 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Controller.Component 23 | */ 24 | class OtherComponent extends Component { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Controller/Component/TestPluginOtherComponent.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Controller.Component 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestPluginOtherComponent 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Controller.Component 23 | */ 24 | class TestPluginOtherComponent extends Component { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Custom/Package/CustomLibClass.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib.Custom.Package 15 | * @since CakePHP(tm) v 1.2.0.5432 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class CustomLibClass 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib.Custom.Package 23 | */ 24 | class CustomLibClass { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Routing/Route/TestRoute.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 15 | * @since CakePHP(tm) v 1.2.0.5432 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestPluginLibrary 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 23 | */ 24 | class TestPluginLibrary { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/TestPluginOtherLibrary.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 15 | * @since CakePHP(tm) v 2.0.1 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestPluginOtherLibrary 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 23 | */ 24 | class TestPluginOtherLibrary { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Locale/po/LC_MONETARY/test_plugin.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Monetary Plural Rule 1 (from plugin)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "Monetary %d = 1 (from plugin)" 21 | msgstr[1] "Monetary %d = 0 or > 1 (from plugin)" 22 | 23 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database/DboDummy.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Model 15 | * @since CakePHP(tm) v 1.2.0.5432 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestPluginAppModel 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Model 23 | */ 24 | class TestPluginAppModel extends CakeTestModel { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Utility/TestPluginEngine.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Vendor.sample 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class SamplePluginClassTestName 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Vendor.sample 23 | */ 24 | class SamplePluginClassTestName { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Vendor/welcome.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Vendor 15 | * @since CakePHP(tm) v 1.2.0.7629 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the welcome.php file in test_plugin/vendors directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/sub_dir/sub_element.ctp: -------------------------------------------------------------------------------- 1 | Content from TestPlugin.Elements/sub_dir/sub_element 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/test_plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/translate.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Helper/OtherHelperHelper.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.View.Helper 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | App::uses('AppHelper', 'View/Helper'); 20 | 21 | /** 22 | * Class OtherHelperHelper 23 | * 24 | * @package Cake.Test.TestApp.Plugin.TestPlugin.View.Helper 25 | */ 26 | class OtherHelperHelper extends AppHelper { 27 | } 28 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Helper/TestPluginAppHelper.php: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 3 | 4 | This email was sent using the TestPlugin. 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | test plugin default layout -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_plugin add/edit scaffold view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/test_plugin_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test plugin asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/theme_one.htc: -------------------------------------------------------------------------------- 1 | htc file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/unknown.extension: -------------------------------------------------------------------------------- 1 | Testing a file with unknown extension to mime mapping. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/flash/plugin_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the plugin. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img/cake.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img/cake.icon.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js/test_plugin/test.js: -------------------------------------------------------------------------------- 1 | alert("Test App"); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/pdfs/plugin_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the plugin. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/root.js: -------------------------------------------------------------------------------- 1 | alert('I am a root level file!'); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPluginTwo/Config/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.Test 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the MyTest.php file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/Test/hello.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.Test 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the hello.php file in Test directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/css/test_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Vendor/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/img/test_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/Vendor/img/test_2.JPG -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/sample/configure_test_vendor_sample.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.sample 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class ConfigureTestVendorSample 21 | * 22 | * @package Cake.Test.TestApp.Vendor.sample 23 | */ 24 | class ConfigureTestVendorSample { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/somename/some.name.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.somename 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is a file with dot in file name -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/welcome.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor 15 | * @since CakePHP(tm) v 1.2.0.7629 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the welcome.php file in vendors directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/extended_element.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_element'); ?> 2 | Element content. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/extended_missing_element.ctp: -------------------------------------------------------------------------------- 1 | extend('noneexistent_parent_element'); ?> 2 | Element content. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/html_call.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test', 'http://example.com'); 3 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/contains_nocache.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 | 3 |

F. In Element With No Cache Tags

4 | log('6. in element with no cache tags') ?> 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/plain.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 |

B. In Plain Element

3 | log('2. in plain element') ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub1.ctp: -------------------------------------------------------------------------------- 1 | element('nocache/sub2'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub2.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/parent_element.ctp: -------------------------------------------------------------------------------- 1 | Parent Element. 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/session_helper.ctp: -------------------------------------------------------------------------------- 1 |
2 |

3 |

4 |

5 |
-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/test_element.xml: -------------------------------------------------------------------------------- 1 |

test element

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/custom.ctp: -------------------------------------------------------------------------------- 1 |

Here is your value:

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | ' . $line . '

'; 6 | endforeach; 7 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/image.ctp: -------------------------------------------------------------------------------- 1 | Html->image('image.gif', array( 4 | 'alt' => 'cool image', 5 | 'width' => 100, 6 | 'height' => 100, 7 | 'fullBase' => true, 8 | )); 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 |

ここにあなたの設定した値が入ります:

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/nested_element.ctp: -------------------------------------------------------------------------------- 1 | Before the element. 2 | element('html_call'); ?> 3 | After the element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom.ctp: -------------------------------------------------------------------------------- 1 | Here is your value: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom_helper.ctp: -------------------------------------------------------------------------------- 1 | Right now: Time->toAtom($time); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | ここにあなたの設定した値が入ります: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/wide.ctp: -------------------------------------------------------------------------------- 1 | This element has some text that is just too wide to comply with email standards. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 |

2 |

3 | : 4 | '{$url}'" 7 | ); ?> 8 |

9 | 0): 11 | echo $this->element('exception_stack_trace'); 12 | endif; 13 | ?> 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 |

2 |

3 | : 4 | 5 |

6 | 0): 8 | echo $this->element('exception_stack_trace'); 9 | endif; 10 | ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Helper/BananaHelper.php: -------------------------------------------------------------------------------- 1 | peeled'; 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

This email was sent using the CakePHP Framework

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

このメールは CakePHP Framework を利用して送信しました。

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/thin.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

This email was sent using the CakePHP Framework

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | This email was sent using the CakePHP Framework, http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | CakePHP Framework を使って送信したメールです。 http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax2.ctp: -------------------------------------------------------------------------------- 1 | Ajax! 2 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/banana.ctp: -------------------------------------------------------------------------------- 1 | 2 | Banana->peel(); 4 | ?> 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $title_for_layout; ?> 5 | 6 | 7 | 8 | 9 | 10 | fetch('content'); ?> 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/cache_layout.ctp: -------------------------------------------------------------------------------- 1 |

This is regular text

2 | 3 | 4 | 5 | 6 | fetch('content'); ?> 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Additional regular text.

-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $page_title?> 5 | Html->charset(); ?> 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 |

18 | 19 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/json/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/multi_cache.ctp: -------------------------------------------------------------------------------- 1 |

This is regular text

2 | 3 |

A. Layout Before Content

4 | log('1. layout before content') ?> 5 | 6 | element('nocache/plain'); ?> 7 | 8 |

C. Layout After Test Element But Before Content

9 | log('3. layout after test element but before content') ?> 10 | 11 | fetch('content'); ?> 12 | 13 |

E. Layout After Content

14 | log('5. layout after content') ?> 15 | 16 |

Additional regular text.

17 | element('nocache/contains_nocache'); ?> 18 | 19 |

G. Layout After Content And After Element With No Cache Tags

20 | log('7. layout after content and after element with no cache tags') ?> 21 | 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $this->Rss->document( 12 | $this->Rss->channel( 13 | array(), $channel, $this->fetch('content') 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | '; ?> 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Pages/page.home.ctp: -------------------------------------------------------------------------------- 1 | Empty page with a dot in the filename. 2 | Used to test plugin.view and missing plugins. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/alt_ext.alt: -------------------------------------------------------------------------------- 1 | alt ext -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | View Content 2 | 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_form.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | Form->create('User'); ?> 4 |
5 | 6 | Form->input('username'); 8 | echo $this->Form->input('email'); 9 | echo $this->Form->input('password'); 10 | ?> 11 |
12 | Form->end('Submit'); ?> 13 | 14 |
-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_element.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_view'); ?> 2 | View content. 3 | element('extended_element'); ?> 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_loop.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_loop_inner'); ?> 2 | Outer element. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_loop_inner.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_loop'); ?> 2 | Inner loop element. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_missing_element.ctp: -------------------------------------------------------------------------------- 1 | element('extended_missing_element'); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_self.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_self'); ?> 2 | To infinifty and beyond. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_with_element.ctp: -------------------------------------------------------------------------------- 1 | element('test_element'); ?> 2 | extend('parent_view'); ?> 3 | The view 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/helper_overwrite.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test link', '#'); 4 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/json/index.ctp: -------------------------------------------------------------------------------- 1 | Paginator->options['url']) ? $this->Paginator->options['url'] : null; 4 | 5 | $formatted = array( 6 | 'user' => $user['User']['username'], 7 | 'list' => array(), 8 | 'paging' => $paging, 9 | ); 10 | foreach ($user['Item'] as $item) { 11 | $formatted['list'][] = $item['name']; 12 | } 13 | 14 | echo json_encode($formatted); 15 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/multiple_nocache.ctp: -------------------------------------------------------------------------------- 1 | --view start-- 2 | 3 | 4 | 5 | 6 | this view has 3 nocache blocks 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | --view end-- -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/nested_extends.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_1'); 3 | $this->assign('sidebar', 'Sidebar Content.'); 4 | ?> 5 | This is the first template. 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/nocache_multiple_element.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | element('nocache/sub1'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/open_block.ctp: -------------------------------------------------------------------------------- 1 | start('no_close'); 3 | echo 'This block has no close :('; 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_1.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_2'); 3 | ?> 4 | This is the first parent. 5 | fetch('content'); ?> 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_2.ctp: -------------------------------------------------------------------------------- 1 | This is the second parent. 2 | fetch('content'); ?> 3 | fetch('sidebar'); ?> 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_view.ctp: -------------------------------------------------------------------------------- 1 | Parent View. 2 | fetch('content') ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_app posts add/edit scaffold view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/sequencial_nocache.ctp: -------------------------------------------------------------------------------- 1 |

Content

2 | 3 |

D. In View File

4 | log('4. in view file') ?> 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/xml/index.ctp: -------------------------------------------------------------------------------- 1 | array('user' => array())); 3 | foreach ($users as $user) { 4 | $data['users']['user'][] = array('@' => $user['User']['username']); 5 | } 6 | echo Xml::fromArray($data)->saveXml(); 7 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/View/Scaffolds/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/index.ctp: -------------------------------------------------------------------------------- 1 | This is the TestsAppsController index view 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/json/index.ctp: -------------------------------------------------------------------------------- 1 | {"cakephp":"cool"} -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Emails/text/themed.ctp: -------------------------------------------------------------------------------- 1 | In TestTheme 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | default test_theme layout 2 | fetch('content') ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. (themed) 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Layouts/plugin_default.ctp: -------------------------------------------------------------------------------- 1 | test_plugin test_plugin_theme default layout -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index theme view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/themed.ctp: -------------------------------------------------------------------------------- 1 | posts themed themed file. 2 | 3 | element('test_element'); ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/test_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/flash/theme_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | // nested theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | // root theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/pdfs/theme_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/space image.text: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/tmp/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/tmp/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* override the theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/webroot_test.css: -------------------------------------------------------------------------------- 1 | /* this is the webroot test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tayron/project-manager/d7e2e3cce5e4732a518410f8cb9f37057ecb1827/lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/VERSION.txt: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////////////////////////// 2 | // +--------------------------------------------------------------------------------------------+ // 3 | // CakePHP Version 4 | // 5 | // Holds a static string representing the current version of CakePHP 6 | // 7 | // CakePHP(tm) : Rapid Development Framework (http://cakephp.org) 8 | // Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | // 10 | // Licensed under The MIT License 11 | // Redistributions of files must retain the above copyright notice. 12 | // 13 | // @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | // @link http://cakephp.org 15 | // @package Cake 16 | // @since CakePHP(tm) v 0.2.9 17 | // @license http://www.opensource.org/licenses/mit-license.php MIT License 18 | // +--------------------------------------------------------------------------------------------+ // 19 | //////////////////////////////////////////////////////////////////////////////////////////////////// 20 | 2.4.3 21 | -------------------------------------------------------------------------------- /lib/Cake/View/ThemeView.php: -------------------------------------------------------------------------------- 1 |