Changeset 2314
- Timestamp:
- 03/17/2008 08:00:13 PM (8 months ago)
- Location:
- trunk
- Files:
-
- 6 modified
-
application/config/config.php (modified) (2 diffs)
-
application/controllers/examples.php (modified) (1 diff)
-
application/controllers/welcome.php (modified) (1 diff)
-
modules/auth/controllers/auth.php (modified) (1 diff)
-
modules/forge/controllers/forge_demo.php (modified) (1 diff)
-
modules/gmaps/controllers/google_map.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r2178 r2314 5 5 * and a site_protocol is specified, the domain will be auto-detected. 6 6 */ 7 $config['site_domain'] = '/kohana/ ';7 $config['site_domain'] = '/kohana/trunk/'; 8 8 9 9 /** … … 66 66 $config['modules'] = array 67 67 ( 68 //MODPATH.'auth', // Authentication68 MODPATH.'auth', // Authentication 69 69 // MODPATH.'forge', // Form generation 70 70 // MODPATH.'kodoc', // Self-generating documentation -
trunk/application/controllers/examples.php
r2233 r2314 3 3 * Contains examples of various Kohana library examples. You can access these 4 4 * samples in your own installation of Kohana by going to ROOT_URL/examples. 5 * This controller should NOT be used in production. It is for demonstration 6 * purposes only! 5 7 * 6 8 * $Id$ -
trunk/application/controllers/welcome.php
r2252 r2314 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * @package Core 3 * Default Kohana controller. This controller should NOT be used in production. 4 * It is for demonstration purposes only! 4 5 * 5 * Default Kohana controller. 6 * @package Core 7 * @author Kohana Team 8 * @copyright (c) 2007-2008 Kohana Team 9 * @license http://kohanaphp.com/license.html 6 10 */ 7 11 class Welcome_Controller extends Controller { -
trunk/modules/auth/controllers/auth.php
r2235 r2314 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 3 class Auth_Controller extends Controller { 2 /** 3 * Auth module demo controller. This controller should NOT be used in production. 4 * It is for demonstration purposes only! 5 * 6 * $Id$ 7 * 8 * @package Auth 9 * @author Kohana Team 10 * @copyright (c) 2007-2008 Kohana Team 11 * @license http://kohanaphp.com/license.html 12 */ 13 class Auth_Demo_Controller extends Controller { 4 14 5 15 // Do not allow to run in production -
trunk/modules/forge/controllers/forge_demo.php
r2229 r2314 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Forge module demo controller. This controller should NOT be used in production. 4 * It is for demonstration purposes only! 5 * 6 * $Id$ 7 * 8 * @package Forge 9 * @author Kohana Team 10 * @copyright (c) 2007-2008 Kohana Team 11 * @license http://kohanaphp.com/license.html 12 */ 3 13 class Forge_demo_Controller extends Controller { 4 14 -
trunk/modules/gmaps/controllers/google_map.php
r2229 r2314 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Gmaps module demo controller. 3 * Gmaps module demo controller. This controller should NOT be used in production. 4 * It is for demonstration purposes only! 4 5 * 5 6 * $Id$
