Xdebug is not installed
24 |You must install Xdebug to use the CakePHP(tm) Code Coverage Analyzation.
25 | 26 |├── plugins └── empty ├── app ├── libs │ └── empty ├── plugins │ └── empty ├── tmp │ ├── logs │ │ └── empty │ ├── sessions │ │ └── empty │ ├── tests │ │ └── empty │ └── cache │ │ ├── models │ │ ├── empty │ │ └── cake_model_default_observatorio_web_piinfo_list │ │ ├── views │ │ └── empty │ │ └── persistent │ │ ├── empty │ │ ├── cake_core_default_en-us │ │ └── cake_core_object_map ├── tests │ ├── groups │ │ └── empty │ ├── cases │ │ ├── models │ │ │ ├── empty │ │ │ └── user.test.php │ │ ├── behaviors │ │ │ └── empty │ │ ├── components │ │ │ └── empty │ │ ├── controllers │ │ │ ├── empty │ │ │ ├── pages_controller.test.php │ │ │ └── users_controller.test.php │ │ └── helpers │ │ │ └── empty │ └── fixtures │ │ ├── empty │ │ ├── tutor_fixture.php │ │ ├── visita_fixture.php │ │ ├── estudiante_fixture.php │ │ ├── inversionista_fixture.php │ │ └── profesor_fixture.php ├── views │ ├── errors │ │ └── empty │ ├── helpers │ │ └── empty │ ├── pages │ │ ├── empty │ │ └── about.ctp │ ├── elements │ │ ├── empty │ │ ├── email │ │ │ ├── html │ │ │ │ ├── empty │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ ├── empty │ │ │ │ └── default.ctp │ │ ├── flash_success.ctp │ │ ├── flash_warning.ctp │ │ ├── feed.ctp │ │ ├── profesor_form.ctp │ │ ├── form_pauta.ctp │ │ ├── project-avatar.ctp │ │ ├── show_pauta.ctp │ │ ├── footer.ctp │ │ └── concepto_comparacion.ctp │ ├── layouts │ │ ├── js │ │ │ └── empty │ │ ├── rss │ │ │ └── empty │ │ ├── xml │ │ │ └── empty │ │ └── email │ │ │ ├── html │ │ │ └── empty │ │ │ └── text │ │ │ └── empty │ ├── noticias │ │ └── index.ctp │ ├── scaffolds │ │ └── empty │ ├── users │ │ ├── check_login.ctp │ │ ├── project.ctp │ │ └── show.ctp │ ├── proyectos │ │ ├── index.ctp │ │ └── pauta.ctp │ ├── propuestas │ │ ├── addfilter.ctp │ │ ├── add.ctp │ │ ├── index.ctp │ │ └── compare.ctp │ └── estudiantes │ │ └── index.ctp ├── webroot │ ├── files │ │ ├── empty │ │ ├── proyecto │ │ │ └── logo │ │ │ │ └── 7 │ │ │ │ ├── logo.png │ │ │ │ ├── 11014999_10203691469263614_1254360964083598066_n.jpg │ │ │ │ └── 1959213_10203003476584227_2699750117141905599_n.jpg │ │ ├── mercado │ │ │ └── imagen │ │ │ │ ├── 1 │ │ │ │ └── 196608_10150136706700674_24705710673_6433589_5642886_n.jpg │ │ │ │ └── 2 │ │ │ │ └── evasic3b3n-pasaje2.jpg │ │ └── proyecto_documento │ │ │ └── documento │ │ │ ├── 1 │ │ │ ├── Curriculum vitae.docx │ │ │ ├── bd-informaticos - copia.XLS │ │ │ └── 11014999_10203691469263614_1254360964083598066_n.jpg │ │ │ └── 19 │ │ │ └── Curriculum vitae.docx │ ├── js │ │ └── empty │ ├── favicon.ico │ ├── img │ │ ├── file.png │ │ ├── 13_big.jpg │ │ ├── pencil.png │ │ ├── cake.icon.png │ │ ├── divider.png │ │ ├── lightbulb.png │ │ ├── magister.png │ │ ├── Gmail-Logo.png │ │ ├── cake.power.gif │ │ ├── logo_diinf.png │ │ ├── logo_usach.png │ │ ├── Facebook_Logo.png │ │ ├── diinf-300x150.png │ │ ├── quienessomos.jpg │ │ ├── test-fail-icon.png │ │ ├── test-pass-icon.png │ │ ├── test-skip-icon.png │ │ └── test-error-icon.png │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── .htaccess ├── models │ ├── behaviors │ │ └── empty │ ├── datasources │ │ └── empty │ ├── tipo_idea.php │ ├── competencia.php │ ├── complementario.php │ ├── cliente_potencial.php │ ├── usuario_potencial.php │ ├── concepto_comparacion.php │ ├── pauta.php │ ├── mercado.php │ ├── documento_generico.php │ ├── proyecto_documento.php │ ├── tutor.php │ ├── visita.php │ ├── inversionista.php │ ├── profesor.php │ ├── propuesta.php │ ├── user.php │ ├── estudiante.php │ └── proyecto.php ├── controllers │ ├── components │ │ ├── empty │ │ └── Sessionauth.php │ └── noticias_controller.php ├── locale │ └── eng │ │ └── LC_MESSAGES │ │ └── empty ├── vendors │ ├── shells │ │ ├── tasks │ │ │ └── empty │ │ └── templates │ │ │ └── empty │ └── simpletest │ │ ├── VERSION │ │ ├── docs │ │ └── fr │ │ │ └── server_stubs_documentation.html │ │ └── test │ │ ├── support │ │ ├── collector │ │ │ ├── collectable.1 │ │ │ └── collectable.2 │ │ ├── upload_sample.txt │ │ ├── supplementary_upload_sample.txt │ │ ├── empty_test_file.php │ │ ├── latin1_sample │ │ ├── test1.php │ │ └── spl_examples.php │ │ ├── url_test.php │ │ ├── parser_test.php │ │ ├── acceptance_test.php │ │ ├── test_with_parse_error.php │ │ ├── parse_error_test.php │ │ ├── bad_test_suite.php │ │ ├── autorun_test.php │ │ ├── all_tests.php │ │ ├── detached_test.php │ │ ├── remote_test.php │ │ └── socket_test.php ├── .htaccess ├── app_controller.php └── index.php ├── vendors └── shells │ ├── tasks │ └── empty │ └── templates │ └── empty ├── cake ├── console │ ├── templates │ │ └── skel │ │ │ ├── libs │ │ │ └── empty │ │ │ ├── plugins │ │ │ └── empty │ │ │ ├── tmp │ │ │ ├── logs │ │ │ │ └── empty │ │ │ ├── tests │ │ │ │ └── empty │ │ │ ├── sessions │ │ │ │ └── empty │ │ │ └── cache │ │ │ │ ├── models │ │ │ │ └── empty │ │ │ │ ├── views │ │ │ │ └── empty │ │ │ │ └── persistent │ │ │ │ └── empty │ │ │ ├── tests │ │ │ ├── fixtures │ │ │ │ └── empty │ │ │ ├── groups │ │ │ │ └── empty │ │ │ └── cases │ │ │ │ ├── helpers │ │ │ │ └── empty │ │ │ │ ├── models │ │ │ │ └── empty │ │ │ │ ├── shells │ │ │ │ └── empty │ │ │ │ ├── behaviors │ │ │ │ └── empty │ │ │ │ ├── components │ │ │ │ └── empty │ │ │ │ ├── controllers │ │ │ │ └── empty │ │ │ │ └── datasources │ │ │ │ └── empty │ │ │ ├── views │ │ │ ├── elements │ │ │ │ ├── empty │ │ │ │ └── email │ │ │ │ │ ├── text │ │ │ │ │ └── default.ctp │ │ │ │ │ └── html │ │ │ │ │ └── default.ctp │ │ │ ├── errors │ │ │ │ └── empty │ │ │ ├── helpers │ │ │ │ └── empty │ │ │ ├── pages │ │ │ │ └── empty │ │ │ ├── scaffolds │ │ │ │ └── empty │ │ │ └── layouts │ │ │ │ ├── xml │ │ │ │ └── default.ctp │ │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ │ ├── ajax.ctp │ │ │ │ └── email │ │ │ │ ├── text │ │ │ │ └── default.ctp │ │ │ │ └── html │ │ │ │ └── default.ctp │ │ │ ├── webroot │ │ │ ├── js │ │ │ │ └── empty │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ │ ├── cake.icon.png │ │ │ │ ├── cake.power.gif │ │ │ │ ├── test-error-icon.png │ │ │ │ ├── test-fail-icon.png │ │ │ │ ├── test-pass-icon.png │ │ │ │ └── test-skip-icon.png │ │ │ └── .htaccess │ │ │ ├── models │ │ │ ├── behaviors │ │ │ │ └── empty │ │ │ └── datasources │ │ │ │ └── empty │ │ │ ├── controllers │ │ │ └── components │ │ │ │ └── empty │ │ │ ├── locale │ │ │ └── eng │ │ │ │ └── LC_MESSAGES │ │ │ │ └── empty │ │ │ ├── vendors │ │ │ └── shells │ │ │ │ └── tasks │ │ │ │ └── empty │ │ │ ├── .htaccess │ │ │ ├── config │ │ │ └── schema │ │ │ │ ├── sessions.sql │ │ │ │ └── i18n.sql │ │ │ ├── index.php │ │ │ ├── app_model.php │ │ │ └── app_controller.php │ └── cake.bat ├── tests │ ├── test_app │ │ ├── views │ │ │ ├── errors │ │ │ │ └── empty │ │ │ ├── pages │ │ │ │ ├── empty │ │ │ │ └── extract.ctp │ │ │ ├── elements │ │ │ │ ├── empty │ │ │ │ ├── test_element.xml │ │ │ │ ├── type_check.ctp │ │ │ │ ├── test_element.ctp │ │ │ │ ├── html_call.ctp │ │ │ │ ├── email │ │ │ │ │ ├── html │ │ │ │ │ │ ├── nested_element.ctp │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ └── custom.ctp │ │ │ │ │ └── text │ │ │ │ │ │ ├── default.ctp │ │ │ │ │ │ ├── wide.ctp │ │ │ │ │ │ └── custom.ctp │ │ │ │ ├── nocache │ │ │ │ │ ├── plain.ctp │ │ │ │ │ ├── sub2.ctp │ │ │ │ │ ├── contains_nocache.ctp │ │ │ │ │ └── sub1.ctp │ │ │ │ └── session_helper.ctp │ │ │ ├── helpers │ │ │ │ ├── empty │ │ │ │ └── banana.php │ │ │ ├── scaffolds │ │ │ │ └── empty │ │ │ ├── posts │ │ │ │ ├── index.ctp │ │ │ │ ├── scaffold.edit.ctp │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── helper_overwrite.ctp │ │ │ │ ├── nocache_multiple_element.ctp │ │ │ │ ├── multiple_nocache.ctp │ │ │ │ ├── cache_form.ctp │ │ │ │ └── sequencial_nocache.ctp │ │ │ ├── themed │ │ │ │ └── test_theme │ │ │ │ │ ├── posts │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── scaffold.index.ctp │ │ │ │ │ ├── webroot │ │ │ │ │ ├── js │ │ │ │ │ │ ├── theme.js │ │ │ │ │ │ └── one │ │ │ │ │ │ │ └── theme_one.js │ │ │ │ │ ├── css │ │ │ │ │ │ ├── theme_webroot.css │ │ │ │ │ │ └── test_asset.css │ │ │ │ │ ├── pdfs │ │ │ │ │ │ └── theme_test.pdf │ │ │ │ │ ├── flash │ │ │ │ │ │ └── theme_test.swf │ │ │ │ │ └── img │ │ │ │ │ │ ├── test.jpg │ │ │ │ │ │ └── cake.power.gif │ │ │ │ │ ├── layouts │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── elements │ │ │ │ │ └── test_element.ctp │ │ │ │ │ └── plugins │ │ │ │ │ └── test_plugin │ │ │ │ │ ├── tests │ │ │ │ │ └── index.ctp │ │ │ │ │ └── layouts │ │ │ │ │ └── plugin_default.ctp │ │ │ ├── tests_apps │ │ │ │ └── index.ctp │ │ │ └── layouts │ │ │ │ ├── xml │ │ │ │ └── default.ctp │ │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ │ ├── cache_empty_sections.ctp │ │ │ │ ├── ajax.ctp │ │ │ │ ├── ajax2.ctp │ │ │ │ ├── email │ │ │ │ ├── text │ │ │ │ │ └── default.ctp │ │ │ │ └── html │ │ │ │ │ ├── thin.ctp │ │ │ │ │ └── default.ctp │ │ │ │ └── cache_layout.ctp │ │ ├── models │ │ │ ├── behaviors │ │ │ │ └── empty │ │ │ ├── datasources │ │ │ │ ├── test │ │ │ │ │ └── test_local_driver.php │ │ │ │ ├── test2_source.php │ │ │ │ └── test2_other_source.php │ │ │ ├── post.php │ │ │ ├── comment.php │ │ │ ├── persister_one.php │ │ │ └── persister_two.php │ │ ├── controllers │ │ │ ├── components │ │ │ │ └── empty │ │ │ └── tests_apps_controller.php │ │ ├── vendors │ │ │ ├── shells │ │ │ │ ├── tasks │ │ │ │ │ └── empty │ │ │ │ ├── templates │ │ │ │ │ └── test │ │ │ │ │ │ └── classes │ │ │ │ │ │ └── test_object.ctp │ │ │ │ └── sample.php │ │ │ ├── css │ │ │ │ └── test_asset.css │ │ │ ├── img │ │ │ │ ├── test.jpg │ │ │ │ └── test_2.JPG │ │ │ ├── Test │ │ │ │ ├── MyTest.php │ │ │ │ └── hello.php │ │ │ ├── welcome.php │ │ │ ├── somename │ │ │ │ └── some.name.php │ │ │ └── sample │ │ │ │ └── configure_test_vendor_sample.php │ │ ├── plugins │ │ │ ├── test_plugin │ │ │ │ ├── vendors │ │ │ │ │ ├── shells │ │ │ │ │ │ ├── tasks │ │ │ │ │ │ │ └── empty │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── empty │ │ │ │ │ │ └── example.php │ │ │ │ │ ├── sample │ │ │ │ │ │ └── sample_plugin.php │ │ │ │ │ └── welcome.php │ │ │ │ ├── webroot │ │ │ │ │ ├── css │ │ │ │ │ │ ├── theme_one.htc │ │ │ │ │ │ ├── test_plugin_asset.css │ │ │ │ │ │ └── unknown.extension │ │ │ │ │ ├── js │ │ │ │ │ │ └── test_plugin │ │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── root.js │ │ │ │ │ ├── flash │ │ │ │ │ │ └── plugin_test.swf │ │ │ │ │ ├── pdfs │ │ │ │ │ │ └── plugin_test.pdf │ │ │ │ │ └── img │ │ │ │ │ │ └── cake.icon.gif │ │ │ │ ├── views │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── index.ctp │ │ │ │ │ │ └── scaffold.edit.ctp │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── default.ctp │ │ │ │ │ ├── elements │ │ │ │ │ │ ├── plugin_element.ctp │ │ │ │ │ │ └── test_plugin_element.ctp │ │ │ │ │ └── helpers │ │ │ │ │ │ ├── test_plugin_app.php │ │ │ │ │ │ ├── other_helper.php │ │ │ │ │ │ └── plugged_helper.php │ │ │ │ ├── models │ │ │ │ │ ├── datasources │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── test_driver.php │ │ │ │ │ │ ├── dbo │ │ │ │ │ │ │ └── dbo_dummy.php │ │ │ │ │ │ ├── test_source.php │ │ │ │ │ │ └── test_other_source.php │ │ │ │ │ ├── test_plugin_authors.php │ │ │ │ │ ├── test_plugin_post.php │ │ │ │ │ └── test_plugin_comment.php │ │ │ │ ├── locale │ │ │ │ │ └── po │ │ │ │ │ │ └── LC_MONETARY │ │ │ │ │ │ └── test_plugin.po │ │ │ │ ├── libs │ │ │ │ │ ├── test_plugin_library.php │ │ │ │ │ ├── cache │ │ │ │ │ │ └── test_plugin_cache.php │ │ │ │ │ └── log │ │ │ │ │ │ └── test_plugin_log.php │ │ │ │ ├── test_plugin_app_model.php │ │ │ │ ├── test_plugin_app_controller.php │ │ │ │ ├── config │ │ │ │ │ ├── load.php │ │ │ │ │ └── more.load.php │ │ │ │ └── controllers │ │ │ │ │ ├── components │ │ │ │ │ ├── other_component.php │ │ │ │ │ ├── test_plugin_other_component.php │ │ │ │ │ ├── plugins_component.php │ │ │ │ │ └── test_plugin_component.php │ │ │ │ │ └── test_plugin_controller.php │ │ │ ├── test_plugin_two │ │ │ │ └── vendors │ │ │ │ │ └── shells │ │ │ │ │ ├── tasks │ │ │ │ │ └── empty │ │ │ │ │ ├── templates │ │ │ │ │ └── empty │ │ │ │ │ ├── example.php │ │ │ │ │ └── welcome.php │ │ │ └── plugin_js │ │ │ │ └── webroot │ │ │ │ └── js │ │ │ │ ├── plugin_js.js │ │ │ │ └── one │ │ │ │ └── plugin_one.js │ │ ├── webroot │ │ │ └── theme │ │ │ │ └── test_theme │ │ │ │ ├── css │ │ │ │ ├── theme_webroot.css │ │ │ │ └── webroot_test.css │ │ │ │ └── img │ │ │ │ ├── test.jpg │ │ │ │ └── cake.power.gif │ │ ├── locale │ │ │ ├── cache_test_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ ├── dom1.po │ │ │ │ │ └── dom2.po │ │ │ ├── rule_0_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_1_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_2_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_3_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_4_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_5_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_6_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_7_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_8_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_9_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_10_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_11_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_12_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_13_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── rule_14_mo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.mo │ │ │ │ │ └── default.mo │ │ │ ├── po │ │ │ │ └── LC_MONETARY │ │ │ │ │ └── default.po │ │ │ ├── rule_0_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_2_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_1_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_14_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── core.po │ │ │ ├── rule_5_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── core.po │ │ │ ├── rule_12_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── core.po │ │ │ ├── rule_4_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_8_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_3_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_11_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── core.po │ │ │ ├── rule_13_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── default.po │ │ │ │ │ └── core.po │ │ │ ├── rule_9_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_6_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ ├── rule_7_po │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── core.po │ │ │ │ │ └── default.po │ │ │ └── rule_10_po │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── default.po │ │ │ │ └── core.po │ │ └── libs │ │ │ ├── library.php │ │ │ ├── cache │ │ │ └── test_app_cache.php │ │ │ └── log │ │ │ └── test_app_log.php │ └── lib │ │ ├── cake_test_model.php │ │ ├── cake_web_test_case.php │ │ └── templates │ │ └── xdebug.php ├── libs │ ├── view │ │ ├── layouts │ │ │ ├── xml │ │ │ │ └── default.ctp │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ ├── ajax.ctp │ │ │ └── email │ │ │ │ ├── text │ │ │ │ └── default.ctp │ │ │ │ └── html │ │ │ │ └── default.ctp │ │ ├── elements │ │ │ └── email │ │ │ │ ├── text │ │ │ │ └── default.ctp │ │ │ │ └── html │ │ │ │ └── default.ctp │ │ └── errors │ │ │ ├── error500.ctp │ │ │ └── error404.ctp │ └── overloadable.php ├── config │ └── config.php └── VERSION.txt ├── latest.dump ├── .travis.yml ├── .gitignore └── .htaccess /plugins/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/libs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/plugins/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/groups/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/sessions/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/pages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webroot/files/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webroot/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/cache/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/cache/views/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/rss/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/xml/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/noticias/index.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/locale/eng/LC_MESSAGES/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/cases/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/cases/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/cases/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tmp/cache/persistent/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/users/check_login.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1 -------------------------------------------------------------------------------- /app/views/elements/email/html/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/elements/email/text/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/email/html/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/email/text/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/libs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/pages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/plugins/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/fixtures/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/groups/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/sessions/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/errors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/pages/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/models/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/models/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/helpers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/shells/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/cache/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/cache/views/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/scaffolds/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /cake/console/templates/skel/controllers/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/locale/eng/LC_MESSAGES/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/behaviors/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/components/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tests/cases/datasources/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/tmp/cache/persistent/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/console/templates/skel/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/docs/fr/server_stubs_documentation.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/collector/collectable.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/collector/collectable.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/users/project.ctp: -------------------------------------------------------------------------------- 1 |
test element
2 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/upload_sample.txt: -------------------------------------------------------------------------------- 1 | Sample for testing file upload -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/plugin_js/webroot/js/plugin_js.js: -------------------------------------------------------------------------------- 1 | alert('win sauce'); -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | root theme js file -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/js/test_plugin/test.js: -------------------------------------------------------------------------------- 1 | alert("Test App"); -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/root.js: -------------------------------------------------------------------------------- 1 | alert('I am a root level file!'); -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/scaffold.edit.ctp: -------------------------------------------------------------------------------- 1 | test_app posts add/edit scaffold view -------------------------------------------------------------------------------- /cake/tests/test_app/views/tests_apps/index.ctp: -------------------------------------------------------------------------------- 1 | This is the TestsAppsController index view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/layouts/default.ctp: -------------------------------------------------------------------------------- 1 | default test_theme layout -------------------------------------------------------------------------------- /latest.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/latest.dump -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/supplementary_upload_sample.txt: -------------------------------------------------------------------------------- 1 | Some more text content -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/layouts/default.ctp: -------------------------------------------------------------------------------- 1 | test plugin default layout -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | nested theme js file -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | notifications: 3 | email:false 4 | branches: 5 | only: master -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | theme webroot css file -------------------------------------------------------------------------------- /app/tmp/cache/persistent/cake_core_default_en-us: -------------------------------------------------------------------------------- 1 | 1428376187 2 | a:1:{s:11:"LC_MESSAGES";a:0:{}} 3 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/plugin_js/webroot/js/one/plugin_one.js: -------------------------------------------------------------------------------- 1 | alert('plugin one nested js file'); -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/tests/scaffold.edit.ctp: -------------------------------------------------------------------------------- 1 | test_plugin add/edit scaffold view -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/css/test_asset.css: -------------------------------------------------------------------------------- 1 | this is the test asset css file -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | override the theme webroot css file -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index theme view -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/css/webroot_test.css: -------------------------------------------------------------------------------- 1 | this is the webroot test asset css file -------------------------------------------------------------------------------- /app/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/favicon.ico -------------------------------------------------------------------------------- /app/webroot/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/file.png -------------------------------------------------------------------------------- /cake/libs/view/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | Xml->header(); ?> 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/css/test_plugin_asset.css: -------------------------------------------------------------------------------- 1 | this is the test plugin asset css file -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/shells/templates/test/classes/test_object.ctp: -------------------------------------------------------------------------------- 1 | I got rendered 2 | -------------------------------------------------------------------------------- /app/webroot/img/13_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/13_big.jpg -------------------------------------------------------------------------------- /app/webroot/img/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/pencil.png -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/html_call.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test', 'http://example.com'); 3 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | header(); ?> 2 | -------------------------------------------------------------------------------- /app/views/elements/flash_success.ctp: -------------------------------------------------------------------------------- 1 |B. In Plain Element
3 | log('2. in plain element') ?> 4 | 5 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 |F. In Element With No Cache Tags
4 | log('6. In element with no cache tags') ?> 5 |9 | | 10 | 11 | link($est['nombre'], array('controller' => 'users', 'action' => 'show', $est['user_id'])) ?> | 12 | 13 |
14 | 15 |D. In View File
23 | log('4. in view file') ?> 24 |22 | : 23 | '{$message}'"); ?> 24 |
25 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves22 | : 23 | '{$message}'"); ?> 24 |
-------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_other_component.php: -------------------------------------------------------------------------------- 1 | 8 | * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | * 10 | * Licensed under The Open Group Test Suite License 11 | * Redistributions of files must retain the above copyright notice. 12 | * 13 | * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests 15 | * @package cake 16 | * @subpackage cake.tests.test_app.plugins.test_plugin.views.helpers 17 | * @since CakePHP(tm) v 1.2.0.4206 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginOtherComponentComponent extends Object { 21 | } 22 | -------------------------------------------------------------------------------- /app/models/estudiante.php: -------------------------------------------------------------------------------- 1 | array( 8 | 'className' => 'User', 9 | 'foreignKey' => 'user_id' 10 | ), 11 | 'Proyecto' => array( 12 | 'className' => 'Proyecto', 13 | 'foreignKey' => 'proyecto_id' 14 | ) 15 | ); 16 | var $validate = array( 17 | 'nombre' => array( 18 | 'isUnique' => array( 19 | 'rule' => 'isUnique', 20 | 'required' => true, 21 | 'message' => 'Nombre de usuario ya ocupado' 22 | ), 23 | 'between' => array( 24 | 'rule' => array('between', 5, 15), 25 | 'message' => 'Entre 5 y 15 caracteres' 26 | ) 27 | ), 28 | 'password' => array( 29 | 'rule' => array('minLength', '5'), 30 | 'message' => 'Largo mínimo de 5 caracteres', 31 | 'allowEmpty' => 'false' 32 | ) 33 | ); 34 | } 35 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N TeamHere is your value:
-------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/test_plugin_comment.php: -------------------------------------------------------------------------------- 1 | \n" 7 | "Language-Team: CakePHP I18N & I10N TeamThis is regular text
21 |Additional regular text.
-------------------------------------------------------------------------------- /app/models/proyecto.php: -------------------------------------------------------------------------------- 1 | array( 8 | 'className' => 'Estudiante', 9 | 'foreignKey' => 'proyecto_id'), 10 | 'ProyectoDocumento' => array( 11 | 'className' => 'ProyectoDocumento', 12 | 'foreignKey' => 'proyecto_id'), 13 | 'Mercado' => array( 14 | 'className' => 'Mercado', 15 | 'foreignKey' => 'proyecto_id') 16 | ); 17 | var $belongsTo = array( 18 | 'EstadoProyecto' => array( 19 | 'className' => 'EstadoProyecto', 20 | 'foreignKey' => 'estado_proyecto_id'), 21 | 'Pauta' => array( 22 | 'className' => 'Pauta', 23 | 'foreignKey' => 'pauta_id'), 24 | 'Propuesta' => array( 25 | 'className' => 'Propuesta', 26 | 'foreignKey' => 'propuesta_id') 27 | ); 28 | var $actsAs = array( 29 | 'Upload.Upload' => array( 30 | 'logo' 31 | ) 32 | ); 33 | } 34 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/email/html/thin.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 |This email was sent using the CakePHP Framework
31 | 32 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/shells/sample.php: -------------------------------------------------------------------------------- 1 | 8 | * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | * 10 | * Licensed under The Open Group Test Suite License 11 | * Redistributions of files must retain the above copyright notice. 12 | * 13 | * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests 15 | * @package cake 16 | * @subpackage cake.tests.test_app.vendors.shells 17 | * @since CakePHP(tm) v 1.2.0.7871 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class SampleShell extends Shell { 21 | 22 | /** 23 | * main method 24 | * 25 | * @access public 26 | * @return void 27 | */ 28 | function main() { 29 | $this->out('This is the main method called from SampleShell'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /cake/libs/view/layouts/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 |This email was sent using the CakePHP Framework
29 | 30 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/pages/extract.ctp: -------------------------------------------------------------------------------- 1 | 10); 4 | 5 | // Plural 6 | __n('You have %d new message.', 'You have %d new messages.', $count); 7 | __n('You deleted %d message.', 'You deleted %d messages.', $messages['count']); 8 | 9 | // Domain Plural 10 | __dn('domain', 'You have %d new message (domain).', 'You have %d new messages (domain).', '10'); 11 | __dn('domain', 'You deleted %d message (domain).', 'You deleted %d messages (domain).', $messages['count']); 12 | 13 | // Duplicated Message 14 | __('Editing this Page'); 15 | 16 | // Multiline with comments 17 | __('Hot features!' 18 | . "\n - No Configuration:" // Comments will be stripped 19 | . ' Set-up the database and let the magic begin' 20 | . "\n - Extremely Simple:" // Comments will be stripped 21 | . ' Just look at the name...It\'s Cake' 22 | . "\n - Active, Friendly Community:" // Comments will be stripped 23 | . ' Join us #cakephp on IRC. We\'d love to help you get started'); 24 | 25 | // This throws an error and is not parsed 26 | __('Found ' . $count . ' new messages'); -------------------------------------------------------------------------------- /app/views/propuestas/compare.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Autor:
14 | 15 |%
21 |This email was sent using the CakePHP Framework
31 | 32 | -------------------------------------------------------------------------------- /app/tests/cases/controllers/users_controller.test.php: -------------------------------------------------------------------------------- 1 | redirectUrl = $url; 12 | } 13 | 14 | function render($action = null, $layout = null, $file = null) { 15 | $this->renderedAction = $action; 16 | } 17 | 18 | function _stop($status = 0) { 19 | $this->stopped = $status; 20 | } 21 | } 22 | 23 | class UsersControllerTestCase extends CakeTestCase { 24 | var $dropTables = false; 25 | var $fixtures = array( 'app.user', 'app.estudiante', 'app.profesor', 'app.tutor', 'app.inversionista', 'app.visita'); 26 | 27 | function startTest() { 28 | $this->Users = new TestUsersController(); 29 | $this->Users->constructClasses(); 30 | $this->Users->Component->initialize($this->Posts); 31 | } 32 | 33 | function endTest() { 34 | unset($this->Posts); 35 | ClassRegistry::flush(); 36 | } 37 | } 38 | 39 | ?> -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 |This email was sent using the CakePHP Framework
31 | 32 | -------------------------------------------------------------------------------- /cake/tests/lib/cake_test_model.php: -------------------------------------------------------------------------------- 1 | 8 | * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | * 10 | * Licensed under The Open Group Test Suite License 11 | * Redistributions of files must retain the above copyright notice. 12 | * 13 | * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | * @link http://book.cakephp.org/view/1196/Testing CakePHP(tm) Tests 15 | * @package cake 16 | * @subpackage cake.cake.tests.libs 17 | * @since CakePHP(tm) v 1.2.0.4667 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | require_once LIBS.'model'.DS.'model.php'; 21 | 22 | /** 23 | * Short description for class. 24 | * 25 | * @package cake 26 | * @subpackage cake.cake.tests.lib 27 | */ 28 | class CakeTestModel extends Model { 29 | var $useDbConfig = 'test_suite'; 30 | var $cacheSources = false; 31 | } 32 | -------------------------------------------------------------------------------- /app/views/pages/about.ctp: -------------------------------------------------------------------------------- 1 |Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan euripidis in, eum liber hendrerit an. Qui ut wisi vocibus suscipiantur, quo dicit ridens inciderint id. Quo mundi lobortis reformidans eu, legimus senserit definiebas an eos.
13 |You must install Xdebug to use the CakePHP(tm) Code Coverage Analyzation.
25 | 26 |