在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 一个利用cakephp开发的实例附带数据库.rar

一个利用cakephp开发的实例附带数据库.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.95M
  • 下载次数:1
  • 浏览次数:50
  • 发布时间:2021-12-11
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
主要功能有: 1. 小组成员可以查看,发布message 2. 小组成员可以发布新的idea,修改自己发布的idea。 2.1修改不会删除原来的idea,只是将原idea变成oldidea,这样可以看到一个idea是如何从不清晰的意向慢慢演变过来的过程。 2.2 用户和游客可以对idea进行评论,添加ideacomment,也能区分出评论是基于哪个版本的,是newideacomment还是oldideacomment。 3. 小组成员可以添加新的project,修改自己参与project的信息。游客和用户可以添加评论projectcomment。 4. 小组成员可以查看其它user的信息。 5. 管理员可以对所有实体进行CRUD操作
【实例截图】
【核心代码】
4744302543367370097.rar
├── mdtweb
│   ├── app
│   │   ├── config
│   │   │   ├── acl.ini.php
│   │   │   ├── bootstrap.php
│   │   │   ├── core.php
│   │   │   ├── core.php~
│   │   │   ├── database.php
│   │   │   ├── database.php~
│   │   │   ├── database.php.default
│   │   │   ├── inflections.php
│   │   │   ├── routes.php
│   │   │   └── sql
│   │   │   ├── db_acl.php
│   │   │   ├── db_acl.sql
│   │   │   ├── i18n.php
│   │   │   ├── i18n.sql
│   │   │   ├── sessions.php
│   │   │   └── sessions.sql
│   │   ├── controllers
│   │   │   ├── components
│   │   │   │   └── empty
│   │   │   ├── ideacomments_controller.php
│   │   │   ├── ideacomments_controller.php~
│   │   │   ├── ideas_controller.php
│   │   │   ├── ideas_controller.php~
│   │   │   ├── messages_controller.php
│   │   │   ├── oldideas_controller.php
│   │   │   ├── oldideas_controller.php~
│   │   │   ├── pages_controller.php
│   │   │   ├── projectcomments_controller.php
│   │   │   ├── projectcomments_controller.php~
│   │   │   ├── projects_controller.php
│   │   │   ├── projects_controller.php~
│   │   │   ├── users_controller.php
│   │   │   └── users_controller.php~
│   │   ├── index.php
│   │   ├── locale
│   │   │   └── eng
│   │   │   └── LC_MESSAGES
│   │   │   └── empty
│   │   ├── models
│   │   │   ├── authentication.php
│   │   │   ├── behaviors
│   │   │   │   └── empty
│   │   │   ├── datasources
│   │   │   │   └── empty
│   │   │   ├── ideacomment.php
│   │   │   ├── idea.php
│   │   │   ├── message.php
│   │   │   ├── newideacomment.php
│   │   │   ├── oldideacomment.php
│   │   │   ├── oldidea.php
│   │   │   ├── projectancestor.php
│   │   │   ├── projectcomment.php
│   │   │   ├── project.php
│   │   │   ├── user.php
│   │   │   └── 数据库作业.txt
│   │   ├── plugins
│   │   │   └── empty
│   │   ├── tests
│   │   │   ├── cases
│   │   │   │   ├── behaviors
│   │   │   │   │   └── empty
│   │   │   │   ├── components
│   │   │   │   │   └── empty
│   │   │   │   ├── controllers
│   │   │   │   │   ├── empty
│   │   │   │   │   ├── ideacomments_controller.test.php
│   │   │   │   │   ├── ideas_controller.test.php
│   │   │   │   │   ├── messages_controller.test.php
│   │   │   │   │   ├── oldideas_controller.test.php
│   │   │   │   │   ├── pages_controller.test.php
│   │   │   │   │   ├── products_controller.test.php
│   │   │   │   │   ├── projectancestors_controller.test.php
│   │   │   │   │   ├── projectcomments_controller.test.php
│   │   │   │   │   ├── projects_controller.test.php
│   │   │   │   │   └── users_controller.test.php
│   │   │   │   ├── helpers
│   │   │   │   │   └── empty
│   │   │   │   └── models
│   │   │   │   ├── authentication.test.php
│   │   │   │   ├── empty
│   │   │   │   ├── ideacomment.test.php
│   │   │   │   ├── idea.test.php
│   │   │   │   ├── message.test.php
│   │   │   │   ├── newideacomment.test.php
│   │   │   │   ├── oldideacomment.test.php
│   │   │   │   ├── oldidea.test.php
│   │   │   │   ├── projectancestor.test.php
│   │   │   │   ├── projectcomment.test.php
│   │   │   │   ├── project.test.php
│   │   │   │   └── user.test.php
│   │   │   ├── fixtures
│   │   │   │   ├── authentication_fixture.php
│   │   │   │   ├── empty
│   │   │   │   ├── ideacomment_fixture.php
│   │   │   │   ├── idea_fixture.php
│   │   │   │   ├── message_fixture.php
│   │   │   │   ├── newideacomment_fixture.php
│   │   │   │   ├── oldideacomment_fixture.php
│   │   │   │   ├── oldidea_fixture.php
│   │   │   │   ├── projectancestor_fixture.php
│   │   │   │   ├── projectcomment_fixture.php
│   │   │   │   ├── project_fixture.php
│   │   │   │   └── user_fixture.php
│   │   │   └── groups
│   │   │   └── empty
│   │   ├── tmp
│   │   │   ├── cache
│   │   │   │   ├── models
│   │   │   │   │   ├── cake_model_default_acos
│   │   │   │   │   ├── cake_model_default_aros
│   │   │   │   │   ├── cake_model_default_aros_acos
│   │   │   │   │   ├── cake_model_default_authentications
│   │   │   │   │   ├── cake_model_default_dealers
│   │   │   │   │   ├── cake_model_default_ideacomments
│   │   │   │   │   ├── cake_model_default_ideas
│   │   │   │   │   ├── cake_model_default_mdtweb_list
│   │   │   │   │   ├── cake_model_default_messages
│   │   │   │   │   ├── cake_model_default_newideacomments
│   │   │   │   │   ├── cake_model_default_oldideacomments
│   │   │   │   │   ├── cake_model_default_oldideas
│   │   │   │   │   ├── cake_model_default_products
│   │   │   │   │   ├── cake_model_default_project
│   │   │   │   │   ├── cake_model_default_projectancestors
│   │   │   │   │   ├── cake_model_default_projectcomments
│   │   │   │   │   ├── cake_model_default_projectideas
│   │   │   │   │   ├── cake_model_default_projects
│   │   │   │   │   ├── cake_model_default_projects_ideas
│   │   │   │   │   ├── cake_model_default_projects_users
│   │   │   │   │   ├── cake_model_default_projectusers
│   │   │   │   │   ├── cake_model_default_testdb_list
│   │   │   │   │   ├── cake_model_default_test_list
│   │   │   │   │   ├── cake_model_default_users
│   │   │   │   │   ├── cake_model_test_test_list
│   │   │   │   │   ├── cake_model_test_users
│   │   │   │   │   └── empty
│   │   │   │   ├── persistent
│   │   │   │   │   ├── cake_core_core_paths
│   │   │   │   │   ├── cake_core_default_en_us
│   │   │   │   │   ├── cake_core_default_zh_cn
│   │   │   │   │   ├── cake_core_dir_map
│   │   │   │   │   ├── cake_core_file_map
│   │   │   │   │   ├── cake_core_object_map
│   │   │   │   │   └── empty
│   │   │   │   └── views
│   │   │   │   └── empty
│   │   │   ├── logs
│   │   │   │   ├── debug.log
│   │   │   │   ├── empty
│   │   │   │   └── error.log
│   │   │   ├── sessions
│   │   │   │   └── empty
│   │   │   └── tests
│   │   │   └── empty
│   │   ├── vendors
│   │   │   └── shells
│   │   │   ├── tasks
│   │   │   │   └── empty
│   │   │   └── templates
│   │   │   └── empty
│   │   ├── views
│   │   │   ├── elements
│   │   │   │   └── empty
│   │   │   ├── errors
│   │   │   │   └── empty
│   │   │   ├── helpers
│   │   │   │   └── empty
│   │   │   ├── ideacomments
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   └── administrator_view.ctp
│   │   │   ├── ideas
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── edit.ctp
│   │   │   │   ├── edit.ctp~
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── layouts
│   │   │   │   ├── default.ctp
│   │   │   │   ├── default.ctp~
│   │   │   │   ├── idea.ctp
│   │   │   │   ├── idea.ctp~
│   │   │   │   ├── js
│   │   │   │   │   └── empty
│   │   │   │   ├── project.ctp
│   │   │   │   ├── project.ctp~
│   │   │   │   ├── rss
│   │   │   │   │   └── empty
│   │   │   │   └── xml
│   │   │   │   └── empty
│   │   │   ├── messages
│   │   │   │   ├── add.ctp
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── oldideas
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── view.ctp
│   │   │   │   └── view.ctp~
│   │   │   ├── pages
│   │   │   │   ├── home.ctp
│   │   │   │   ├── home.ctp~
│   │   │   │   └── home.ctp.bak
│   │   │   ├── projectcomments
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   └── administrator_view.ctp
│   │   │   ├── projects
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── edit.ctp
│   │   │   │   ├── edit.ctp~
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── scaffolds
│   │   │   │   └── empty
│   │   │   └── users
│   │   │   ├── add.ctp~
│   │   │   ├── administrator_add.ctp
│   │   │   ├── administrator_edit.ctp
│   │   │   ├── administrator_index.ctp~
│   │   │   ├── administrator_view.ctp
│   │   │   ├── edit.ctp
│   │   │   ├── index.ctp
│   │   │   ├── index.ctp~
│   │   │   ├── login.ctp
│   │   │   ├── login.ctp~
│   │   │   ├── mdtwebaclinit.ctp
│   │   │   ├── register.ctp
│   │   │   ├── userlist.ctp
│   │   │   └── userlist.ctp~
│   │   └── webroot
│   │   ├── css
│   │   │   ├── cake.generic.css
│   │   │   ├── common.css
│   │   │   ├── common.css~
│   │   │   └── generic.css
│   │   ├── css.php
│   │   ├── favicon.ico
│   │   ├── img
│   │   │   ├── cake.icon.gif
│   │   │   ├── cake.power.gif
│   │   │   ├── footer_bg.jpg
│   │   │   ├── gif_calendar.gif
│   │   │   ├── gif_comment.gif
│   │   │   ├── gif_edit.gif
│   │   │   ├── gif_user.gif
│   │   │   ├── gif_version.gif
│   │   │   ├── header_bg_01.jpg
│   │   │   ├── header_bg_02.jpg
│   │   │   ├── header_bg_03.jpg
│   │   │   ├── header_bg_04.jpg
│   │   │   ├── header_bg_side.jpg
│   │   │   ├── header_hi_bg.jpg
│   │   │   ├── header_nav_bg.jpg
│   │   │   ├── header_please_bg.jpg
│   │   │   ├── header_signin.jpg
│   │   │   ├── header_signout.jpg
│   │   │   ├── main_bg.jpg
│   │   │   ├── main_ideas_title.jpg
│   │   │   ├── main_projects_title.jpg
│   │   │   ├── nav_idea.jpg
│   │   │   ├── nav_mesg.jpg
│   │   │   ├── nav_proj.jpg
│   │   │   ├── nav_user.jpg
│   │   │   ├── png_add.png
│   │   │   ├── png_commment.png
│   │   │   ├── png_edit.png
│   │   │   ├── png_old.png
│   │   │   ├── title_idea.jpg
│   │   │   ├── title_ideapool.jpg
│   │   │   ├── title_information.jpg
│   │   │   ├── title_message.jpg
│   │   │   ├── title_messages.jpg
│   │   │   ├── title_project.jpg
│   │   │   ├── title_projects.jpg
│   │   │   └── title_signin.jpg
│   │   ├── index.php
│   │   ├── js
│   │   │   ├── fragment.js
│   │   │   └── vendors.php
│   │   └── test.php
│   ├── cake
│   │   ├── basics.php
│   │   ├── bootstrap.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   ├── paths.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
│   │   ├── console
│   │   │   ├── cake
│   │   │   ├── cake.bat
│   │   │   ├── cake.php
│   │   │   ├── error.php
│   │   │   └── libs
│   │   │   ├── acl.php
│   │   │   ├── api.php
│   │   │   ├── bake.php
│   │   │   ├── console.php
│   │   │   ├── i18n.php
│   │   │   ├── schema.php
│   │   │   ├── shell.php
│   │   │   ├── tasks
│   │   │   │   ├── controller.php
│   │   │   │   ├── db_config.php
│   │   │   │   ├── extract.php
│   │   │   │   ├── model.php
│   │   │   │   ├── plugin.php
│   │   │   │   ├── project.php
│   │   │   │   ├── test.php
│   │   │   │   └── view.php
│   │   │   ├── templates
│   │   │   │   ├── skel
│   │   │   │   │   ├── app_controller.php
│   │   │   │   │   ├── app_helper.php
│   │   │   │   │   ├── app_model.php
│   │   │   │   │   ├── config
│   │   │   │   │   │   ├── acl.ini.php
│   │   │   │   │   │   ├── bootstrap.php
│   │   │   │   │   │   ├── core.php
│   │   │   │   │   │   ├── database.php.default
│   │   │   │   │   │   ├── inflections.php
│   │   │   │   │   │   ├── routes.php
│   │   │   │   │   │   └── sql
│   │   │   │   │   │   ├── db_acl.php
│   │   │   │   │   │   ├── db_acl.sql
│   │   │   │   │   │   ├── i18n.php
│   │   │   │   │   │   ├── i18n.sql
│   │   │   │   │   │   ├── sessions.php
│   │   │   │   │   │   └── sessions.sql
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── pages_controller.php
│   │   │   │   │   ├── index.php
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── eng
│   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── models
│   │   │   │   │   │   ├── behaviors
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── datasources
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── tests
│   │   │   │   │   │   ├── cases
│   │   │   │   │   │   │   ├── behaviors
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── controllers
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── models
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── fixtures
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── groups
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   ├── cache
│   │   │   │   │   │   │   ├── models
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── persistent
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── views
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── logs
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── sessions
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── tests
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── vendors
│   │   │   │   │   │   └── shells
│   │   │   │   │   │   ├── tasks
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── templates
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── views
│   │   │   │   │   │   ├── elements
│   │   │   │   │   │   │   ├── email
│   │   │   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   │   └── text
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── errors
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── layouts
│   │   │   │   │   │   │   ├── ajax.ctp
│   │   │   │   │   │   │   ├── default.ctp
│   │   │   │   │   │   │   ├── email
│   │   │   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   │   └── text
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   ├── flash.ctp
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   ├── rss
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   └── xml
│   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   ├── pages
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── scaffolds
│   │   │   │   │   │   └── empty
│   │   │   │   │   └── webroot
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── cake.generic.css
│   │   │   │   │   ├── css.php
│   │   │   │   │   ├── favicon.ico
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── cake.icon.gif
│   │   │   │   │   │   └── cake.power.gif
│   │   │   │   │   ├── index.php
│   │   │   │   │   ├── js
│   │   │   │   │   │   └── vendors.php
│   │   │   │   │   └── test.php
│   │   │   │   └── views
│   │   │   │   ├── form.ctp
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   └── view.ctp
│   │   │   └── testsuite.php
│   │   ├── dispatcher.php
│   │   ├── libs
│   │   │   ├── cache
│   │   │   │   ├── apc.php
│   │   │   │   ├── file.php
│   │   │   │   ├── memcache.php
│   │   │   │   └── xcache.php
│   │   │   ├── cache.php
│   │   │   ├── cake_log.php
│   │   │   ├── class_registry.php
│   │   │   ├── configure.php
│   │   │   ├── controller
│   │   │   │   ├── app_controller.php
│   │   │   │   ├── component.php
│   │   │   │   ├── components
│   │   │   │   │   ├── acl.php
│   │   │   │   │   ├── auth.php
│   │   │   │   │   ├── cookie.php
│   │   │   │   │   ├── email.php
│   │   │   │   │   ├── request_handler.php
│   │   │   │   │   ├── security.php
│   │   │   │   │   └── session.php
│   │   │   │   ├── controller.php
│   │   │   │   ├── pages_controller.php
│   │   │   │   └── scaffold.php
│   │   │   ├── debugger.php
│   │   │   ├── error.php
│   │   │   ├── file.php
│   │   │   ├── flay.php
│   │   │   ├── folder.php
│   │   │   ├── http_socket.php
│   │   │   ├── i18n.php
│   │   │   ├── inflector.php
│   │   │   ├── l10n.php
│   │   │   ├── magic_db.php
│   │   │   ├── model
│   │   │   │   ├── app_model.php
│   │   │   │   ├── behavior.php
│   │   │   │   ├── behaviors
│   │   │   │   │   ├── acl.php
│   │   │   │   │   ├── containable.php
│   │   │   │   │   ├── translate.php
│   │   │   │   │   └── tree.php
│   │   │   │   ├── connection_manager.php
│   │   │   │   ├── datasources
│   │   │   │   │   ├── datasource.php
│   │   │   │   │   ├── dbo
│   │   │   │   │   │   ├── dbo_adodb.php
│   │   │   │   │   │   ├── dbo_db2.php
│   │   │   │   │   │   ├── dbo_firebird.php
│   │   │   │   │   │   ├── dbo_mssql.php
│   │   │   │   │   │   ├── dbo_mysqli.php
│   │   │   │   │   │   ├── dbo_mysql.php
│   │   │   │   │   │   ├── dbo_odbc.php
│   │   │   │   │   │   ├── dbo_oracle.php
│   │   │   │   │   │   ├── dbo_postgres.php
│   │   │   │   │   │   ├── dbo_sqlite.php
│   │   │   │   │   │   └── dbo_sybase.php
│   │   │   │   │   └── dbo_source.php
│   │   │   │   ├── db_acl.php
│   │   │   │   ├── model.php
│   │   │   │   └── schema.php
│   │   │   ├── multibyte.php
│   │   │   ├── object.php
│   │   │   ├── overloadable.php
│   │   │   ├── overloadable_php4.php
│   │   │   ├── overloadable_php5.php
│   │   │   ├── router.php
│   │   │   ├── sanitize.php
│   │   │   ├── security.php
│   │   │   ├── session.php
│   │   │   ├── set.php
│   │   │   ├── socket.php
│   │   │   ├── string.php
│   │   │   ├── validation.php
│   │   │   ├── view
│   │   │   │   ├── elements
│   │   │   │   │   ├── dump.ctp
│   │   │   │   │   └── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── text
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── errors
│   │   │   │   │   ├── error404.ctp
│   │   │   │   │   ├── missing_action.ctp
│   │   │   │   │   ├── missing_component_class.ctp
│   │   │   │   │   ├── missing_component_file.ctp
│   │   │   │   │   ├── missing_connection.ctp
│   │   │   │   │   ├── missing_controller.ctp
│   │   │   │   │   ├── missing_helper_class.ctp
│   │   │   │   │   ├── missing_helper_file.ctp
│   │   │   │   │   ├── missing_layout.ctp
│   │   │   │   │   ├── missing_model.ctp
│   │   │   │   │   ├── missing_scaffolddb.ctp
│   │   │   │   │   ├── missing_table.ctp
│   │   │   │   │   ├── missing_view.ctp
│   │   │   │   │   ├── private_action.ctp
│   │   │   │   │   └── scaffold_error.ctp
│   │   │   │   ├── helper.php
│   │   │   │   ├── helpers
│   │   │   │   │   ├── ajax.php
│   │   │   │   │   ├── app_helper.php
│   │   │   │   │   ├── cache.php
│   │   │   │   │   ├── form.php
│   │   │   │   │   ├── html.php
│   │   │   │   │   ├── javascript.php
│   │   │   │   │   ├── js.php
│   │   │   │   │   ├── number.php
│   │   │   │   │   ├── paginator.php
│   │   │   │   │   ├── rss.php
│   │   │   │   │   ├── session.php
│   │   │   │   │   ├── text.php
│   │   │   │   │   ├── time.php
│   │   │   │   │   └── xml.php
│   │   │   │   ├── layouts
│   │   │   │   │   ├── ajax.ctp
│   │   │   │   │   ├── default.ctp
│   │   │   │   │   ├── email
│   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   └── text
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── flash.ctp
│   │   │   │   │   ├── js
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── rss
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── xml
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── media.php
│   │   │   │   ├── pages
│   │   │   │   │   └── home.ctp
│   │   │   │   ├── scaffolds
│   │   │   │   │   ├── edit.ctp
│   │   │   │   │   ├── index.ctp
│   │   │   │   │   └── view.ctp
│   │   │   │   ├── theme.php
│   │   │   │   └── view.php
│   │   │   └── xml.php
│   │   ├── LICENSE.txt
│   │   ├── tests
│   │   │   ├── cases
│   │   │   │   ├── basics.test.php
│   │   │   │   ├── console
│   │   │   │   │   ├── cake.test.php
│   │   │   │   │   └── libs
│   │   │   │   │   ├── acl.test.php
│   │   │   │   │   ├── api.test.php
│   │   │   │   │   ├── schema.test.php
│   │   │   │   │   ├── shell.test.php
│   │   │   │   │   └── tasks
│   │   │   │   │   ├── extract.test.php
│   │   │   │   │   └── test.test.php
│   │   │   │   ├── dispatcher.test.php
│   │   │   │   └── libs
│   │   │   │   ├── cache
│   │   │   │   │   ├── apc.test.php
│   │   │   │   │   ├── file.test.php
│   │   │   │   │   ├── memcache.test.php
│   │   │   │   │   └── xcache.test.php
│   │   │   │   ├── cache.test.php
│   │   │   │   ├── cake_log.test.php
│   │   │   │   ├── cake_test_case.test.php
│   │   │   │   ├── cake_test_fixture.test.php
│   │   │   │   ├── class_registry.test.php
│   │   │   │   ├── code_coverage_manager.test.php
│   │   │   │   ├── configure.test.php
│   │   │   │   ├── controller
│   │   │   │   │   ├── components
│   │   │   │   │   │   ├── acl.test.php
│   │   │   │   │   │   ├── auth.test.php
│   │   │   │   │   │   ├── cookie.test.php
│   │   │   │   │   │   ├── email.test.php
│   │   │   │   │   │   ├── request_handler.test.php
│   │   │   │   │   │   ├── security.test.php
│   │   │   │   │   │   └── session.test.php
│   │   │   │   │   ├── component.test.php
│   │   │   │   │   ├── controller_merge_vars.test.php
│   │   │   │   │   ├── controller.test.php
│   │   │   │   │   ├── pages_controller.test.php
│   │   │   │   │   └── scaffold.test.php
│   │   │   │   ├── debugger.test.php
│   │   │   │   ├── error.test.php
│   │   │   │   ├── file.test.php
│   │   │   │   ├── flay.test.php
│   │   │   │   ├── folder.test.php
│   │   │   │   ├── http_socket.test.php
│   │   │   │   ├── i18n.test.php
│   │   │   │   ├── inflector.test.php
│   │   │   │   ├── l10n.test.php
│   │   │   │   ├── magic_db.test.php
│   │   │   │   ├── model
│   │   │   │   │   ├── behaviors
│   │   │   │   │   │   ├── acl.test.php
│   │   │   │   │   │   ├── containable.test.php
│   │   │   │   │   │   ├── translate.test.php
│   │   │   │   │   │   └── tree.test.php
│   │   │   │   │   ├── behavior.test.php
│   │   │   │   │   ├── datasources
│   │   │   │   │   │   ├── dbo
│   │   │   │   │   │   │   ├── dbo_adodb.test.php
│   │   │   │   │   │   │   ├── dbo_mssql.test.php
│   │   │   │   │   │   │   ├── dbo_mysqli.test.php
│   │   │   │   │   │   │   ├── dbo_mysql.test.php
│   │   │   │   │   │   │   ├── dbo_oracle.test.php
│   │   │   │   │   │   │   ├── dbo_postgres.test.php
│   │   │   │   │   │   │   └── dbo_sqlite.test.php
│   │   │   │   │   │   └── dbo_source.test.php
│   │   │   │   │   ├── db_acl.test.php
│   │   │   │   │   ├── model_delete.test.php
│   │   │   │   │   ├── model_integration.test.php
│   │   │   │   │   ├── model_read.test.php
│   │   │   │   │   ├── models.php
│   │   │   │   │   ├── model.test.php
│   │   │   │   │   ├── model_validation.test.php
│   │   │   │   │   ├── model_write.test.php
│   │   │   │   │   └── schema.test.php
│   │   │   │   ├── multibyte.test.php
│   │   │   │   ├── object.test.php
│   │   │   │   ├── overloadable.test.php
│   │   │   │   ├── router.test.php
│   │   │   │   ├── sanitize.test.php
│   │   │   │   ├── security.test.php
│   │   │   │   ├── session.test.php
│   │   │   │   ├── set.test.php
│   │   │   │   ├── socket.test.php
│   │   │   │   ├── string.test.php
│   │   │   │   ├── test_manager.test.php
│   │   │   │   ├── validation.test.php
│   │   │   │   ├── view
│   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── ajax.test.php
│   │   │   │   │   │   ├── cache.test.php
│   │   │   │   │   │   ├── form.test.php
│   │   │   │   │   │   ├── html.test.php
│   │   │   │   │   │   ├── javascript.test.php
│   │   │   │   │   │   ├── js.test.php
│   │   │   │   │   │   ├── number.test.php
│   │   │   │   │   │   ├── paginator.test.php
│   │   │   │   │   │   ├── rss.test.php
│   │   │   │   │   │   ├── session.test.php
│   │   │   │   │   │   ├── text.test.php
│   │   │   │   │   │   ├── time.test.php
│   │   │   │   │   │   └── xml.test.php
│   │   │   │   │   ├── helper.test.php
│   │   │   │   │   ├── theme.test.php
│   │   │   │   │   └── view.test.php
│   │   │   │   └── xml.test.php
│   │   │   ├── fixtures
│   │   │   │   ├── account_fixture.php
│   │   │   │   ├── aco_action_fixture.php
│   │   │   │   ├── aco_fixture.php
│   │   │   │   ├── aco_two_fixture.php
│   │   │   │   ├── ad_fixture.php
│   │   │   │   ├── advertisement_fixture.php
│   │   │   │   ├── after_tree_fixture.php
│   │   │   │   ├── another_article_fixture.php
│   │   │   │   ├── apple_fixture.php
│   │   │   │   ├── aro_fixture.php
│   │   │   │   ├── aros_aco_fixture.php
│   │   │   │   ├── aros_aco_two_fixture.php
│   │   │   │   ├── aro_two_fixture.php
│   │   │   │   ├── article_featured_fixture.php
│   │   │   │   ├── article_featureds_tags_fixture.php
│   │   │   │   ├── article_fixture.php
│   │   │   │   ├── articles_tag_fixture.php
│   │   │   │   ├── attachment_fixture.php
│   │   │   │   ├── author_fixture.php
│   │   │   │   ├── auth_user_custom_field_fixture.php
│   │   │   │   ├── auth_user_fixture.php
│   │   │   │   ├── basket_fixture.php
│   │   │   │   ├── bid_fixture.php
│   │   │   │   ├── binary_test_fixture.php
│   │   │   │   ├── book_fixture.php
│   │   │   │   ├── cache_test_model_fixture.php
│   │   │   │   ├── callback_fixture.php
│   │   │   │   ├── campaign_fixture.php
│   │   │   │   ├── category_fixture.php
│   │   │   │   ├── category_thread_fixture.php
│   │   │   │   ├── cd_fixture.php
│   │   │   │   ├── comment_fixture.php
│   │   │   │   ├── content_account_fixture.php
│   │   │   │   ├── content_fixture.php
│   │   │   │   ├── counter_cache_post_fixture.php
│   │   │   │   ├── counter_cache_post_nonstandard_primary_key_fixture.php
│   │   │   │   ├── counter_cache_user_fixture.php
│   │   │   │   ├── counter_cache_user_nonstandard_primary_key_fixture.php
│   │   │   │   ├── data_test_fixture.php
│   │   │   │   ├── datatype_fixture.php
│   │   │   │   ├── dependency_fixture.php
│   │   │   │   ├── device_fixture.php
│   │   │   │   ├── device_type_category_fixture.php
│   │   │   │   ├── device_type_fixture.php
│   │   │   │   ├── document_directory_fixture.php
│   │   │   │   ├── document_fixture.php
│   │   │   │   ├── exterior_type_category_fixture.php
│   │   │   │   ├── featured_fixture.php
│   │   │   │   ├── feature_set_fixture.php
│   │   │   │   ├── film_file_fixture.php
│   │   │   │   ├── flag_tree_fixture.php
│   │   │   │   ├── fruit_fixture.php
│   │   │   │   ├── fruits_uuid_tag_fixture.php
│   │   │   │   ├── group_update_all_fixture.php
│   │   │   │   ├── home_fixture.php
│   │   │   │   ├── image_fixture.php
│   │   │   │   ├── item_fixture.php
│   │   │   │   ├── items_portfolio_fixture.php
│   │   │   │   ├── join_a_b_fixture.php
│   │   │   │   ├── join_a_c_fixture.php
│   │   │   │   ├── join_a_fixture.php
│   │   │   │   ├── join_b_fixture.php
│   │   │   │   ├── join_c_fixture.php
│   │   │   │   ├── join_thing_fixture.php
│   │   │   │   ├── message_fixture.php
│   │   │   │   ├── my_categories_my_products_fixture.php
│   │   │   │   ├── my_categories_my_users_fixture.php
│   │   │   │   ├── my_category_fixture.php
│   │   │   │   ├── my_product_fixture.php
│   │   │   │   ├── my_user_fixture.php
│   │   │   │   ├── node_fixture.php
│   │   │   │   ├── number_tree_fixture.php
│   │   │   │   ├── number_tree_two_fixture.php
│   │   │   │   ├── numeric_article_fixture.php
│   │   │   │   ├── overall_favorite_fixture.php
│   │   │   │   ├── person_fixture.php
│   │   │   │   ├── portfolio_fixture.php
│   │   │   │   ├── post_fixture.php
│   │   │   │   ├── posts_tag_fixture.php
│   │   │   │   ├── primary_model_fixture.php
│   │   │   │   ├── product_fixture.php
│   │   │   │   ├── product_update_all_fixture.php
│   │   │   │   ├── project_fixture.php
│   │   │   │   ├── sample_fixture.php
│   │   │   │   ├── secondary_model_fixture.php
│   │   │   │   ├── session_fixture.php
│   │   │   │   ├── something_else_fixture.php
│   │   │   │   ├── something_fixture.php
│   │   │   │   ├── stories_tag_fixture.php
│   │   │   │   ├── story_fixture.php
│   │   │   │   ├── syfile_fixture.php
│   │   │   │   ├── tag_fixture.php
│   │   │   │   ├── test_plugin_article_fixture.php
│   │   │   │   ├── test_plugin_comment_fixture.php
│   │   │   │   ├── the_paper_monkies_fixture.php
│   │   │   │   ├── thread_fixture.php
│   │   │   │   ├── translate_article_fixture.php
│   │   │   │   ├── translated_article_fixture.php
│   │   │   │   ├── translated_item_fixture.php
│   │   │   │   ├── translate_fixture.php
│   │   │   │   ├── translate_table_fixture.php
│   │   │   │   ├── unconventional_tree_fixture.php
│   │   │   │   ├── underscore_field_fixture.php
│   │   │   │   ├── user_fixture.php
│   │   │   │   ├── uuid_fixture.php
│   │   │   │   ├── uuiditem_fixture.php
│   │   │   │   ├── uuiditems_uuidportfolio_fixture.php
│   │   │   │   ├── uuiditems_uuidportfolio_numericid_fixture.php
│   │   │   │   ├── uuidportfolio_fixture.php
│   │   │   │   ├── uuid_tag_fixture.php
│   │   │   │   └── uuid_tree_fixture.php
│   │   │   ├── groups
│   │   │   │   ├── acl.group.php
│   │   │   │   ├── cache.group.php
│   │   │   │   ├── components.group.php
│   │   │   │   ├── configure.group.php
│   │   │   │   ├── console.group.php
│   │   │   │   ├── controller.group.php
│   │   │   │   ├── database.group.php
│   │   │   │   ├── helpers.group.php
│   │   │   │   ├── lib.group.php
│   │   │   │   ├── model.group.php
│   │   │   │   ├── no_cross_contamination.group.php
│   │   │   │   ├── no_database.group.php
│   │   │   │   ├── routing_system.group.php
│   │   │   │   ├── socket.group.php
│   │   │   │   ├── test_suite.group.php
│   │   │   │   ├── view.group.php
│   │   │   │   └── xml.group.php
│   │   │   ├── lib
│   │   │   │   ├── cake_reporter.php
│   │   │   │   ├── cake_test_case.php
│   │   │   │   ├── cake_test_fixture.php
│   │   │   │   ├── cake_test_model.php
│   │   │   │   ├── cake_web_test_case.php
│   │   │   │   ├── cli_reporter.php
│   │   │   │   ├── code_coverage_manager.php
│   │   │   │   ├── content.php
│   │   │   │   ├── footer.php
│   │   │   │   ├── header.php
│   │   │   │   ├── simpletest.php
│   │   │   │   ├── test_manager.php
│   │   │   │   └── xdebug.php
│   │   │   └── test_app
│   │   │   ├── config
│   │   │   │   └── acl.ini.php
│   │   │   ├── controllers
│   │   │   │   ├── components
│   │   │   │   │   └── empty
│   │   │   │   ├── tests_apps_controller.php
│   │   │   │   └── tests_apps_posts_controller.php
│   │   │   ├── locale
│   │   │   │   ├── po
│   │   │   │   │   ├── LC_MESSAGES
│   │   │   │   │   │   └── default.po
│   │   │   │   │   └── LC_MONETARY
│   │   │   │   │   └── default.po
│   │   │   │   ├── 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
│   │   │   ├── models
│   │   │   │   ├── behaviors
│   │   │   │   │   ├── empty
│   │   │   │   │   ├── persister_one_behavior.php
│   │   │   │   │   └── persister_two_behavior.php
│   │   │   │   ├── comment.php
│   │   │   │   ├── datasources
│   │   │   │   │   └── empty
│   │   │   │   ├── persister_one.php
│   │   │   │   ├── persister_two.php
│   │   │   │   └── post.php
│   │   │   ├── plugins
│   │   │   │   ├── test_plugin
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   ├── other_component.php
│   │   │   │   │   │   │   ├── plugins_component.php
│   │   │   │   │   │   │   ├── test_plugin_component.php
│   │   │   │   │   │   │   └── test_plugin_other_component.php
│   │   │   │   │   │   └── tests_controller.php
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── po
│   │   │   │   │   │   ├── LC_MESSAGES
│   │   │   │   │   │   │   └── test_plugin.po
│   │   │   │   │   │   └── LC_MONETARY
│   │   │   │   │   │   └── test_plugin.po
│   │   │   │   │   ├── models
│   │   │   │   │   │   └── test_plugin_post.php
│   │   │   │   │   ├── test_plugin_app_controller.php
│   │   │   │   │   ├── test_plugin_app_model.php
│   │   │   │   │   ├── vendors
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   └── test_plugin_asset.css
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   └── cake.icon.gif
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   └── test_plugin
│   │   │   │   │   │   │   └── test.js
│   │   │   │   │   │   ├── sample
│   │   │   │   │   │   │   └── sample_plugin.php
│   │   │   │   │   │   ├── shells
│   │   │   │   │   │   │   ├── example.php
│   │   │   │   │   │   │   ├── tasks
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── templates
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── welcome.php
│   │   │   │   │   └── views
│   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── other_helper.php
│   │   │   │   │   │   └── plugged_helper.php
│   │   │   │   │   ├── layouts
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── tests
│   │   │   │   │   │   ├── index.ctp
│   │   │   │   │   │   └── scaffold.edit.ctp
│   │   │   │   │   └── themed
│   │   │   │   │   └── test_plugin_theme
│   │   │   │   │   ├── layouts
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── tests
│   │   │   │   │   └── index.ctp
│   │   │   │   └── test_plugin_two
│   │   │   │   └── vendors
│   │   │   │   └── shells
│   │   │   │   ├── example.php
│   │   │   │   ├── tasks
│   │   │   │   │   └── empty
│   │   │   │   ├── templates
│   │   │   │   │   └── empty
│   │   │   │   └── welcome.php
│   │   │   ├── tmp
│   │   │   │   └── dir_map
│   │   │   ├── vendors
│   │   │   │   ├── css
│   │   │   │   │   └── test_asset.css
│   │   │   │   ├── img
│   │   │   │   │   └── test.jpg
│   │   │   │   ├── sample
│   │   │   │   │   └── configure_test_vendor_sample.php
│   │   │   │   ├── shells
│   │   │   │   │   ├── sample.php
│   │   │   │   │   ├── tasks
│   │   │   │   │   │   └── empty
│   │   │   │   │   └── templates
│   │   │   │   │   └── empty
│   │   │   │   ├── somename
│   │   │   │   │   └── some.name.php
│   │   │   │   ├── Test
│   │   │   │   │   ├── hello.php
│   │   │   │   │   └── MyTest.php
│   │   │   │   └── welcome.php
│   │   │   └── views
│   │   │   ├── elements
│   │   │   │   ├── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── text
│   │   │   │   │   ├── default.ctp
│   │   │   │   │   └── wide.ctp
│   │   │   │   ├── empty
│   │   │   │   ├── nocache
│   │   │   │   │   ├── contains_nocache.ctp
│   │   │   │   │   ├── plain.ctp
│   │   │   │   │   ├── sub1.ctp
│   │   │   │   │   └── sub2.ctp
│   │   │   │   └── test_element.ctp
│   │   │   ├── errors
│   │   │   │   └── empty
│   │   │   ├── helpers
│   │   │   │   └── empty
│   │   │   ├── layouts
│   │   │   │   ├── ajax2.ctp
│   │   │   │   ├── ajax.ctp
│   │   │   │   ├── cache_empty_sections.ctp
│   │   │   │   ├── cache_layout.ctp
│   │   │   │   ├── default.ctp
│   │   │   │   ├── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   ├── default.ctp
│   │   │   │   │   │   └── thin.ctp
│   │   │   │   │   └── text
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── flash.ctp
│   │   │   │   ├── js
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── multi_cache.ctp
│   │   │   │   ├── rss
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── session_helper.ctp
│   │   │   │   └── xml
│   │   │   │   └── default.ctp
│   │   │   ├── pages
│   │   │   │   ├── empty
│   │   │   │   └── home.ctp
│   │   │   ├── posts
│   │   │   │   ├── cache_empty_sections.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── nocache_multiple_element.ctp
│   │   │   │   ├── scaffold.edit.ctp
│   │   │   │   ├── sequencial_nocache.ctp
│   │   │   │   └── test_nocache_tags.ctp
│   │   │   ├── scaffolds
│   │   │   │   └── empty
│   │   │   ├── tests_apps
│   │   │   │   └── index.ctp
│   │   │   └── themed
│   │   │   └── test_theme
│   │   │   ├── layouts
│   │   │   │   └── default.ctp
│   │   │   └── posts
│   │   │   └── index.ctp
│   │   └── VERSION.txt
│   ├── index.php
│   ├── mdtweb.sql
│   ├── README
│   └── vendors
│   ├── css
│   │   └── empty
│   ├── js
│   │   └── empty
│   ├── shells
│   │   ├── tasks
│   │   │   └── empty
│   │   └── templates
│   │   └── empty
│   └── simpletest
│   ├── authentication.php
│   ├── autorun.php
│   ├── browser.php
│   ├── collector.php
│   ├── compatibility.php
│   ├── cookies.php
│   ├── default_reporter.php
│   ├── detached.php
│   ├── docs
│   │   ├── en
│   │   │   ├── authentication_documentation.html
│   │   │   ├── browser_documentation.html
│   │   │   ├── docs.css
│   │   │   ├── expectation_documentation.html
│   │   │   ├── form_testing_documentation.html
│   │   │   ├── group_test_documentation.html
│   │   │   ├── index.html
│   │   │   ├── mock_objects_documentation.html
│   │   │   ├── overview.html
│   │   │   ├── partial_mocks_documentation.html
│   │   │   ├── reporter_documentation.html
│   │   │   ├── unit_test_documentation.html
│   │   │   └── web_tester_documentation.html
│   │   └── fr
│   │   ├── authentication_documentation.html
│   │   ├── browser_documentation.html
│   │   ├── docs.css
│   │   ├── expectation_documentation.html
│   │   ├── form_testing_documentation.html
│   │   ├── group_test_documentation.html
│   │   ├── index.html
│   │   ├── mock_objects_documentation.html
│   │   ├── overview.html
│   │   ├── partial_mocks_documentation.html
│   │   ├── reporter_documentation.html
│   │   ├── server_stubs_documentation.html
│   │   ├── unit_test_documentation.html
│   │   └── web_tester_documentation.html
│   ├── dumper.php
│   ├── eclipse.php
│   ├── encoding.php
│   ├── errors.php
│   ├── exceptions.php
│   ├── expectation.php
│   ├── extensions
│   │   ├── pear_test_case.php
│   │   ├── phpunit_test_case.php
│   │   ├── testdox
│   │   │   └── test.php
│   │   └── testdox.php
│   ├── form.php
│   ├── frames.php
│   ├── HELP_MY_TESTS_DONT_WORK_ANYMORE
│   ├── http.php
│   ├── invoker.php
│   ├── LICENSE
│   ├── mock_objects.php
│   ├── page.php
│   ├── parser.php
│   ├── README
│   ├── reflection_php4.php
│   ├── reflection_php5.php
│   ├── remote.php
│   ├── reporter.php
│   ├── scorer.php
│   ├── selector.php
│   ├── shell_tester.php
│   ├── simpletest.php
│   ├── socket.php
│   ├── tag.php
│   ├── test
│   │   ├── acceptance_test.php
│   │   ├── adapter_test.php
│   │   ├── all_tests.php
│   │   ├── authentication_test.php
│   │   ├── autorun_test.php
│   │   ├── bad_test_suite.php
│   │   ├── browser_test.php
│   │   ├── collector_test.php
│   │   ├── command_line_test.php
│   │   ├── compatibility_test.php
│   │   ├── cookies_test.php
│   │   ├── detached_test.php
│   │   ├── dumper_test.php
│   │   ├── eclipse_test.php
│   │   ├── encoding_test.php
│   │   ├── errors_test.php
│   │   ├── exceptions_test.php
│   │   ├── expectation_test.php
│   │   ├── form_test.php
│   │   ├── frames_test.php
│   │   ├── http_test.php
│   │   ├── interfaces_test.php
│   │   ├── live_test.php
│   │   ├── mock_objects_test.php
│   │   ├── page_test.php
│   │   ├── parse_error_test.php
│   │   ├── parser_test.php
│   │   ├── reflection_php4_test.php
│   │   ├── reflection_php5_test.php
│   │   ├── remote_test.php
│   │   ├── shell_tester_test.php
│   │   ├── shell_test.php
│   │   ├── simpletest_test.php
│   │   ├── socket_test.php
│   │   ├── support
│   │   │   ├── collector
│   │   │   │   ├── collectable.1
│   │   │   │   └── collectable.2
│   │   │   ├── empty_test_file.php
│   │   │   ├── latin1_sample
│   │   │   ├── spl_examples.php
│   │   │   ├── supplementary_upload_sample.txt
│   │   │   ├── test1.php
│   │   │   └── upload_sample.txt
│   │   ├── tag_test.php
│   │   ├── test_with_parse_error.php
│   │   ├── unit_tester_test.php
│   │   ├── unit_tests.php
│   │   ├── url_test.php
│   │   ├── user_agent_test.php
│   │   ├── visual_test.php
│   │   ├── web_tester_test.php
│   │   └── xml_test.php
│   ├── test_case.php
│   ├── unit_tester.php
│   ├── url.php
│   ├── user_agent.php
│   ├── VERSION
│   ├── web_tester.php
│   └── xml.php
├── mdtwebforadmin
│   ├── app
│   │   ├── config
│   │   │   ├── acl.ini.php
│   │   │   ├── bootstrap.php
│   │   │   ├── core.php
│   │   │   ├── core.php~
│   │   │   ├── database.php
│   │   │   ├── database.php~
│   │   │   ├── database.php.default
│   │   │   ├── inflections.php
│   │   │   ├── routes.php
│   │   │   └── sql
│   │   │   ├── db_acl.php
│   │   │   ├── db_acl.sql
│   │   │   ├── i18n.php
│   │   │   ├── i18n.sql
│   │   │   ├── sessions.php
│   │   │   └── sessions.sql
│   │   ├── controllers
│   │   │   ├── components
│   │   │   │   └── empty
│   │   │   ├── ideacomments_controller.php
│   │   │   ├── ideas_controller.php
│   │   │   ├── ideas_controller.php~
│   │   │   ├── messages_controller.php
│   │   │   ├── oldideas_controller.php
│   │   │   ├── oldideas_controller.php~
│   │   │   ├── projectcomments_controller.php
│   │   │   ├── projectcomments_controller.php~
│   │   │   ├── projects_controller.php
│   │   │   ├── projects_ideas_controller.php
│   │   │   ├── users_controller.php
│   │   │   └── users_controller.php~
│   │   ├── index.php
│   │   ├── locale
│   │   │   └── eng
│   │   │   └── LC_MESSAGES
│   │   │   └── empty
│   │   ├── models
│   │   │   ├── authentication.php
│   │   │   ├── behaviors
│   │   │   │   └── empty
│   │   │   ├── datasources
│   │   │   │   └── empty
│   │   │   ├── ideacomment.php
│   │   │   ├── idea.php
│   │   │   ├── message.php
│   │   │   ├── newideacomment.php
│   │   │   ├── oldideacomment.php
│   │   │   ├── oldidea.php
│   │   │   ├── projectancestor.php
│   │   │   ├── projectcomment.php
│   │   │   ├── project.php
│   │   │   ├── user.php
│   │   │   └── 数据库作业.txt
│   │   ├── plugins
│   │   │   └── empty
│   │   ├── tests
│   │   │   ├── cases
│   │   │   │   ├── behaviors
│   │   │   │   │   └── empty
│   │   │   │   ├── components
│   │   │   │   │   └── empty
│   │   │   │   ├── controllers
│   │   │   │   │   ├── empty
│   │   │   │   │   ├── ideacomments_controller.test.php
│   │   │   │   │   ├── ideas_controller.test.php
│   │   │   │   │   ├── messages_controller.test.php
│   │   │   │   │   ├── oldideas_controller.test.php
│   │   │   │   │   ├── pages_controller.test.php
│   │   │   │   │   ├── products_controller.test.php
│   │   │   │   │   ├── projectancestors_controller.test.php
│   │   │   │   │   ├── projectcomments_controller.test.php
│   │   │   │   │   ├── projects_controller.test.php
│   │   │   │   │   ├── projects_ideas_controller.test.php
│   │   │   │   │   └── users_controller.test.php
│   │   │   │   ├── helpers
│   │   │   │   │   └── empty
│   │   │   │   └── models
│   │   │   │   ├── authentication.test.php
│   │   │   │   ├── empty
│   │   │   │   ├── ideacomment.test.php
│   │   │   │   ├── idea.test.php
│   │   │   │   ├── message.test.php
│   │   │   │   ├── newideacomment.test.php
│   │   │   │   ├── oldideacomment.test.php
│   │   │   │   ├── oldidea.test.php
│   │   │   │   ├── projectancestor.test.php
│   │   │   │   ├── projectcomment.test.php
│   │   │   │   ├── project.test.php
│   │   │   │   └── user.test.php
│   │   │   ├── fixtures
│   │   │   │   ├── authentication_fixture.php
│   │   │   │   ├── empty
│   │   │   │   ├── ideacomment_fixture.php
│   │   │   │   ├── idea_fixture.php
│   │   │   │   ├── message_fixture.php
│   │   │   │   ├── newideacomment_fixture.php
│   │   │   │   ├── oldideacomment_fixture.php
│   │   │   │   ├── oldidea_fixture.php
│   │   │   │   ├── projectancestor_fixture.php
│   │   │   │   ├── projectcomment_fixture.php
│   │   │   │   ├── project_fixture.php
│   │   │   │   └── user_fixture.php
│   │   │   └── groups
│   │   │   └── empty
│   │   ├── tmp
│   │   │   ├── cache
│   │   │   │   ├── models
│   │   │   │   │   ├── cake_model_default_acos
│   │   │   │   │   ├── cake_model_default_aros
│   │   │   │   │   ├── cake_model_default_aros_acos
│   │   │   │   │   ├── cake_model_default_authentications
│   │   │   │   │   ├── cake_model_default_dealers
│   │   │   │   │   ├── cake_model_default_ideacomments
│   │   │   │   │   ├── cake_model_default_ideas
│   │   │   │   │   ├── cake_model_default_mdtweb_list
│   │   │   │   │   ├── cake_model_default_messages
│   │   │   │   │   ├── cake_model_default_newideacomments
│   │   │   │   │   ├── cake_model_default_oldideacomments
│   │   │   │   │   ├── cake_model_default_oldideas
│   │   │   │   │   ├── cake_model_default_products
│   │   │   │   │   ├── cake_model_default_project
│   │   │   │   │   ├── cake_model_default_projectancestors
│   │   │   │   │   ├── cake_model_default_projectcomments
│   │   │   │   │   ├── cake_model_default_projectideas
│   │   │   │   │   ├── cake_model_default_projects
│   │   │   │   │   ├── cake_model_default_projects_ideas
│   │   │   │   │   ├── cake_model_default_projects_users
│   │   │   │   │   ├── cake_model_default_projectusers
│   │   │   │   │   ├── cake_model_default_testdb_list
│   │   │   │   │   ├── cake_model_default_test_list
│   │   │   │   │   ├── cake_model_default_users
│   │   │   │   │   ├── cake_model_test_test_list
│   │   │   │   │   ├── cake_model_test_users
│   │   │   │   │   └── empty
│   │   │   │   ├── persistent
│   │   │   │   │   ├── cake_core_core_paths
│   │   │   │   │   ├── cake_core_default_en_us
│   │   │   │   │   ├── cake_core_default_zh_cn
│   │   │   │   │   ├── cake_core_dir_map
│   │   │   │   │   ├── cake_core_file_map
│   │   │   │   │   ├── cake_core_object_map
│   │   │   │   │   └── empty
│   │   │   │   └── views
│   │   │   │   └── empty
│   │   │   ├── logs
│   │   │   │   ├── debug.log
│   │   │   │   ├── empty
│   │   │   │   └── error.log
│   │   │   ├── sessions
│   │   │   │   └── empty
│   │   │   └── tests
│   │   │   └── empty
│   │   ├── vendors
│   │   │   └── shells
│   │   │   ├── tasks
│   │   │   │   └── empty
│   │   │   └── templates
│   │   │   └── empty
│   │   ├── views
│   │   │   ├── elements
│   │   │   │   └── empty
│   │   │   ├── errors
│   │   │   │   └── empty
│   │   │   ├── helpers
│   │   │   │   └── empty
│   │   │   ├── ideacomments
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   └── administrator_view.ctp
│   │   │   ├── ideas
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── edit.ctp
│   │   │   │   ├── edit.ctp~
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── layouts
│   │   │   │   ├── default.ctp
│   │   │   │   ├── default.ctp~
│   │   │   │   ├── idea.ctp
│   │   │   │   ├── js
│   │   │   │   │   └── empty
│   │   │   │   ├── project.ctp
│   │   │   │   ├── rss
│   │   │   │   │   └── empty
│   │   │   │   └── xml
│   │   │   │   └── empty
│   │   │   ├── messages
│   │   │   │   ├── add.ctp
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── oldideas
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── index.ctp~
│   │   │   │   ├── view.ctp
│   │   │   │   └── view.ctp~
│   │   │   ├── pages
│   │   │   │   ├── home.ctp
│   │   │   │   ├── home.ctp~
│   │   │   │   └── home.ctp.bak
│   │   │   ├── projectcomments
│   │   │   │   ├── add.ctp
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   └── administrator_view.ctp
│   │   │   ├── projects
│   │   │   │   ├── add.ctp
│   │   │   │   ├── add.ctp~
│   │   │   │   ├── administrator_add.ctp
│   │   │   │   ├── administrator_edit.ctp
│   │   │   │   ├── administrator_index.ctp
│   │   │   │   ├── administrator_view.ctp
│   │   │   │   ├── edit.ctp
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── index.ctp.bak
│   │   │   │   ├── view.ctp
│   │   │   │   ├── view.ctp~
│   │   │   │   └── view.ctp.bak
│   │   │   ├── scaffolds
│   │   │   │   └── empty
│   │   │   └── users
│   │   │   ├── add.ctp
│   │   │   ├── edit.ctp
│   │   │   ├── edit.ctp~
│   │   │   ├── index.ctp
│   │   │   ├── login.ctp
│   │   │   ├── mdtwebaclinit.ctp
│   │   │   ├── register.ctp
│   │   │   └── view.ctp
│   │   └── webroot
│   │   ├── css
│   │   │   ├── cake.generic.css
│   │   │   ├── common.css
│   │   │   └── generic.css
│   │   ├── css.php
│   │   ├── favicon.ico
│   │   ├── img
│   │   │   ├── cake.icon.gif
│   │   │   ├── cake.power.gif
│   │   │   ├── footer_bg.jpg
│   │   │   ├── gif_calendar.gif
│   │   │   ├── gif_comment.gif
│   │   │   ├── gif_edit.gif
│   │   │   ├── gif_user.gif
│   │   │   ├── gif_version.gif
│   │   │   ├── header_bg_01.jpg
│   │   │   ├── header_bg_02.jpg
│   │   │   ├── header_bg_03.jpg
│   │   │   ├── header_bg_04.jpg
│   │   │   ├── header_bg_side.jpg
│   │   │   ├── header_hi_bg.jpg
│   │   │   ├── header_nav_bg.jpg
│   │   │   ├── header_please_bg.jpg
│   │   │   ├── header_signin.jpg
│   │   │   ├── header_signout.jpg
│   │   │   ├── main_bg.jpg
│   │   │   ├── main_ideas_title.jpg
│   │   │   ├── main_projects_title.jpg
│   │   │   ├── nav_idea.jpg
│   │   │   ├── nav_mesg.jpg
│   │   │   ├── nav_proj.jpg
│   │   │   ├── nav_user.jpg
│   │   │   ├── png_add.png
│   │   │   ├── png_commment.png
│   │   │   ├── png_edit.png
│   │   │   ├── png_old.png
│   │   │   ├── title_idea.jpg
│   │   │   ├── title_ideapool.jpg
│   │   │   ├── title_information.jpg
│   │   │   ├── title_message.jpg
│   │   │   ├── title_messages.jpg
│   │   │   ├── title_project.jpg
│   │   │   ├── title_projects.jpg
│   │   │   └── title_signin.jpg
│   │   ├── index.php
│   │   ├── js
│   │   │   ├── fragment.js
│   │   │   └── vendors.php
│   │   └── test.php
│   ├── cake
│   │   ├── basics.php
│   │   ├── bootstrap.php
│   │   ├── config
│   │   │   ├── config.php
│   │   │   ├── paths.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
│   │   ├── console
│   │   │   ├── cake
│   │   │   ├── cake.bat
│   │   │   ├── cake.php
│   │   │   ├── error.php
│   │   │   └── libs
│   │   │   ├── acl.php
│   │   │   ├── api.php
│   │   │   ├── bake.php
│   │   │   ├── console.php
│   │   │   ├── i18n.php
│   │   │   ├── schema.php
│   │   │   ├── shell.php
│   │   │   ├── tasks
│   │   │   │   ├── controller.php
│   │   │   │   ├── db_config.php
│   │   │   │   ├── extract.php
│   │   │   │   ├── model.php
│   │   │   │   ├── plugin.php
│   │   │   │   ├── project.php
│   │   │   │   ├── test.php
│   │   │   │   └── view.php
│   │   │   ├── templates
│   │   │   │   ├── skel
│   │   │   │   │   ├── app_controller.php
│   │   │   │   │   ├── app_helper.php
│   │   │   │   │   ├── app_model.php
│   │   │   │   │   ├── config
│   │   │   │   │   │   ├── acl.ini.php
│   │   │   │   │   │   ├── bootstrap.php
│   │   │   │   │   │   ├── core.php
│   │   │   │   │   │   ├── database.php.default
│   │   │   │   │   │   ├── inflections.php
│   │   │   │   │   │   ├── routes.php
│   │   │   │   │   │   └── sql
│   │   │   │   │   │   ├── db_acl.php
│   │   │   │   │   │   ├── db_acl.sql
│   │   │   │   │   │   ├── i18n.php
│   │   │   │   │   │   ├── i18n.sql
│   │   │   │   │   │   ├── sessions.php
│   │   │   │   │   │   └── sessions.sql
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── pages_controller.php
│   │   │   │   │   ├── index.php
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── eng
│   │   │   │   │   │   └── LC_MESSAGES
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── models
│   │   │   │   │   │   ├── behaviors
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── datasources
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── tests
│   │   │   │   │   │   ├── cases
│   │   │   │   │   │   │   ├── behaviors
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── controllers
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── models
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── fixtures
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── groups
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   ├── cache
│   │   │   │   │   │   │   ├── models
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   ├── persistent
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── views
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── logs
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── sessions
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── tests
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── vendors
│   │   │   │   │   │   └── shells
│   │   │   │   │   │   ├── tasks
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── templates
│   │   │   │   │   │   └── empty
│   │   │   │   │   ├── views
│   │   │   │   │   │   ├── elements
│   │   │   │   │   │   │   ├── email
│   │   │   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   │   └── text
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── errors
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── helpers
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   ├── layouts
│   │   │   │   │   │   │   ├── ajax.ctp
│   │   │   │   │   │   │   ├── default.ctp
│   │   │   │   │   │   │   ├── email
│   │   │   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   │   └── text
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   ├── flash.ctp
│   │   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   ├── rss
│   │   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   │   └── xml
│   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   ├── pages
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── scaffolds
│   │   │   │   │   │   └── empty
│   │   │   │   │   └── webroot
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── cake.generic.css
│   │   │   │   │   ├── css.php
│   │   │   │   │   ├── favicon.ico
│   │   │   │   │   ├── img
│   │   │   │   │   │   ├── cake.icon.gif
│   │   │   │   │   │   └── cake.power.gif
│   │   │   │   │   ├── index.php
│   │   │   │   │   ├── js
│   │   │   │   │   │   └── vendors.php
│   │   │   │   │   └── test.php
│   │   │   │   └── views
│   │   │   │   ├── form.ctp
│   │   │   │   ├── home.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   └── view.ctp
│   │   │   └── testsuite.php
│   │   ├── dispatcher.php
│   │   ├── libs
│   │   │   ├── cache
│   │   │   │   ├── apc.php
│   │   │   │   ├── file.php
│   │   │   │   ├── memcache.php
│   │   │   │   └── xcache.php
│   │   │   ├── cache.php
│   │   │   ├── cake_log.php
│   │   │   ├── class_registry.php
│   │   │   ├── configure.php
│   │   │   ├── controller
│   │   │   │   ├── app_controller.php
│   │   │   │   ├── component.php
│   │   │   │   ├── components
│   │   │   │   │   ├── acl.php
│   │   │   │   │   ├── auth.php
│   │   │   │   │   ├── cookie.php
│   │   │   │   │   ├── email.php
│   │   │   │   │   ├── request_handler.php
│   │   │   │   │   ├── security.php
│   │   │   │   │   └── session.php
│   │   │   │   ├── controller.php
│   │   │   │   ├── pages_controller.php
│   │   │   │   └── scaffold.php
│   │   │   ├── debugger.php
│   │   │   ├── error.php
│   │   │   ├── file.php
│   │   │   ├── flay.php
│   │   │   ├── folder.php
│   │   │   ├── http_socket.php
│   │   │   ├── i18n.php
│   │   │   ├── inflector.php
│   │   │   ├── l10n.php
│   │   │   ├── magic_db.php
│   │   │   ├── model
│   │   │   │   ├── app_model.php
│   │   │   │   ├── behavior.php
│   │   │   │   ├── behaviors
│   │   │   │   │   ├── acl.php
│   │   │   │   │   ├── containable.php
│   │   │   │   │   ├── translate.php
│   │   │   │   │   └── tree.php
│   │   │   │   ├── connection_manager.php
│   │   │   │   ├── datasources
│   │   │   │   │   ├── datasource.php
│   │   │   │   │   ├── dbo
│   │   │   │   │   │   ├── dbo_adodb.php
│   │   │   │   │   │   ├── dbo_db2.php
│   │   │   │   │   │   ├── dbo_firebird.php
│   │   │   │   │   │   ├── dbo_mssql.php
│   │   │   │   │   │   ├── dbo_mysqli.php
│   │   │   │   │   │   ├── dbo_mysql.php
│   │   │   │   │   │   ├── dbo_odbc.php
│   │   │   │   │   │   ├── dbo_oracle.php
│   │   │   │   │   │   ├── dbo_postgres.php
│   │   │   │   │   │   ├── dbo_sqlite.php
│   │   │   │   │   │   └── dbo_sybase.php
│   │   │   │   │   └── dbo_source.php
│   │   │   │   ├── db_acl.php
│   │   │   │   ├── model.php
│   │   │   │   └── schema.php
│   │   │   ├── multibyte.php
│   │   │   ├── object.php
│   │   │   ├── overloadable.php
│   │   │   ├── overloadable_php4.php
│   │   │   ├── overloadable_php5.php
│   │   │   ├── router.php
│   │   │   ├── sanitize.php
│   │   │   ├── security.php
│   │   │   ├── session.php
│   │   │   ├── set.php
│   │   │   ├── socket.php
│   │   │   ├── string.php
│   │   │   ├── validation.php
│   │   │   ├── view
│   │   │   │   ├── elements
│   │   │   │   │   ├── dump.ctp
│   │   │   │   │   └── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── text
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── errors
│   │   │   │   │   ├── error404.ctp
│   │   │   │   │   ├── missing_action.ctp
│   │   │   │   │   ├── missing_component_class.ctp
│   │   │   │   │   ├── missing_component_file.ctp
│   │   │   │   │   ├── missing_connection.ctp
│   │   │   │   │   ├── missing_controller.ctp
│   │   │   │   │   ├── missing_helper_class.ctp
│   │   │   │   │   ├── missing_helper_file.ctp
│   │   │   │   │   ├── missing_layout.ctp
│   │   │   │   │   ├── missing_model.ctp
│   │   │   │   │   ├── missing_scaffolddb.ctp
│   │   │   │   │   ├── missing_table.ctp
│   │   │   │   │   ├── missing_view.ctp
│   │   │   │   │   ├── private_action.ctp
│   │   │   │   │   └── scaffold_error.ctp
│   │   │   │   ├── helper.php
│   │   │   │   ├── helpers
│   │   │   │   │   ├── ajax.php
│   │   │   │   │   ├── app_helper.php
│   │   │   │   │   ├── cache.php
│   │   │   │   │   ├── form.php
│   │   │   │   │   ├── html.php
│   │   │   │   │   ├── javascript.php
│   │   │   │   │   ├── js.php
│   │   │   │   │   ├── number.php
│   │   │   │   │   ├── paginator.php
│   │   │   │   │   ├── rss.php
│   │   │   │   │   ├── session.php
│   │   │   │   │   ├── text.php
│   │   │   │   │   ├── time.php
│   │   │   │   │   └── xml.php
│   │   │   │   ├── layouts
│   │   │   │   │   ├── ajax.ctp
│   │   │   │   │   ├── default.ctp
│   │   │   │   │   ├── email
│   │   │   │   │   │   ├── html
│   │   │   │   │   │   │   └── default.ctp
│   │   │   │   │   │   └── text
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── flash.ctp
│   │   │   │   │   ├── js
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── rss
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── xml
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── media.php
│   │   │   │   ├── pages
│   │   │   │   │   └── home.ctp
│   │   │   │   ├── scaffolds
│   │   │   │   │   ├── edit.ctp
│   │   │   │   │   ├── index.ctp
│   │   │   │   │   └── view.ctp
│   │   │   │   ├── theme.php
│   │   │   │   └── view.php
│   │   │   └── xml.php
│   │   ├── LICENSE.txt
│   │   ├── tests
│   │   │   ├── cases
│   │   │   │   ├── basics.test.php
│   │   │   │   ├── console
│   │   │   │   │   ├── cake.test.php
│   │   │   │   │   └── libs
│   │   │   │   │   ├── acl.test.php
│   │   │   │   │   ├── api.test.php
│   │   │   │   │   ├── schema.test.php
│   │   │   │   │   ├── shell.test.php
│   │   │   │   │   └── tasks
│   │   │   │   │   ├── extract.test.php
│   │   │   │   │   └── test.test.php
│   │   │   │   ├── dispatcher.test.php
│   │   │   │   └── libs
│   │   │   │   ├── cache
│   │   │   │   │   ├── apc.test.php
│   │   │   │   │   ├── file.test.php
│   │   │   │   │   ├── memcache.test.php
│   │   │   │   │   └── xcache.test.php
│   │   │   │   ├── cache.test.php
│   │   │   │   ├── cake_log.test.php
│   │   │   │   ├── cake_test_case.test.php
│   │   │   │   ├── cake_test_fixture.test.php
│   │   │   │   ├── class_registry.test.php
│   │   │   │   ├── code_coverage_manager.test.php
│   │   │   │   ├── configure.test.php
│   │   │   │   ├── controller
│   │   │   │   │   ├── components
│   │   │   │   │   │   ├── acl.test.php
│   │   │   │   │   │   ├── auth.test.php
│   │   │   │   │   │   ├── cookie.test.php
│   │   │   │   │   │   ├── email.test.php
│   │   │   │   │   │   ├── request_handler.test.php
│   │   │   │   │   │   ├── security.test.php
│   │   │   │   │   │   └── session.test.php
│   │   │   │   │   ├── component.test.php
│   │   │   │   │   ├── controller_merge_vars.test.php
│   │   │   │   │   ├── controller.test.php
│   │   │   │   │   ├── pages_controller.test.php
│   │   │   │   │   └── scaffold.test.php
│   │   │   │   ├── debugger.test.php
│   │   │   │   ├── error.test.php
│   │   │   │   ├── file.test.php
│   │   │   │   ├── flay.test.php
│   │   │   │   ├── folder.test.php
│   │   │   │   ├── http_socket.test.php
│   │   │   │   ├── i18n.test.php
│   │   │   │   ├── inflector.test.php
│   │   │   │   ├── l10n.test.php
│   │   │   │   ├── magic_db.test.php
│   │   │   │   ├── model
│   │   │   │   │   ├── behaviors
│   │   │   │   │   │   ├── acl.test.php
│   │   │   │   │   │   ├── containable.test.php
│   │   │   │   │   │   ├── translate.test.php
│   │   │   │   │   │   └── tree.test.php
│   │   │   │   │   ├── behavior.test.php
│   │   │   │   │   ├── datasources
│   │   │   │   │   │   ├── dbo
│   │   │   │   │   │   │   ├── dbo_adodb.test.php
│   │   │   │   │   │   │   ├── dbo_mssql.test.php
│   │   │   │   │   │   │   ├── dbo_mysqli.test.php
│   │   │   │   │   │   │   ├── dbo_mysql.test.php
│   │   │   │   │   │   │   ├── dbo_oracle.test.php
│   │   │   │   │   │   │   ├── dbo_postgres.test.php
│   │   │   │   │   │   │   └── dbo_sqlite.test.php
│   │   │   │   │   │   └── dbo_source.test.php
│   │   │   │   │   ├── db_acl.test.php
│   │   │   │   │   ├── model_delete.test.php
│   │   │   │   │   ├── model_integration.test.php
│   │   │   │   │   ├── model_read.test.php
│   │   │   │   │   ├── models.php
│   │   │   │   │   ├── model.test.php
│   │   │   │   │   ├── model_validation.test.php
│   │   │   │   │   ├── model_write.test.php
│   │   │   │   │   └── schema.test.php
│   │   │   │   ├── multibyte.test.php
│   │   │   │   ├── object.test.php
│   │   │   │   ├── overloadable.test.php
│   │   │   │   ├── router.test.php
│   │   │   │   ├── sanitize.test.php
│   │   │   │   ├── security.test.php
│   │   │   │   ├── session.test.php
│   │   │   │   ├── set.test.php
│   │   │   │   ├── socket.test.php
│   │   │   │   ├── string.test.php
│   │   │   │   ├── test_manager.test.php
│   │   │   │   ├── validation.test.php
│   │   │   │   ├── view
│   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── ajax.test.php
│   │   │   │   │   │   ├── cache.test.php
│   │   │   │   │   │   ├── form.test.php
│   │   │   │   │   │   ├── html.test.php
│   │   │   │   │   │   ├── javascript.test.php
│   │   │   │   │   │   ├── js.test.php
│   │   │   │   │   │   ├── number.test.php
│   │   │   │   │   │   ├── paginator.test.php
│   │   │   │   │   │   ├── rss.test.php
│   │   │   │   │   │   ├── session.test.php
│   │   │   │   │   │   ├── text.test.php
│   │   │   │   │   │   ├── time.test.php
│   │   │   │   │   │   └── xml.test.php
│   │   │   │   │   ├── helper.test.php
│   │   │   │   │   ├── theme.test.php
│   │   │   │   │   └── view.test.php
│   │   │   │   └── xml.test.php
│   │   │   ├── fixtures
│   │   │   │   ├── account_fixture.php
│   │   │   │   ├── aco_action_fixture.php
│   │   │   │   ├── aco_fixture.php
│   │   │   │   ├── aco_two_fixture.php
│   │   │   │   ├── ad_fixture.php
│   │   │   │   ├── advertisement_fixture.php
│   │   │   │   ├── after_tree_fixture.php
│   │   │   │   ├── another_article_fixture.php
│   │   │   │   ├── apple_fixture.php
│   │   │   │   ├── aro_fixture.php
│   │   │   │   ├── aros_aco_fixture.php
│   │   │   │   ├── aros_aco_two_fixture.php
│   │   │   │   ├── aro_two_fixture.php
│   │   │   │   ├── article_featured_fixture.php
│   │   │   │   ├── article_featureds_tags_fixture.php
│   │   │   │   ├── article_fixture.php
│   │   │   │   ├── articles_tag_fixture.php
│   │   │   │   ├── attachment_fixture.php
│   │   │   │   ├── author_fixture.php
│   │   │   │   ├── auth_user_custom_field_fixture.php
│   │   │   │   ├── auth_user_fixture.php
│   │   │   │   ├── basket_fixture.php
│   │   │   │   ├── bid_fixture.php
│   │   │   │   ├── binary_test_fixture.php
│   │   │   │   ├── book_fixture.php
│   │   │   │   ├── cache_test_model_fixture.php
│   │   │   │   ├── callback_fixture.php
│   │   │   │   ├── campaign_fixture.php
│   │   │   │   ├── category_fixture.php
│   │   │   │   ├── category_thread_fixture.php
│   │   │   │   ├── cd_fixture.php
│   │   │   │   ├── comment_fixture.php
│   │   │   │   ├── content_account_fixture.php
│   │   │   │   ├── content_fixture.php
│   │   │   │   ├── counter_cache_post_fixture.php
│   │   │   │   ├── counter_cache_post_nonstandard_primary_key_fixture.php
│   │   │   │   ├── counter_cache_user_fixture.php
│   │   │   │   ├── counter_cache_user_nonstandard_primary_key_fixture.php
│   │   │   │   ├── data_test_fixture.php
│   │   │   │   ├── datatype_fixture.php
│   │   │   │   ├── dependency_fixture.php
│   │   │   │   ├── device_fixture.php
│   │   │   │   ├── device_type_category_fixture.php
│   │   │   │   ├── device_type_fixture.php
│   │   │   │   ├── document_directory_fixture.php
│   │   │   │   ├── document_fixture.php
│   │   │   │   ├── exterior_type_category_fixture.php
│   │   │   │   ├── featured_fixture.php
│   │   │   │   ├── feature_set_fixture.php
│   │   │   │   ├── film_file_fixture.php
│   │   │   │   ├── flag_tree_fixture.php
│   │   │   │   ├── fruit_fixture.php
│   │   │   │   ├── fruits_uuid_tag_fixture.php
│   │   │   │   ├── group_update_all_fixture.php
│   │   │   │   ├── home_fixture.php
│   │   │   │   ├── image_fixture.php
│   │   │   │   ├── item_fixture.php
│   │   │   │   ├── items_portfolio_fixture.php
│   │   │   │   ├── join_a_b_fixture.php
│   │   │   │   ├── join_a_c_fixture.php
│   │   │   │   ├── join_a_fixture.php
│   │   │   │   ├── join_b_fixture.php
│   │   │   │   ├── join_c_fixture.php
│   │   │   │   ├── join_thing_fixture.php
│   │   │   │   ├── message_fixture.php
│   │   │   │   ├── my_categories_my_products_fixture.php
│   │   │   │   ├── my_categories_my_users_fixture.php
│   │   │   │   ├── my_category_fixture.php
│   │   │   │   ├── my_product_fixture.php
│   │   │   │   ├── my_user_fixture.php
│   │   │   │   ├── node_fixture.php
│   │   │   │   ├── number_tree_fixture.php
│   │   │   │   ├── number_tree_two_fixture.php
│   │   │   │   ├── numeric_article_fixture.php
│   │   │   │   ├── overall_favorite_fixture.php
│   │   │   │   ├── person_fixture.php
│   │   │   │   ├── portfolio_fixture.php
│   │   │   │   ├── post_fixture.php
│   │   │   │   ├── posts_tag_fixture.php
│   │   │   │   ├── primary_model_fixture.php
│   │   │   │   ├── product_fixture.php
│   │   │   │   ├── product_update_all_fixture.php
│   │   │   │   ├── project_fixture.php
│   │   │   │   ├── sample_fixture.php
│   │   │   │   ├── secondary_model_fixture.php
│   │   │   │   ├── session_fixture.php
│   │   │   │   ├── something_else_fixture.php
│   │   │   │   ├── something_fixture.php
│   │   │   │   ├── stories_tag_fixture.php
│   │   │   │   ├── story_fixture.php
│   │   │   │   ├── syfile_fixture.php
│   │   │   │   ├── tag_fixture.php
│   │   │   │   ├── test_plugin_article_fixture.php
│   │   │   │   ├── test_plugin_comment_fixture.php
│   │   │   │   ├── the_paper_monkies_fixture.php
│   │   │   │   ├── thread_fixture.php
│   │   │   │   ├── translate_article_fixture.php
│   │   │   │   ├── translated_article_fixture.php
│   │   │   │   ├── translated_item_fixture.php
│   │   │   │   ├── translate_fixture.php
│   │   │   │   ├── translate_table_fixture.php
│   │   │   │   ├── unconventional_tree_fixture.php
│   │   │   │   ├── underscore_field_fixture.php
│   │   │   │   ├── user_fixture.php
│   │   │   │   ├── uuid_fixture.php
│   │   │   │   ├── uuiditem_fixture.php
│   │   │   │   ├── uuiditems_uuidportfolio_fixture.php
│   │   │   │   ├── uuiditems_uuidportfolio_numericid_fixture.php
│   │   │   │   ├── uuidportfolio_fixture.php
│   │   │   │   ├── uuid_tag_fixture.php
│   │   │   │   └── uuid_tree_fixture.php
│   │   │   ├── groups
│   │   │   │   ├── acl.group.php
│   │   │   │   ├── cache.group.php
│   │   │   │   ├── components.group.php
│   │   │   │   ├── configure.group.php
│   │   │   │   ├── console.group.php
│   │   │   │   ├── controller.group.php
│   │   │   │   ├── database.group.php
│   │   │   │   ├── helpers.group.php
│   │   │   │   ├── lib.group.php
│   │   │   │   ├── model.group.php
│   │   │   │   ├── no_cross_contamination.group.php
│   │   │   │   ├── no_database.group.php
│   │   │   │   ├── routing_system.group.php
│   │   │   │   ├── socket.group.php
│   │   │   │   ├── test_suite.group.php
│   │   │   │   ├── view.group.php
│   │   │   │   └── xml.group.php
│   │   │   ├── lib
│   │   │   │   ├── cake_reporter.php
│   │   │   │   ├── cake_test_case.php
│   │   │   │   ├── cake_test_fixture.php
│   │   │   │   ├── cake_test_model.php
│   │   │   │   ├── cake_web_test_case.php
│   │   │   │   ├── cli_reporter.php
│   │   │   │   ├── code_coverage_manager.php
│   │   │   │   ├── content.php
│   │   │   │   ├── footer.php
│   │   │   │   ├── header.php
│   │   │   │   ├── simpletest.php
│   │   │   │   ├── test_manager.php
│   │   │   │   └── xdebug.php
│   │   │   └── test_app
│   │   │   ├── config
│   │   │   │   └── acl.ini.php
│   │   │   ├── controllers
│   │   │   │   ├── components
│   │   │   │   │   └── empty
│   │   │   │   ├── tests_apps_controller.php
│   │   │   │   └── tests_apps_posts_controller.php
│   │   │   ├── locale
│   │   │   │   ├── po
│   │   │   │   │   ├── LC_MESSAGES
│   │   │   │   │   │   └── default.po
│   │   │   │   │   └── LC_MONETARY
│   │   │   │   │   └── default.po
│   │   │   │   ├── 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
│   │   │   ├── models
│   │   │   │   ├── behaviors
│   │   │   │   │   ├── empty
│   │   │   │   │   ├── persister_one_behavior.php
│   │   │   │   │   └── persister_two_behavior.php
│   │   │   │   ├── comment.php
│   │   │   │   ├── datasources
│   │   │   │   │   └── empty
│   │   │   │   ├── persister_one.php
│   │   │   │   ├── persister_two.php
│   │   │   │   └── post.php
│   │   │   ├── plugins
│   │   │   │   ├── test_plugin
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   ├── components
│   │   │   │   │   │   │   ├── other_component.php
│   │   │   │   │   │   │   ├── plugins_component.php
│   │   │   │   │   │   │   ├── test_plugin_component.php
│   │   │   │   │   │   │   └── test_plugin_other_component.php
│   │   │   │   │   │   └── tests_controller.php
│   │   │   │   │   ├── locale
│   │   │   │   │   │   └── po
│   │   │   │   │   │   ├── LC_MESSAGES
│   │   │   │   │   │   │   └── test_plugin.po
│   │   │   │   │   │   └── LC_MONETARY
│   │   │   │   │   │   └── test_plugin.po
│   │   │   │   │   ├── models
│   │   │   │   │   │   └── test_plugin_post.php
│   │   │   │   │   ├── test_plugin_app_controller.php
│   │   │   │   │   ├── test_plugin_app_model.php
│   │   │   │   │   ├── vendors
│   │   │   │   │   │   ├── css
│   │   │   │   │   │   │   └── test_plugin_asset.css
│   │   │   │   │   │   ├── img
│   │   │   │   │   │   │   └── cake.icon.gif
│   │   │   │   │   │   ├── js
│   │   │   │   │   │   │   └── test_plugin
│   │   │   │   │   │   │   └── test.js
│   │   │   │   │   │   ├── sample
│   │   │   │   │   │   │   └── sample_plugin.php
│   │   │   │   │   │   ├── shells
│   │   │   │   │   │   │   ├── example.php
│   │   │   │   │   │   │   ├── tasks
│   │   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   │   └── templates
│   │   │   │   │   │   │   └── empty
│   │   │   │   │   │   └── welcome.php
│   │   │   │   │   └── views
│   │   │   │   │   ├── helpers
│   │   │   │   │   │   ├── other_helper.php
│   │   │   │   │   │   └── plugged_helper.php
│   │   │   │   │   ├── layouts
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   ├── tests
│   │   │   │   │   │   ├── index.ctp
│   │   │   │   │   │   └── scaffold.edit.ctp
│   │   │   │   │   └── themed
│   │   │   │   │   └── test_plugin_theme
│   │   │   │   │   ├── layouts
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── tests
│   │   │   │   │   └── index.ctp
│   │   │   │   └── test_plugin_two
│   │   │   │   └── vendors
│   │   │   │   └── shells
│   │   │   │   ├── example.php
│   │   │   │   ├── tasks
│   │   │   │   │   └── empty
│   │   │   │   ├── templates
│   │   │   │   │   └── empty
│   │   │   │   └── welcome.php
│   │   │   ├── tmp
│   │   │   │   └── dir_map
│   │   │   ├── vendors
│   │   │   │   ├── css
│   │   │   │   │   └── test_asset.css
│   │   │   │   ├── img
│   │   │   │   │   └── test.jpg
│   │   │   │   ├── sample
│   │   │   │   │   └── configure_test_vendor_sample.php
│   │   │   │   ├── shells
│   │   │   │   │   ├── sample.php
│   │   │   │   │   ├── tasks
│   │   │   │   │   │   └── empty
│   │   │   │   │   └── templates
│   │   │   │   │   └── empty
│   │   │   │   ├── somename
│   │   │   │   │   └── some.name.php
│   │   │   │   ├── Test
│   │   │   │   │   ├── hello.php
│   │   │   │   │   └── MyTest.php
│   │   │   │   └── welcome.php
│   │   │   └── views
│   │   │   ├── elements
│   │   │   │   ├── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   └── default.ctp
│   │   │   │   │   └── text
│   │   │   │   │   ├── default.ctp
│   │   │   │   │   └── wide.ctp
│   │   │   │   ├── empty
│   │   │   │   ├── nocache
│   │   │   │   │   ├── contains_nocache.ctp
│   │   │   │   │   ├── plain.ctp
│   │   │   │   │   ├── sub1.ctp
│   │   │   │   │   └── sub2.ctp
│   │   │   │   └── test_element.ctp
│   │   │   ├── errors
│   │   │   │   └── empty
│   │   │   ├── helpers
│   │   │   │   └── empty
│   │   │   ├── layouts
│   │   │   │   ├── ajax2.ctp
│   │   │   │   ├── ajax.ctp
│   │   │   │   ├── cache_empty_sections.ctp
│   │   │   │   ├── cache_layout.ctp
│   │   │   │   ├── default.ctp
│   │   │   │   ├── email
│   │   │   │   │   ├── html
│   │   │   │   │   │   ├── default.ctp
│   │   │   │   │   │   └── thin.ctp
│   │   │   │   │   └── text
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── flash.ctp
│   │   │   │   ├── js
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── multi_cache.ctp
│   │   │   │   ├── rss
│   │   │   │   │   └── default.ctp
│   │   │   │   ├── session_helper.ctp
│   │   │   │   └── xml
│   │   │   │   └── default.ctp
│   │   │   ├── pages
│   │   │   │   ├── empty
│   │   │   │   └── home.ctp
│   │   │   ├── posts
│   │   │   │   ├── cache_empty_sections.ctp
│   │   │   │   ├── index.ctp
│   │   │   │   ├── nocache_multiple_element.ctp
│   │   │   │   ├── scaffold.edit.ctp
│   │   │   │   ├── sequencial_nocache.ctp
│   │   │   │   └── test_nocache_tags.ctp
│   │   │   ├── scaffolds
│   │   │   │   └── empty
│   │   │   ├── tests_apps
│   │   │   │   └── index.ctp
│   │   │   └── themed
│   │   │   └── test_theme
│   │   │   ├── layouts
│   │   │   │   └── default.ctp
│   │   │   └── posts
│   │   │   └── index.ctp
│   │   └── VERSION.txt
│   ├── index.php
│   ├── mdtweb.sql
│   ├── README
│   └── vendors
│   ├── css
│   │   └── empty
│   ├── js
│   │   └── empty
│   ├── shells
│   │   ├── tasks
│   │   │   └── empty
│   │   └── templates
│   │   └── empty
│   └── simpletest
│   ├── authentication.php
│   ├── autorun.php
│   ├── browser.php
│   ├── collector.php
│   ├── compatibility.php
│   ├── cookies.php
│   ├── default_reporter.php
│   ├── detached.php
│   ├── docs
│   │   ├── en
│   │   │   ├── authentication_documentation.html
│   │   │   ├── browser_documentation.html
│   │   │   ├── docs.css
│   │   │   ├── expectation_documentation.html
│   │   │   ├── form_testing_documentation.html
│   │   │   ├── group_test_documentation.html
│   │   │   ├── index.html
│   │   │   ├── mock_objects_documentation.html
│   │   │   ├── overview.html
│   │   │   ├── partial_mocks_documentation.html
│   │   │   ├── reporter_documentation.html
│   │   │   ├── unit_test_documentation.html
│   │   │   └── web_tester_documentation.html
│   │   └── fr
│   │   ├── authentication_documentation.html
│   │   ├── browser_documentation.html
│   │   ├── docs.css
│   │   ├── expectation_documentation.html
│   │   ├── form_testing_documentation.html
│   │   ├── group_test_documentation.html
│   │   ├── index.html
│   │   ├── mock_objects_documentation.html
│   │   ├── overview.html
│   │   ├── partial_mocks_documentation.html
│   │   ├── reporter_documentation.html
│   │   ├── server_stubs_documentation.html
│   │   ├── unit_test_documentation.html
│   │   └── web_tester_documentation.html
│   ├── dumper.php
│   ├── eclipse.php
│   ├── encoding.php
│   ├── errors.php
│   ├── exceptions.php
│   ├── expectation.php
│   ├── extensions
│   │   ├── pear_test_case.php
│   │   ├── phpunit_test_case.php
│   │   ├── testdox
│   │   │   └── test.php
│   │   └── testdox.php
│   ├── form.php
│   ├── frames.php
│   ├── HELP_MY_TESTS_DONT_WORK_ANYMORE
│   ├── http.php
│   ├── invoker.php
│   ├── LICENSE
│   ├── mock_objects.php
│   ├── page.php
│   ├── parser.php
│   ├── README
│   ├── reflection_php4.php
│   ├── reflection_php5.php
│   ├── remote.php
│   ├── reporter.php
│   ├── scorer.php
│   ├── selector.php
│   ├── shell_tester.php
│   ├── simpletest.php
│   ├── socket.php
│   ├── tag.php
│   ├── test
│   │   ├── acceptance_test.php
│   │   ├── adapter_test.php
│   │   ├── all_tests.php
│   │   ├── authentication_test.php
│   │   ├── autorun_test.php
│   │   ├── bad_test_suite.php
│   │   ├── browser_test.php
│   │   ├── collector_test.php
│   │   ├── command_line_test.php
│   │   ├── compatibility_test.php
│   │   ├── cookies_test.php
│   │   ├── detached_test.php
│   │   ├── dumper_test.php
│   │   ├── eclipse_test.php
│   │   ├── encoding_test.php
│   │   ├── errors_test.php
│   │   ├── exceptions_test.php
│   │   ├── expectation_test.php
│   │   ├── form_test.php
│   │   ├── frames_test.php
│   │   ├── http_test.php
│   │   ├── interfaces_test.php
│   │   ├── live_test.php
│   │   ├── mock_objects_test.php
│   │   ├── page_test.php
│   │   ├── parse_error_test.php
│   │   ├── parser_test.php
│   │   ├── reflection_php4_test.php
│   │   ├── reflection_php5_test.php
│   │   ├── remote_test.php
│   │   ├── shell_tester_test.php
│   │   ├── shell_test.php
│   │   ├── simpletest_test.php
│   │   ├── socket_test.php
│   │   ├── support
│   │   │   ├── collector
│   │   │   │   ├── collectable.1
│   │   │   │   └── collectable.2
│   │   │   ├── empty_test_file.php
│   │   │   ├── latin1_sample
│   │   │   ├── spl_examples.php
│   │   │   ├── supplementary_upload_sample.txt
│   │   │   ├── test1.php
│   │   │   └── upload_sample.txt
│   │   ├── tag_test.php
│   │   ├── test_with_parse_error.php
│   │   ├── unit_tester_test.php
│   │   ├── unit_tests.php
│   │   ├── url_test.php
│   │   ├── user_agent_test.php
│   │   ├── visual_test.php
│   │   ├── web_tester_test.php
│   │   └── xml_test.php
│   ├── test_case.php
│   ├── unit_tester.php
│   ├── url.php
│   ├── user_agent.php
│   ├── VERSION
│   ├── web_tester.php
│   └── xml.php
├── mdtweb.sql
├── 数据库课程设计实现报告.doc
└── 数据库课程设计设计报告.doc

618 directories, 1999 files

标签:

实例下载地址

一个利用cakephp开发的实例附带数据库.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警