├── 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 |

No tienes proyecto aceptado

-------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/css/theme_one.htc: -------------------------------------------------------------------------------- 1 | htc file -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/css/test_asset.css: -------------------------------------------------------------------------------- 1 | this is the test asset css file -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/test_element.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /app/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /app/webroot/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/divider.png -------------------------------------------------------------------------------- /app/webroot/img/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/lightbulb.png -------------------------------------------------------------------------------- /app/webroot/img/magister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/magister.png -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/css/unknown.extension: -------------------------------------------------------------------------------- 1 | Testing a file with unknown extension to mime mapping. -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/flash/plugin_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the plugin. -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/pdfs/plugin_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the plugin. -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/pdfs/theme_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the theme. -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/empty_test_file.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webroot/img/Gmail-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/Gmail-Logo.png -------------------------------------------------------------------------------- /app/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /app/webroot/img/logo_diinf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/logo_diinf.png -------------------------------------------------------------------------------- /app/webroot/img/logo_usach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/logo_usach.png -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | header(); ?> 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | View Content 2 | 3 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/helper_overwrite.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test link', '#'); 4 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/flash/theme_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the theme. -------------------------------------------------------------------------------- /app/webroot/img/Facebook_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/Facebook_Logo.png -------------------------------------------------------------------------------- /app/webroot/img/diinf-300x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/diinf-300x150.png -------------------------------------------------------------------------------- /app/webroot/img/quienessomos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/quienessomos.jpg -------------------------------------------------------------------------------- /app/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /app/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /app/views/elements/flash_warning.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /cake/tests/test_app/models/datasources/test/test_local_driver.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/plugins/test_plugin/layouts/plugin_default.ctp: -------------------------------------------------------------------------------- 1 | test_plugin test_plugin_theme default layout -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/datasources/test/test_driver.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/test/parser_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/vendors/simpletest/test/parser_test.php -------------------------------------------------------------------------------- /app/webroot/files/proyecto/logo/7/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto/logo/7/logo.png -------------------------------------------------------------------------------- /cake/libs/view/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/elements/test_plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/img/test_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/vendors/img/test_2.JPG -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/html/nested_element.ctp: -------------------------------------------------------------------------------- 1 | Before the element. 2 | element('html_call'); ?> 3 | After the element. -------------------------------------------------------------------------------- /app/vendors/simpletest/test/acceptance_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/vendors/simpletest/test/acceptance_test.php -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/latin1_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/vendors/simpletest/test/support/latin1_sample -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/favicon.ico -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/plain.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 |

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 | 2 | RewriteEngine on 3 | RewriteRule ^$ app/webroot/ [L] 4 | RewriteRule (.*) app/webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /app/tmp/cache/persistent/cake_core_object_map: -------------------------------------------------------------------------------- 1 | 1428376187 2 | a:1:{s:6:"plugin";a:4:{i:0;s:8:"Facebook";i:1;s:6:"Opauth";i:2;s:6:"Upload";i:3;s:10:"FileUpload";}} 3 | -------------------------------------------------------------------------------- /app/webroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/webroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/webroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "default.foo" 2 | msgstr "Default Foo" 3 | 4 | msgid "default.bar" 5 | msgstr "Default Bar" 6 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/test1.php: -------------------------------------------------------------------------------- 1 | assertEqual(3,1+2, "pass1"); 5 | } 6 | } 7 | ?> 8 | -------------------------------------------------------------------------------- /app/webroot/files/mercado/imagen/2/evasic3b3n-pasaje2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/mercado/imagen/2/evasic3b3n-pasaje2.jpg -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/console/templates/skel/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/webroot/theme/test_theme/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/webroot/theme/test_theme/img/test.jpg -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/datasources/dbo/dbo_dummy.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/dom1.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain 1" 3 | 4 | msgid "dom1.foo" 5 | msgstr "Dom 1 Foo" 6 | 7 | msgid "dom1.bar" 8 | msgstr "Dom 1 Bar" 9 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/cache_test_po/LC_MESSAGES/dom2.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain" 3 | 4 | msgid "dom2.foo" 5 | msgstr "Dom 2 Foo" 6 | 7 | msgid "dom2.bar" 8 | msgstr "Dom 2 Bar" 9 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/webroot/img/cake.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/plugins/test_plugin/webroot/img/cake.icon.gif -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/sub2.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/session_helper.ctp: -------------------------------------------------------------------------------- 1 |
2 |

3 |

4 |

5 |
-------------------------------------------------------------------------------- /app/views/elements/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/webroot/files/proyecto_documento/documento/1/Curriculum vitae.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto_documento/documento/1/Curriculum vitae.docx -------------------------------------------------------------------------------- /app/webroot/files/proyecto_documento/documento/19/Curriculum vitae.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto_documento/documento/19/Curriculum vitae.docx -------------------------------------------------------------------------------- /cake/tests/test_app/views/themed/test_theme/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/cake/tests/test_app/views/themed/test_theme/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /app/webroot/files/proyecto_documento/documento/1/bd-informaticos - copia.XLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto_documento/documento/1/bd-informaticos - copia.XLS -------------------------------------------------------------------------------- /app/webroot/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] 6 | -------------------------------------------------------------------------------- /app/views/proyectos/index.ctp: -------------------------------------------------------------------------------- 1 | 2 | element('feed', array( 4 | "feeds" => array($proyectos), 5 | "type" => "normal" ) ); 6 | ?> 7 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/contains_nocache.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 | 3 |

F. In Element With No Cache Tags

