Bug 106386 Correct misspellings in source code

r=glennrp@gmail.com, bclary@bclary.com rs=brendan


git-svn-id: svn://10.0.0.236/trunk@214563 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org 2006-11-01 23:10:21 +00:00
parent 2f54cdecc9
commit 2626907c10
6 changed files with 24 additions and 24 deletions

View File

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: index.php,v 1.1.1.1 2006-06-09 18:14:09 mike.morgan%oregonstate.edu Exp $ */
/* SVN FILE: $Id: index.php,v 1.2 2006-11-01 23:10:20 timeless%mozdev.org Exp $ */
/**
* Short description for file.
*
@ -21,9 +21,9 @@
* @package cake
* @subpackage cake.app.webroot
* @since CakePHP v 0.2.9
* @version $Revision: 1.1.1.1 $
* @version $Revision: 1.2 $
* @modifiedby $LastChangedBy: phpnut $
* @lastmodified $Date: 2006-06-09 18:14:09 $
* @lastmodified $Date: 2006-11-01 23:10:20 $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
@ -40,7 +40,7 @@
*/
if (!defined('ROOT')) {
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('ROOT', DS.'home'.DS.'morgamic'.DS.'public_html');
}
if (!defined('APP_DIR')) {
@ -53,7 +53,7 @@
*/
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('CAKE_CORE_INCLUDE_PATH', DS.'usr'.DS.'local'.DS.'lib'.DS.'php'.DS.'cake');
}
///////////////////////////////

View File

@ -8,7 +8,7 @@
if (!defined('ROOT'))
{
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('ROOT', '');
}
@ -21,7 +21,7 @@
if (!defined('CAKE_CORE_INCLUDE_PATH'))
{
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('CAKE_CORE_INCLUDE_PATH', '');
}

View File

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: index.php,v 1.1.1.1 2006-07-07 18:09:28 wclouser%mozilla.com Exp $ */
/* SVN FILE: $Id: index.php,v 1.2 2006-11-01 23:10:21 timeless%mozdev.org Exp $ */
/**
* Short description for file.
@ -22,9 +22,9 @@
* @package cake
* @subpackage cake.app.webroot
* @since CakePHP v 0.2.9
* @version $Revision: 1.1.1.1 $
* @version $Revision: 1.2 $
* @modifiedby $LastChangedBy: phpnut $
* @lastmodified $Date: 2006-07-07 18:09:28 $
* @lastmodified $Date: 2006-11-01 23:10:21 $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
#apd_set_pprof_trace('/tmp/survey.trace');
@ -48,7 +48,7 @@ if (!defined('DS'))
if (!defined('ROOT'))
{
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('ROOT', dirname(dirname(dirname(__FILE__))));
}
@ -66,7 +66,7 @@ if (!defined('APP_DIR'))
if (!defined('CAKE_CORE_INCLUDE_PATH'))
{
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}

View File

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: index.php,v 1.2 2006-08-15 03:12:10 sancus%off.net Exp $ */
/* SVN FILE: $Id: index.php,v 1.3 2006-11-01 23:10:21 timeless%mozdev.org Exp $ */
/**
* Short description for file.
*
@ -21,9 +21,9 @@
* @package cake
* @subpackage cake.app.webroot
* @since CakePHP v 0.2.9
* @version $Revision: 1.2 $
* @version $Revision: 1.3 $
* @modifiedby $LastChangedBy: phpnut $
* @lastmodified $Date: 2006-08-15 03:12:10 $
* @lastmodified $Date: 2006-11-01 23:10:21 $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
@ -40,7 +40,7 @@
*/
if (!defined('ROOT')) {
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('ROOT', dirname(dirname(dirname(__FILE__))));
}
if (!defined('APP_DIR')) {
@ -53,7 +53,7 @@
*/
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}
///////////////////////////////

View File

@ -3,7 +3,7 @@
* base include file for SimpleTest
* @package SimpleTest
* @subpackage WebTester
* @version $Id: url.php,v 1.1 2006-08-27 02:06:39 shaver%mozilla.org Exp $
* @version $Id: url.php,v 1.2 2006-11-01 23:10:21 timeless%mozdev.org Exp $
*/
/**#@+
@ -512,7 +512,7 @@
}
/**
* A pipe seperated list of all TLDs that result in two part
* A pipe separated list of all TLDs that result in two part
* domain names.
* @return string Pipe separated list.
* @access public

View File

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: index.php,v 1.1 2006-05-31 00:21:16 wclouser%mozilla.com Exp $ */
/* SVN FILE: $Id: index.php,v 1.2 2006-11-01 23:10:21 timeless%mozdev.org Exp $ */
/**
* Short description for file.
@ -22,9 +22,9 @@
* @package cake
* @subpackage cake.app.webroot
* @since CakePHP v 0.2.9
* @version $Revision: 1.1 $
* @version $Revision: 1.2 $
* @modifiedby $LastChangedBy: phpnut $
* @lastmodified $Date: 2006-05-31 00:21:16 $
* @lastmodified $Date: 2006-11-01 23:10:21 $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
@ -45,7 +45,7 @@ if (!defined('DS'))
if (!defined('ROOT'))
{
//define('ROOT', 'FULL PATH TO DIRECTORY WHERE APP DIRECTORY IS LOCATED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('ROOT', dirname(dirname(dirname(__FILE__))));
}
@ -62,7 +62,7 @@ if (!defined('APP_DIR'))
if (!defined('CAKE_CORE_INCLUDE_PATH'))
{
//define ('CAKE_CORE_INCLUDE_PATH', FULL PATH TO DIRECTORY WHERE CAKE CORE IS INSTALLED DO NOT ADD A TRAILING DIRECTORY SEPARATOR';
//You should also use the DS define to seperate your directories
//You should also use the DS define to separate your directories
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}