diff --git a/app/app_controller.php b/app/app_controller.php index 5329c4f2d..2427ea69e 100644 --- a/app/app_controller.php +++ b/app/app_controller.php @@ -15,7 +15,8 @@ /** * Purpose: AppController - * Enter description here... + * This file is application-wide controller file. You can put all + * application-wide controller-related methods here. * * @filesource * @author Cake Authors/Developers @@ -31,8 +32,8 @@ */ /** - * Enter description here... - * + * Add your application-wide methods in the class below, your controllers + * will be inheriting them. * * @package cake * @subpackage cake.app @@ -42,4 +43,4 @@ class AppController extends Controller { } -?> \ No newline at end of file +?> diff --git a/app/app_model.php b/app/app_model.php index 664d12d12..d344e0189 100644 --- a/app/app_model.php +++ b/app/app_model.php @@ -15,7 +15,8 @@ /** * Purpose: AppModel - * Enter description here... + * This file is application-wide model file. You can put all + * application-wide model-related methods here. * * @filesource * @author Cake Authors/Developers @@ -31,8 +32,8 @@ */ /** - * Enter description here... - * + * Add your application-wide methods in the class below, your models + * will be inheriting them. * * @package cake * @subpackage cake.app @@ -42,4 +43,4 @@ class AppModel extends Model { } -?> \ No newline at end of file +?> diff --git a/index.php b/index.php index e6368610d..e45fdd453 100644 --- a/index.php +++ b/index.php @@ -14,7 +14,8 @@ ////////////////////////////////////////////////////////////////////////// /** - * Enter description here... + * This file collects requests if no mod_rewrite is avilable and / is used + * instead of /public/ as a web root. * * @filesource * @author Cake Authors/Developers @@ -29,9 +30,9 @@ */ /** - * Enter description here... - * - */ + * We need to redefine some constants and variables, so that Cake knows it is + * working without mod_rewrite. + */ define ('BASE_URL', $_SERVER['SCRIPT_NAME']); define ('ROOT', dirname($_SERVER['SCRIPT_FILENAME']).'/');