4 | log('6. In element with no cache tags') ?> 5 |
6 | -------------------------------------------------------------------------------- /app/webroot/files/proyecto/logo/7/11014999_10203691469263614_1254360964083598066_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto/logo/7/11014999_10203691469263614_1254360964083598066_n.jpg -------------------------------------------------------------------------------- /app/webroot/files/proyecto/logo/7/1959213_10203003476584227_2699750117141905599_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto/logo/7/1959213_10203003476584227_2699750117141905599_n.jpg -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/nocache_multiple_element.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | element('nocache/sub1'); ?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/test_with_parse_error.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/webroot/files/mercado/imagen/1/196608_10150136706700674_24705710673_6433589_5642886_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/mercado/imagen/1/196608_10150136706700674_24705710673_6433589_5642886_n.jpg -------------------------------------------------------------------------------- /cake/console/templates/skel/webroot/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L] 6 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/nocache/sub1.ctp: -------------------------------------------------------------------------------- 1 | element('nocache/sub2'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/webroot/files/proyecto_documento/documento/1/11014999_10203691469263614_1254360964083598066_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YerkoPalma/observatorio_web/master/app/webroot/files/proyecto_documento/documento/1/11014999_10203691469263614_1254360964083598066_n.jpg -------------------------------------------------------------------------------- /app/models/competencia.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Mercado', 8 | 'foreignKey' => 'mercado_id' 9 | ) 10 | ); 11 | } 12 | ?> -------------------------------------------------------------------------------- /app/models/complementario.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Mercado', 8 | 'foreignKey' => 'mercado_id' 9 | ) 10 | ); 11 | } 12 | ?> -------------------------------------------------------------------------------- /app/views/propuestas/addfilter.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0 ): 5 | echo $this->element('feed', array( 6 | "feeds" => array($propuestas), 7 | "type" => "normal" ) ); 8 | else:?> 9 |

No se han encontrado resultados

