updated links for docs, replaced kohanaphp.com to kohanaframework.org

This commit is contained in:
Valery Victorovsky 2010-05-21 05:56:46 +08:00 committed by Woody Gilk
parent 6a55c3bb08
commit 703b3d7eea
3 changed files with 10 additions and 11 deletions

View file

@ -1,4 +1,3 @@
# Kohana PHP Framework, version 3.0 (dev) # Kohana PHP Framework, version 3.0 (dev)
This is the current development version of [Kohana](http://kohanaphp.com/). This is the current development version of [Kohana](http://kohanaframework.org/).

View file

@ -5,7 +5,7 @@
/** /**
* Set the default time zone. * Set the default time zone.
* *
* @see http://docs.kohanaphp.com/about.configuration * @see http://kohanaframework.org/guide/using.configuration
* @see http://php.net/timezones * @see http://php.net/timezones
*/ */
date_default_timezone_set('America/Chicago'); date_default_timezone_set('America/Chicago');
@ -13,7 +13,7 @@ date_default_timezone_set('America/Chicago');
/** /**
* Set the default locale. * Set the default locale.
* *
* @see http://docs.kohanaphp.com/about.configuration * @see http://kohanaframework.org/guide/using.configuration
* @see http://php.net/setlocale * @see http://php.net/setlocale
*/ */
setlocale(LC_ALL, 'en_US.utf-8'); setlocale(LC_ALL, 'en_US.utf-8');
@ -21,7 +21,7 @@ setlocale(LC_ALL, 'en_US.utf-8');
/** /**
* Enable the Kohana auto-loader. * Enable the Kohana auto-loader.
* *
* @see http://docs.kohanaphp.com/about.autoloading * @see http://kohanaframework.org/guide/using.autoloading
* @see http://php.net/spl_autoload_register * @see http://php.net/spl_autoload_register
*/ */
spl_autoload_register(array('Kohana', 'auto_load')); spl_autoload_register(array('Kohana', 'auto_load'));

View file

@ -4,14 +4,14 @@
* The directory in which your application specific resources are located. * The directory in which your application specific resources are located.
* The application directory must contain the bootstrap.php file. * The application directory must contain the bootstrap.php file.
* *
* @see http://docs.kohanaphp.com/install#application * @see http://kohanaframework.org/guide/about.install#application
*/ */
$application = 'application'; $application = 'application';
/** /**
* The directory in which your modules are located. * The directory in which your modules are located.
* *
* @see http://docs.kohanaphp.com/install#modules * @see http://kohanaframework.org/guide/about.install#modules
*/ */
$modules = 'modules'; $modules = 'modules';
@ -19,7 +19,7 @@ $modules = 'modules';
* The directory in which the Kohana resources are located. The system * The directory in which the Kohana resources are located. The system
* directory must contain the classes/kohana.php file. * directory must contain the classes/kohana.php file.
* *
* @see http://docs.kohanaphp.com/install#system * @see http://kohanaframework.org/guide/about.install#system
*/ */
$system = 'system'; $system = 'system';
@ -27,7 +27,7 @@ $system = 'system';
* The default extension of resource files. If you change this, all resources * The default extension of resource files. If you change this, all resources
* must be renamed to use the new extension. * must be renamed to use the new extension.
* *
* @see http://docs.kohanaphp.com/install#ext * @see http://kohanaframework.org/guide/about.install#ext
*/ */
define('EXT', '.php'); define('EXT', '.php');
@ -40,7 +40,7 @@ define('EXT', '.php');
* *
* In a production environment, it is safe to ignore notices and strict warnings. * In a production environment, it is safe to ignore notices and strict warnings.
* Disable them by using: E_ALL ^ E_NOTICE * Disable them by using: E_ALL ^ E_NOTICE
* *
* When using a legacy application with PHP >= 5.3, it is recommended to disable * When using a legacy application with PHP >= 5.3, it is recommended to disable
* deprecated notices. Disable with: E_ALL & ~E_DEPRECATED * deprecated notices. Disable with: E_ALL & ~E_DEPRECATED
*/ */
@ -50,7 +50,7 @@ error_reporting(E_ALL | E_STRICT);
* End of standard configuration! Changing any of the code below should only be * End of standard configuration! Changing any of the code below should only be
* attempted by those with a working knowledge of Kohana internals. * attempted by those with a working knowledge of Kohana internals.
* *
* @see http://docs.kohanaphp.com/bootstrap * @see http://kohanaframework.org/guide/using.configuration
*/ */
// Set the full path to the docroot // Set the full path to the docroot