10 | 11 | -------------------------------------------------------------------------------- /app/models/cliente_potencial.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Mercado', 8 | 'foreignKey' => 'mercado_id' 9 | ) 10 | ); 11 | } 12 | ?> -------------------------------------------------------------------------------- /app/models/usuario_potencial.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Mercado', 8 | 'foreignKey' => 'mercado_id' 9 | ) 10 | ); 11 | } 12 | ?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/parse_error_test.php: -------------------------------------------------------------------------------- 1 | addFile('test_with_parse_error.php'); 8 | $test->run(new HtmlReporter()); 9 | ?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/bad_test_suite.php: -------------------------------------------------------------------------------- 1 | TestSuite('Two bad test cases'); 7 | $this->addFile(dirname(__FILE__) . '/support/empty_test_file.php'); 8 | } 9 | } 10 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/multiple_nocache.ctp: -------------------------------------------------------------------------------- 1 | --view start-- 2 | 3 | 4 | 5 | 6 | this view has 3 nocache blocks 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | --view end-- -------------------------------------------------------------------------------- /app/models/concepto_comparacion.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Propuesta', 8 | 'foreignKey' => 'propuesta_id' 9 | ) 10 | ); 11 | var $validate = array( ); 12 | } 13 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $rss->document( 12 | $rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /cake/libs/view/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $this->Rss->document( 12 | $this->Rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | ?> -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | header(); 3 | 4 | if (!isset($channel)) { 5 | $channel = array(); 6 | } 7 | if (!isset($channel['title'])) { 8 | $channel['title'] = $title_for_layout; 9 | } 10 | 11 | echo $rss->document( 12 | $rss->channel( 13 | array(), $channel, $content_for_layout 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /app/models/pauta.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Proyecto', 8 | 'foreignKey' => 'pauta_id') 9 | ); 10 | 11 | var $hasOne = array( 12 | 'DocumentoGenerico' => array( 13 | 'className' => 'DocumentoGenerico', 14 | 'foreignKey' => 'pauta_id')); 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/cache_form.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | create('User');?> 4 |
5 | 6 | input('username'); 8 | echo $form->input('email'); 9 | echo $form->input('password'); 10 | ?> 11 |
12 | end('Submit');?> 13 |
14 |
-------------------------------------------------------------------------------- /app/views/proyectos/pauta.ctp: -------------------------------------------------------------------------------- 1 | element('breadcrumb_pauta');?> 2 | 3 | element('form_pauta'); 5 | }else{ 6 | 7 | #if ($proyecto['Proyecto']['pauta_id'] > $pauta_id) # -> si la pauta en la que esta el proyecto es mayor a la que se esta revisando, se puede mostrar el contenido 8 | echo $this->element('show_pauta'); 9 | #else # -> sino, aún no llega a esa pauta el curso. 10 | }?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/autorun_test.php: -------------------------------------------------------------------------------- 1 | addFile(dirname(__FILE__) . '/support/test1.php'); 9 | $this->assertEqual($tests->getSize(), 1); 10 | } 11 | } 12 | 13 | ?> -------------------------------------------------------------------------------- /app/views/users/show.ctp: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 |
7 | element('feed', array( 8 | "feeds" => array($propuestas), 9 | "type" => "social" )); ?> 10 |
11 |
12 | element('project-avatar'); ?> 13 |
14 |
-------------------------------------------------------------------------------- /app/views/elements/feed.ctp: -------------------------------------------------------------------------------- 1 | startBlock($type);?> 2 | feedArray($feeds); ?> 3 | 4 | 5 | activityHeader( $item[2], $item[0], $item[1] ); ?> 6 | 7 | activityBody( $item ); ?> 8 | "; 10 | endif;?> 11 | 12 | endBlock();?> 13 | -------------------------------------------------------------------------------- /app/models/mercado.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'className' => 'Proyecto', 10 | 'foreignKey' => 'proyecto_id')); 11 | 12 | var $actsAs = array( 13 | 'Upload.Upload' => array( 14 | 'imagen' 15 | ) 16 | ); 17 | } 18 | ?> -------------------------------------------------------------------------------- /app/models/documento_generico.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Pauta', 8 | 'foreignKey' => 'pauta_id' 9 | ) 10 | ); 11 | var $hasMany = array( 12 | 'ProyectoDocumento' => array( 13 | 'className' => 'ProyectoDocumento', 14 | 'foreignKey' => 'documento_generico_id')); 15 | var $validate = array( ); 16 | } 17 | ?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/support/spl_examples.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/vendors/simpletest/test/all_tests.php: -------------------------------------------------------------------------------- 1 | TestSuite('All tests for SimpleTest ' . SimpleTest::getVersion()); 7 | $this->addFile(dirname(__FILE__) . '/unit_tests.php'); 8 | $this->addFile(dirname(__FILE__) . '/shell_test.php'); 9 | $this->addFile(dirname(__FILE__) . '/live_test.php'); 10 | $this->addFile(dirname(__FILE__) . '/acceptance_test.php'); 11 | } 12 | } 13 | ?> -------------------------------------------------------------------------------- /cake/console/templates/skel/config/schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright 2005-2012, Cake Software Foundation, Inc. 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # Redistributions of files must retain the above copyright notice. 9 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 10 | 11 | CREATE TABLE cake_sessions ( 12 | id varchar(255) NOT NULL default '', 13 | data text, 14 | expires int(11) default NULL, 15 | PRIMARY KEY (id) 16 | ); -------------------------------------------------------------------------------- /app/vendors/simpletest/test/detached_test.php: -------------------------------------------------------------------------------- 1 | addTestCase(new DetachedTestCase($command)); 11 | if (SimpleReporter::inCli()) { 12 | exit ($test->run(new TextReporter()) ? 0 : 1); 13 | } 14 | $test->run(new HtmlReporter()); 15 | ?> -------------------------------------------------------------------------------- /app/models/proyecto_documento.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'Proyecto', 8 | 'foreignKey' => 'proyecto_id' 9 | ), 10 | 'DocumentoGenerico' => array( 11 | 'className' => 'DocumentoGenerico', 12 | 'foreignKey' => 'documento_generico_id') 13 | ); 14 | var $actsAs = array( 15 | 'Upload.Upload' => array( 16 | 'documento' 17 | ) 18 | ); 19 | var $validate = array( ); 20 | } 21 | ?> -------------------------------------------------------------------------------- /app/tests/fixtures/tutor_fixture.php: -------------------------------------------------------------------------------- 1 | '4', 'id' => 1, 'nombre' => 'Usuario4', 'rut' => '4.444.444-4', 'password' => "8843d7f92416211de9ebb963ff4ce28125932878", 'mail' => 'ppablo@mail.com', 'estado' => 'activo') 12 | ); 13 | } 14 | ?> -------------------------------------------------------------------------------- /app/controllers/noticias_controller.php: -------------------------------------------------------------------------------- 1 | Auth->allowedActions = array('*'); 12 | } 13 | 14 | function index() { 15 | if ( $this->Auth->user() ) 16 | $this->set('user', current($this->Auth->user()) ); 17 | $this->set('title_for_layout', 'Proyectos Ingeniería Civil Informática | Noticias'); 18 | } 19 | } 20 | ?> -------------------------------------------------------------------------------- /app/tests/fixtures/visita_fixture.php: -------------------------------------------------------------------------------- 1 | '6', 'id' => 1, 'nombre' => 'Usuario6', 'rut' => '6.666.666-6', 'password' => "8843d7f92416211de9ebb963ff4ce28125932878", 'mail' => 'ppablo@mail.com', 'estado' => 'activo') 12 | ); 13 | } 14 | ?> -------------------------------------------------------------------------------- /app/tests/fixtures/estudiante_fixture.php: -------------------------------------------------------------------------------- 1 | '3', 'id' => 1, 'nombre' => 'Usuario3', 'rut' => '3.333.333-3', 'password' => "8843d7f92416211de9ebb963ff4ce28125932878", 'mail' => 'ppablo@mail.com', 'estado' => 'activo') 12 | ); 13 | } 14 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $title_for_layout; ?> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/tests/fixtures/inversionista_fixture.php: -------------------------------------------------------------------------------- 1 | '5', 'id' => 1, 'nombre' => 'Usuario5', 'rut' => '5.555.555-5', 'password' => "8843d7f92416211de9ebb963ff4ce28125932878", 'mail' => 'ppablo@mail.com', 'estado' => 'activo') 12 | ); 13 | } 14 | ?> -------------------------------------------------------------------------------- /app/app_controller.php: -------------------------------------------------------------------------------- 1 | Auth->authorize = 'actions'; 10 | $this->Auth->loginAction = array('controller' => 'users', 'action' => 'login'); 11 | $this->Auth->logoutRedirect = array('controller' => 'pages', 'action' => 'home'); 12 | $this->Auth->loginRedirect = array('controller' => 'pages', 'action' => 'home'); 13 | 14 | } 15 | } 16 | ?> -------------------------------------------------------------------------------- /app/views/propuestas/add.ctp: -------------------------------------------------------------------------------- 1 | create('Propuesta', array('class' => 'form-horizontal', 'role' => 'form', 'inputDefaults' => array( 2 | 'label' => false, 3 | 'div' => false))); ?> 4 | 5 | element('new_propuesta_form');?> 6 | 7 |
8 |
9 | "; 11 | ?> 12 | button('Siguiente '.$nextIcon, array('type' => 'submit', 'class'=>'btn btn-success', 'escape' => false), array('escape' => false)); ?> 13 |
14 |
15 | end(); ?> -------------------------------------------------------------------------------- /app/views/elements/profesor_form.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 | input('Profesor.mail', array('class' => 'form-control', 'placeholder' => 'juan.perez@mail.com')); ?> 7 |
8 |
9 | 10 |
11 | 12 |
13 | input('Profesor.rut', array('class' => 'form-control', 'placeholder' => '11.111.111-1')); ?> 14 |
15 |
16 | 17 |
-------------------------------------------------------------------------------- /cake/tests/test_app/locale/po/LC_MONETARY/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | msgid "" 15 | msgstr "header" 16 | 17 | msgid "Plural Rule 1" 18 | msgstr "Monetary Po (translated)" -------------------------------------------------------------------------------- /cake/tests/test_app/models/datasources/test2_source.php: -------------------------------------------------------------------------------- 1 | '1', 'id' => 1, 'nombre' => 'Usuario1', 'rut' => '11.111.111-1', 'password' => "8843d7f92416211de9ebb963ff4ce28125932878", 'mail' => 'ppablo@mail.com', 'estado' => 'activo'), 12 | array ('user_id' => '2', 'id' => 2, 'nombre' => 'Usuario2', 'rut' => '2.222.222-2', 'password' => "", 'mail' => 'ppablo@mail.com', 'estado' => 'inactivo') 13 | ); 14 | } 15 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/datasources/test_other_source.php: -------------------------------------------------------------------------------- 1 | element('form_pauta_1'); 5 | break; 6 | case 2: 7 | echo $this->element('form_pauta_2'); 8 | break; 9 | case 3: 10 | echo $this->element('form_pauta_3'); 11 | break; 12 | case 4: 13 | echo $this->element('form_pauta_4'); 14 | break; 15 | case 5: 16 | echo $this->element('form_pauta_5'); 17 | break; 18 | case 6: 19 | echo $this->element('form_pauta_6'); 20 | break; 21 | case 7: 22 | echo $this->element('form_pauta_7'); 23 | break; 24 | case 8: 25 | echo $this->element('form_pauta_8'); 26 | break; 27 | default: 28 | 29 | break; 30 | } 31 | ?> -------------------------------------------------------------------------------- /app/views/elements/project-avatar.ctp: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |

6 | image('../files/proyecto/logo/'. $proyecto['Proyecto']['id'].'/' . $proyecto['Proyecto']['logo'], array('class' => 'img-responsive img-thumbnail', 'alt' => 'CakePHP'))?> 7 |

8 |

9 | | 10 | 11 | link($est['nombre'], array('controller' => 'users', 'action' => 'show', $est['user_id'])) ?> | 12 | 13 |

14 | 15 |

Mi Proyecto

16 | 17 |
18 |
19 | -------------------------------------------------------------------------------- /app/views/elements/show_pauta.ctp: -------------------------------------------------------------------------------- 1 | element('show_pauta_1'); 5 | break; 6 | case 2: 7 | echo $this->element('show_pauta_2'); 8 | break; 9 | case 3: 10 | echo $this->element('show_pauta_3'); 11 | break; 12 | case 4: 13 | echo $this->element('show_pauta_4'); 14 | break; 15 | case 5: 16 | echo $this->element('show_pauta_5'); 17 | break; 18 | case 6: 19 | echo $this->element('show_pauta_6'); 20 | break; 21 | case 7: 22 | echo $this->element('show_pauta_7'); 23 | break; 24 | case 8: 25 | echo $this->element('show_pauta_8'); 26 | break; 27 | default: 28 | 29 | break; 30 | } 31 | ?> -------------------------------------------------------------------------------- /app/tmp/cache/models/cake_model_default_observatorio_web_piinfo_list: -------------------------------------------------------------------------------- 1 | 1413166951 2 | a:29:{i:0;s:12:"channelstags";i:1;s:8:"clientes";i:2;s:16:"comparacionideas";i:3;s:15:"complementarios";i:4;s:17:"coststructuretags";i:5;s:24:"customerrelationshiptags";i:6;s:20:"customersegmentstags";i:7;s:8:"empresas";i:8;s:11:"estudiantes";i:9;s:10:"inversores";i:10;s:17:"keyactivitiestags";i:11;s:15:"keypartnerstags";i:12;s:16:"keyresourcestags";i:13;s:8:"personas";i:14;s:9:"productos";i:15;s:11:"ingenierias";i:16;s:17:"marcosfinancieros";i:17;s:10:"profesores";i:18;s:9:"proyectos";i:19;s:18:"revenuestreamstags";i:20;s:9:"servicios";i:21;s:10:"sustitutos";i:22;s:7:"tutores";i:23;s:8:"mercados";i:24;s:8:"usuarios";i:25;s:14:"ideasproyectos";i:26;s:20:"valuepropositiontags";i:27;s:7:"visitas";i:28;s:5:"users";} 3 | -------------------------------------------------------------------------------- /cake/console/templates/skel/index.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/helpers/banana.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/libs/view/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/tests/test_app/models/post.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'User', 8 | 'foreignKey' => 'user_id' 9 | ) 10 | ); 11 | var $validate = array( 12 | 'nombre' => array( 13 | 'isUnique' => array( 14 | 'rule' => 'isUnique', 15 | 'required' => true, 16 | 'message' => 'Nombre de usuario ya ocupado' 17 | ), 18 | 'between' => array( 19 | 'rule' => array('between', 5, 15), 20 | 'message' => 'Entre 5 y 15 caracteres' 21 | ) 22 | ), 23 | 'password' => array( 24 | 'rule' => array('minLength', '5'), 25 | 'message' => 'Largo mínimo de 5 caracteres', 26 | 'allowEmpty' => 'false' 27 | ) 28 | ); 29 | } 30 | ?> -------------------------------------------------------------------------------- /app/views/propuestas/index.ctp: -------------------------------------------------------------------------------- 1 | script('prototype'); ?> 2 | element('user_propuesta'); 14 | else 15 | echo $this->element('add_propuesta'); 16 | 17 | //si no existen propuestas 18 | }else { 19 | //mostrar panel para agregar propuestas 20 | echo $this->element('add_propuesta'); 21 | } 22 | 23 | //panel de filtros 24 | echo $this->element('filter_panel'); 25 | 26 | echo $this->element('feed', array( 27 | "feeds" => array($propuestas), 28 | "type" => "normal" ) ); 29 | ?> 30 | 31 | -------------------------------------------------------------------------------- /cake/config/config.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /app/models/visita.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'User', 8 | 'foreignKey' => 'user_id' 9 | ) 10 | ); 11 | var $validate = array( 12 | 'nombre' => array( 13 | 'isUnique' => array( 14 | 'rule' => 'isUnique', 15 | 'required' => true, 16 | 'message' => 'Nombre de usuario ya ocupado' 17 | ), 18 | 'between' => array( 19 | 'rule' => array('between', 5, 15), 20 | 'message' => 'Entre 5 y 15 caracteres' 21 | ) 22 | ), 23 | 'password' => array( 24 | 'rule' => array('minLength', '5'), 25 | 'message' => 'Largo mínimo de 5 caracteres', 26 | 'allowEmpty' => 'false' 27 | ) 28 | ); 29 | } 30 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 0 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends with any # (from core translated)" 21 | 22 | -------------------------------------------------------------------------------- /cake/tests/test_app/models/comment.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /app/models/inversionista.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'User', 8 | 'foreignKey' => 'user_id' 9 | ) 10 | ); 11 | var $validate = array( 12 | 'nombre' => array( 13 | 'isUnique' => array( 14 | 'rule' => 'isUnique', 15 | 'required' => true, 16 | 'message' => 'Nombre de usuario ya ocupado' 17 | ), 18 | 'between' => array( 19 | 'rule' => array('between', 5, 15), 20 | 'message' => 'Entre 5 y 15 caracteres' 21 | ) 22 | ), 23 | 'password' => array( 24 | 'rule' => array('minLength', '5'), 25 | 'message' => 'Largo mínimo de 5 caracteres', 26 | 'allowEmpty' => 'false' 27 | ) 28 | ); 29 | } 30 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/libs/library.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.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class Library {} 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=1; plural=0;\n" 12 | "X-Poedit-Language: Single Form Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 0 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends with any # (translated)" 21 | 22 | #~ msgid "Plural-Forms 1" 23 | #~ msgstr "Plural-Forms 0" 24 | 25 | -------------------------------------------------------------------------------- /app/controllers/components/Sessionauth.php: -------------------------------------------------------------------------------- 1 | Cookie->name = 'baker_id'; 10 | $this->Cookie->time = 3600; // or '1 hour' 11 | //$this->Cookie->path = '/bakers/preferences/'; 12 | //$this->Cookie->domain = 'example.com'; 13 | $this->Cookie->secure = false; //i.e. only sent if using secure HTTPS 14 | $this->Cookie->key = 'qSI232qs*&sXOw!'; 15 | } 16 | 17 | function sign_in($user) { 18 | 19 | //$userInstance = ClassRegistry::init('User'); 20 | $current_user = null; 21 | $remember_token = md5($user['rut']); 22 | $this->Cookie->write('remeber_token',$remember_token); 23 | $current_user = $user 24 | 25 | } 26 | } 27 | 28 | ?> -------------------------------------------------------------------------------- /app/vendors/simpletest/test/remote_test.php: -------------------------------------------------------------------------------- 1 | addTestCase(new RemoteTestCase($test_url . '?xml=yes', $test_url . '?xml=yes&dry=yes')); 16 | if (SimpleReporter::inCli()) { 17 | exit ($test->run(new TextReporter()) ? 0 : 1); 18 | } 19 | $test->run(new HtmlReporter()); 20 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY/test_plugin.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Monetary Plural Rule 1 (from plugin)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "Monetary %d = 1 (from plugin)" 21 | msgstr[1] "Monetary %d = 0 or > 1 (from plugin)" 22 | 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n>1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 2 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 0 or 1 (from core translated)" 21 | msgstr[1] "%d > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /app/models/profesor.php: -------------------------------------------------------------------------------- 1 | array( 8 | 'className' => 'User', 9 | 'foreignKey' => 'user_id' 10 | ) 11 | ); 12 | var $validate = array( 13 | 'nombre' => array( 14 | 'isUnique' => array( 15 | 'rule' => 'isUnique', 16 | 'required' => true, 17 | 'message' => 'Nombre de usuario ya ocupado' 18 | ), 19 | 'between' => array( 20 | 'rule' => array('between', 5, 15), 21 | 'message' => 'Entre 5 y 15 caracteres' 22 | ) 23 | ), 24 | 'password' => array( 25 | 'rule' => array('minLength', '5'), 26 | 'message' => 'Largo mínimo de 5 caracteres', 27 | 'allowEmpty' => 'false' 28 | ) 29 | ); 30 | } 31 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 1 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 0 or > 1 (from core translated)" 22 | 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 14 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1 (translated)" 21 | msgstr[1] "%d ends in 2 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n>1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 2 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 0 or 1 (translated)" 21 | msgstr[1] "%d > 1 (translated)" 22 | 23 | #~ msgid "Plural-Forms 1" 24 | #~ msgstr "Plural-Forms 1 (translated)" 25 | 26 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 12 | "X-Poedit-Language: Two Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 1 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 1 (translated)" 21 | msgstr[1] "%d = 0 or > 1 (translated)" 22 | 23 | #~ msgid "Plural-Forms 1" 24 | #~ msgstr "Plural-Forms 1 (translated)" 25 | 26 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/Test/MyTest.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.somename 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 | ?> 21 | This is the MyTest.php file -------------------------------------------------------------------------------- /app/views/elements/footer.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/ajax2.ctp: -------------------------------------------------------------------------------- 1 | 22 | Ajax! 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/libs/test_plugin_library.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.cases.libs 17 | * @since CakePHP(tm) v 1.2.0.5432 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginLibrary {} 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/welcome.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 17 | * @since CakePHP(tm) v 1.2.0.7629 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | ?> 21 | This is the welcome.php file in vendors directory -------------------------------------------------------------------------------- /cake/libs/view/layouts/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | This email was sent using the CakePHP Framework, http://cakephp.org. 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/Test/hello.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.Test 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 | ?> 21 | This is the hello.php file in Test directory -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/text/wide.ctp: -------------------------------------------------------------------------------- 1 | 20 | This element has some text that is just too wide to comply with email standards. 21 | -------------------------------------------------------------------------------- /app/models/propuesta.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'className' => 'User', 8 | 'foreignKey' => 'user_id' 9 | ), 10 | 'TipoIdea' => array( 11 | 'className' => 'TipoIdea', 12 | 'foreignKey' => 'tipo_idea_id' 13 | ) 14 | #'EstadoPropuesta' 15 | ); 16 | var $hasOne = array( 17 | 'Proyecto' => array( 18 | 'className' => 'Proyecto', 19 | 'dependent' => true 20 | ) 21 | ); 22 | var $hasMany = array( 23 | 'ConceptoComparacion' => array( 24 | 'className' => 'ConceptoComparacion', 25 | 'foreignKey' => 'propuesta_id') 26 | ); 27 | var $validate = array( 28 | 'nombre_propuesta' => array( 29 | 'rule' => 'notEmpty', 30 | 'messagge' => 'Este campo no puede estar vacio!' 31 | ) 32 | ); 33 | } 34 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" 12 | 13 | msgid "Plural Rule 1" 14 | msgstr "Plural Rule 5 (translated)" 15 | 16 | msgid "%d = 1" 17 | msgid_plural "%d = 0 or > 1" 18 | msgstr[0] "%d = 1 (translated)" 19 | msgstr[1] "%d = 0 or ends in 01-19 (translated)" 20 | msgstr[2] "%d everything else (translated)" 21 | 22 | #~ msgid "Plural-Forms 1" 23 | #~ msgstr "Plural-Forms 1 (translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/somename/some.name.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.somename 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 | ?> 21 | This is a file with dot in file name -------------------------------------------------------------------------------- /app/vendors/simpletest/test/socket_test.php: -------------------------------------------------------------------------------- 1 | assertFalse($error->isError()); 12 | $error->_setError('Ouch'); 13 | $this->assertTrue($error->isError()); 14 | $this->assertEqual($error->getError(), 'Ouch'); 15 | } 16 | 17 | function testClearingError() { 18 | $error = new SimpleStickyError(); 19 | $error->_setError('Ouch'); 20 | $this->assertTrue($error->isError()); 21 | $error->_clearError(); 22 | $this->assertFalse($error->isError()); 23 | } 24 | } 25 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | This email was sent using the CakePHP Framework, http://cakephp.org. -------------------------------------------------------------------------------- /cake/tests/test_app/views/posts/sequencial_nocache.ctp: -------------------------------------------------------------------------------- 1 | 20 |

Content

21 | 22 |

D. In View File

23 | log('4. in view file') ?> 24 |
-------------------------------------------------------------------------------- /cake/tests/test_app/libs/cache/test_app_cache.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.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestAppCacheEngine extends CacheEngine { 21 | 22 | } 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/test_plugin_app_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.tests.cases.libs 17 | * @since CakePHP(tm) v 1.2.0.5432 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginAppModel extends CakeTestModel {} 21 | -------------------------------------------------------------------------------- /app/models/user.php: -------------------------------------------------------------------------------- 1 | array( 8 | 'className' => 'Propuesta', 9 | 'foreignKey' => 'user_id') 10 | ); 11 | var $validate = array( 12 | 'nombre' => array( 13 | 'isUnique' => array( 14 | 'rule' => 'isUnique', 15 | 'required' => true, 16 | 'message' => 'Nombre de usuario ya ocupado' 17 | ), 18 | 'between' => array( 19 | 'rule' => array('between', 5, 15), 20 | 'message' => 'Entre 5 y 15 caracteres' 21 | ) 22 | ), 23 | 'password' => array( 24 | 'rule' => array('minLength', '5'), 25 | 'message' => 'Largo mínimo de 5 caracteres', 26 | 'allowEmpty' => 'false' 27 | ) 28 | ); 29 | } 30 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/vendors/sample/configure_test_vendor_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.sample 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 ConfigureTestVendorSample { 21 | } 22 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/layouts/email/text/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | This email was sent using the CakePHP Framework, http://cakephp.org. 24 | -------------------------------------------------------------------------------- /cake/libs/view/elements/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | ' . $line . "

\n"; 25 | endforeach; 26 | ?> -------------------------------------------------------------------------------- /cake/console/templates/skel/config/schema/i18n.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright 2005-2012, Cake Software Foundation, Inc. 4 | # 5 | # Licensed under The MIT License 6 | # Redistributions of files must retain the above copyright notice. 7 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 8 | 9 | CREATE TABLE i18n ( 10 | id int(10) NOT NULL auto_increment, 11 | locale varchar(6) NOT NULL, 12 | model varchar(255) NOT NULL, 13 | foreign_key int(10) NOT NULL, 14 | field varchar(255) NOT NULL, 15 | content mediumtext, 16 | PRIMARY KEY (id), 17 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field), 18 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key), 19 | # INDEX I18N_LOCALE_MODEL(locale, model), 20 | # INDEX I18N_FIELD(model, foreign_key, field), 21 | # INDEX I18N_ROW(model, foreign_key), 22 | INDEX locale (locale), 23 | INDEX model (model), 24 | INDEX row_id (foreign_key), 25 | INDEX field (field) 26 | ); -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 12 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2 (translated)" 22 | msgstr[2] "%d is 0 or 3-10 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/libs/cache/test_plugin_cache.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.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginCacheEngine extends CacheEngine { 21 | } 22 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/test_plugin_app_controller.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.cases.libs 17 | * @since CakePHP(tm) v 1.2.0.5432 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginAppController extends AppController { } 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/libs/log/test_app_log.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.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestAppLog { 21 | 22 | function write($type, $message) { 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 4 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 2 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | ' . $line . '

'; 25 | endforeach; 26 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 4 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d = 1 (translated)" 21 | msgstr[1] "%d = 2 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/config/load.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 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | $config['plugin_load'] = '/test_app/plugins/test_plugin/config/load.php'; 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/vendors/sample/sample_plugin.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.vendors.sample 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 SamplePluginClassTestName { 21 | } 22 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/helpers/other_helper.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 OtherHelperHelper extends AppHelper {} 21 | -------------------------------------------------------------------------------- /cake/console/templates/skel/views/elements/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | ' . $line . '

'; 25 | endforeach; 26 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 14 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1 (from core translated)" 21 | msgstr[1] "%d ends in 2 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/vendors/welcome.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.vendors 17 | * @since CakePHP(tm) v 1.2.0.7629 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | ?> 21 | This is the welcome.php file in test_plugin/vendors directory -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 8 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2-4 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/config/more.load.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 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | $config['plugin_more_load'] = '/test_app/plugins/test_plugin/config/more.load.php'; 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 8 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2-4 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/controllers/components/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 OtherComponentComponent extends Object { 21 | } 22 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 3 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends 1 but not 11 (from core translated)" 21 | msgstr[1] "%d everything else (from core translated)" 22 | msgstr[2] "%d = 0 (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/libs/log/test_plugin_log.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.cases.libs 17 | * @since CakePHP(tm) v 1.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginLog { 21 | 22 | function write($type, $message) { 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /cake/libs/view/errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 20 |

21 |

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çalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4;\n" 12 | "X-Poedit-Language: Five Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 11 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 2 (translated)" 22 | msgstr[2] "%d is 3-6 (translated)" 23 | msgstr[3] "%d is 7-10 (translated)" 24 | msgstr[4] "%d everything else (translated)" 25 | 26 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || (n%100>=1 && n%100<=10) ? 1 : n%100>=11 && n%100<=20 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 13 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d is 0 or ends in 01-10 (translated)" 22 | msgstr[2] "%d ends in 11-20 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 3 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends 1 but not 11 (translated)" 21 | msgstr[1] "%d everything else (translated)" 22 | msgstr[2] "%d = 0 (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 5 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d = 1 (from core translated)" 21 | msgstr[1] "%d = 0 or ends in 01-19 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/libs/view/errors/error404.ctp: -------------------------------------------------------------------------------- 1 | 20 |

21 |

22 | : 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 Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 9 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /app/tests/cases/controllers/pages_controller.test.php: -------------------------------------------------------------------------------- 1 | Comenzando Test Case'; 6 | } 7 | 8 | function endCase() { 9 | echo '

Terminado Test Case

'; 10 | } 11 | 12 | function startTest($method) { 13 | echo '

Comenzando método ' . $method . '

'; 14 | } 15 | 16 | function endTest($method) { 17 | echo '
'; 18 | } 19 | 20 | function testHome() { 21 | $result = $this->testAction('/pages/home'); 22 | debug($result); 23 | } 24 | 25 | function testAbout() { 26 | $result = $this->testAction('/pages/about'); 27 | debug($result); 28 | } 29 | 30 | function testHelp() { 31 | $result = $this->testAction('/pages/help'); 32 | debug($result); 33 | } 34 | 35 | function testContact() { 36 | $result = $this->testAction('/pages/contact'); 37 | debug($result); 38 | } 39 | } 40 | ?> -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 9 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d is 1 (translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/views/helpers/plugged_helper.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 PluggedHelperHelper extends AppHelper { 21 | var $helpers = array('TestPlugin.OtherHelper'); 22 | } 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/models/persister_one.php: -------------------------------------------------------------------------------- 1 | \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 12 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2 (from core translated)" 22 | msgstr[2] "%d is 0 or 3-10 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 6 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1, not 11 (from core translated)" 21 | msgstr[1] "%d everything else (from core translated)" 22 | msgstr[2] "%d ends in 0 or ends in 10-20 (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 6 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1, not 11 (translated)" 21 | msgstr[1] "%d everything else (translated)" 22 | msgstr[2] "%d ends in 0 or ends in 10-20 (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 7 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1, not 11 (from core translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)" 22 | msgstr[2] "%d everything else (from core translated)" 23 | 24 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/controllers/components/plugins_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 PluginsComponentComponent extends Object { 21 | var $components = array('TestPlugin.OtherComponent'); 22 | } 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/text/custom.ctp: -------------------------------------------------------------------------------- 1 | 26 | Here is your value: -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 10 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1 (translated)" 21 | msgstr[1] "%d ends in 2 (translated)" 22 | msgstr[2] "%d ends in 03-04 (translated)" 23 | msgstr[3] "%d everything else (translated)" 24 | 25 | #~ msgid "Plural-Forms 1" 26 | #~ msgstr "Plural-Forms 1 (translated)" 27 | 28 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" 12 | "X-Poedit-Language: Three Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1" 16 | msgstr "Plural Rule 7 (translated)" 17 | 18 | msgid "%d = 1" 19 | msgid_plural "%d = 0 or > 1" 20 | msgstr[0] "%d ends in 1, not 11 (translated)" 21 | msgstr[1] "%d ends in 2-4, not 12-14 (translated)" 22 | msgstr[2] "%d everything else (translated)" 23 | 24 | #~ msgid "Plural-Forms 1" 25 | #~ msgstr "Plural-Forms 1 (translated)" 26 | 27 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/test_plugin_authors.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
  • 5 | 6 | 7 | 8 |
    9 |

    10 | 11 | 12 | 13 | 14 |

    15 | 16 | link('', array('controller' => 'users', 'action' => 'accept_student', $estudiante['Estudiante']['user_id'], $estudiante['Estudiante']['id']), array('class' => 'btn btn-success', 'escape' => false))?> 17 | 18 |
    19 |
  • 20 | 21 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: CakePHP I18N & I10N Team \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 10 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d ends in 1 (from core translated)" 21 | msgstr[1] "%d ends in 2 (from core translated)" 22 | msgstr[2] "%d ends in 03-04 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/controllers/components/test_plugin_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 TestPluginComponentComponent extends Object { 21 | var $components = array('TestPlugin.TestPluginOtherComponent'); 22 | } 23 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/elements/email/html/custom.ctp: -------------------------------------------------------------------------------- 1 | 26 |

    Here is your value:

    -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/models/test_plugin_comment.php: -------------------------------------------------------------------------------- 1 | \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || (n%100>=1 && n%100<=10) ? 1 : n%100>=11 && n%100<=20 ? 2 : 3;\n" 12 | "X-Poedit-Language: Four Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 13 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 0 or ends in 01-10 (from core translated)" 22 | msgstr[2] "%d ends in 11-20 (from core translated)" 23 | msgstr[3] "%d everything else (from core translated)" 24 | 25 | -------------------------------------------------------------------------------- /cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/core.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CakePHP Testsuite\n" 4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Renan Gonçalves \n" 7 | "Language-Team: CakePHP I18N & I10N Team \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4;\n" 12 | "X-Poedit-Language: Five Forms of Plurals\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | 15 | msgid "Plural Rule 1 (from core)" 16 | msgstr "Plural Rule 11 (from core translated)" 17 | 18 | msgid "%d = 1 (from core)" 19 | msgid_plural "%d = 0 or > 1 (from core)" 20 | msgstr[0] "%d is 1 (from core translated)" 21 | msgstr[1] "%d is 2 (from core translated)" 22 | msgstr[2] "%d is 3-6 (from core translated)" 23 | msgstr[3] "%d is 7-10 (from core translated)" 24 | msgstr[4] "%d everything else (from core translated)" 25 | 26 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/cache_layout.ctp: -------------------------------------------------------------------------------- 1 | 20 |

    This is regular text

    21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |

    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 | <?php echo $title_for_layout;?> 25 | 26 | 27 | 28 | 29 | 30 |

    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 | <?php echo $title_for_layout;?> 24 | 25 | 26 | 27 | 28 |

    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 |
    5 |

    La propuesta más parecida es

    6 | 7 |
    8 |
    9 |
    10 | ... 11 |
    12 |

    13 |

    Autor:

    14 |

    15 |
    16 |
    17 |
    18 |
    19 |

    Esta propuesta tiene una similitud de

    20 |

    %

    21 |
    22 |
    23 |
    24 | -------------------------------------------------------------------------------- /cake/tests/test_app/views/layouts/email/html/default.ctp: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | 24 | <?php echo $title_for_layout;?> 25 | 26 | 27 | 28 | 29 | 30 |

    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 | <?php echo $title_for_layout;?> 25 | 26 | 27 | 28 | 29 | 30 |

    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 |
    2 |
    3 | Html->image('logo_diinf.png', array('url' => 'http://www.informatica.usach.cl/', 'id' => 'info_img')); ?> 4 |
    5 |
    6 | Html->image('logo_usach.png', array('url' => 'http://www.usach.cl/', 'id' => 'usach_img')); ?> 7 |
    8 |
    9 |

    10 |
    11 |
    12 |

    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 |
    14 |
    15 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin/vendors/shells/example.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.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 ExampleShell 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 TestPlugin.ExampleShell'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /cake/libs/overloadable.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_two.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 ExampleShell 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 TestPluginTwo.ExampleShell'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/tests/cases/models/user.test.php: -------------------------------------------------------------------------------- 1 | User =& ClassRegistry::init('User'); 23 | $this->User->Profesor =& ClassRegistry::init('Profesor'); 24 | $this->User->Estudiante =& ClassRegistry::init('Estudiante'); 25 | $this->User->Tutor =& ClassRegistry::init('Tutor'); 26 | $this->User->Inversionista =& ClassRegistry::init('Inversionista'); 27 | $this->User->Visita =& ClassRegistry::init('Visita'); 28 | 29 | 30 | } 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /cake/VERSION.txt: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////////////////////////// 2 | // +--------------------------------------------------------------------------------------------+ // 3 | // CakePHP Version 4 | // 5 | // Holds a static string representing the current version of CakePHP 6 | // 7 | // CakePHP(tm) : Rapid Development Framework (http://cakephp.org) 8 | // Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 9 | // 10 | // Licensed under The MIT License 11 | // Redistributions of files must retain the above copyright notice. 12 | // 13 | // @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) 14 | // @link http://cakephp.org 15 | // @package cake 16 | // @subpackage cake.cake.libs 17 | // @since CakePHP(tm) v 0.2.9 18 | // @license MIT License (http://www.opensource.org/licenses/mit-license.php) 19 | // +--------------------------------------------------------------------------------------------+ // 20 | //////////////////////////////////////////////////////////////////////////////////////////////////// 21 | 1.3.17 22 | 23 | -------------------------------------------------------------------------------- /cake/console/templates/skel/app_model.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 | textarea('Propuesta.' . $index . '.descripcion_concepto_comparacio', array('class' => 'form-control', 'cols' => '4')); ?> 5 | hidden('Propuesta.' . $index . '.titulo_concepto_comparacion', array('value' => $titulo)); ?> 6 | hidden('Propuesta.' . $index . '.propuesta_id', array('value' => $propuesta['Propuesta']['id'])); ?> 7 |
    8 |
    9 |
    10 | input('Propuesta.' . $index . '.palabras_clave', array('type' => 'text', 'class' => 'form-control')); ?> 11 | hidden('Propuesta.' . $index . '.tags', array('value' => '')); ?> 12 | 13 | Agregar 14 | 15 |
    16 |
    17 |
    18 |
    19 |
    20 | -------------------------------------------------------------------------------- /cake/tests/lib/cake_web_test_case.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.lib 17 | * @since CakePHP(tm) v 1.2.0.4433 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | 21 | /** 22 | * Ignore base class. 23 | */ 24 | SimpleTest::ignore('CakeWebTestCase'); 25 | 26 | /** 27 | * Simple wrapper for the WebTestCase provided by SimpleTest 28 | * 29 | * @package cake 30 | * @subpackage cake.cake.tests.lib 31 | */ 32 | class CakeWebTestCase extends WebTestCase { 33 | } 34 | -------------------------------------------------------------------------------- /cake/tests/test_app/plugins/test_plugin_two/vendors/shells/welcome.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_two.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 WelcomeShell extends Shell { 21 | 22 | /** 23 | * say_hello method 24 | * 25 | * @access public 26 | * @return void 27 | */ 28 | function say_hello() { 29 | $this->out('This is the say_hello method called from TestPluginTwo.WelcomeShell'); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /cake/console/templates/skel/app_controller.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.3 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | class TestPluginController extends TestPluginAppController { 21 | var $uses = array(); 22 | 23 | function index() { 24 | $this->autoRender = false; 25 | } 26 | 27 | function add() { 28 | $this->autoRender = false; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /cake/tests/lib/templates/xdebug.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.4433 18 | * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License 19 | */ 20 | ?> 21 | 22 |
    23 |

    Xdebug is not installed

    24 |

    You must install Xdebug to use the CakePHP(tm) Code Coverage Analyzation.

    25 |

    Learn How To Install Xdebug

    26 |
    27 | -------------------------------------------------------------------------------- /cake/tests/test_app/controllers/tests_apps_controller.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 TestsAppsController extends AppController { 21 | var $name = 'TestsApps'; 22 | var $uses = array(); 23 | 24 | function index() { 25 | } 26 | 27 | function some_method() { 28 | return 5; 29 | } 30 | 31 | function set_action() { 32 | $this->set('var', 'string'); 33 | $this->render('index'); 34 | } 35 | } 36 | --------------------------------------------------------------------------------