Upgraded to KH 3.3.0

This commit is contained in:
Deon George
2012-11-09 23:18:50 +11:00
parent 863bc1150a
commit ea36639638
1293 changed files with 96042 additions and 9545 deletions

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
/**
* Credit card validation configuration.
*

View File

@@ -1,9 +1,8 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(
CURLOPT_USERAGENT => 'Mozilla/5.0 (compatible; Kohana v'.Kohana::VERSION.' +http://kohanaframework.org/)',
CURLOPT_CONNECTTIMEOUT => 5,
CURLOPT_TIMEOUT => 5,
CURLOPT_HEADERFUNCTION => array('Request_Client_External', '_parse_headers'),
CURLOPT_HEADER => FALSE,
);

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(
@@ -50,22 +50,49 @@ return array(
),
'irregular' => array(
'appendix' => 'appendices',
'cactus' => 'cacti',
'calf' => 'calves',
'child' => 'children',
'clothes' => 'clothing',
'man' => 'men',
'movie' => 'movies',
'person' => 'people',
'woman' => 'women',
'mouse' => 'mice',
'crisis' => 'crises',
'criterion' => 'criteria',
'curriculum' => 'curricula',
'diagnosis' => 'diagnoses',
'elf' => 'elves',
'ellipsis' => 'ellipses',
'foot' => 'feet',
'goose' => 'geese',
'ox' => 'oxen',
'leaf' => 'leaves',
'course' => 'courses',
'size' => 'sizes',
'was' => 'were',
'is' => 'are',
'verse' => 'verses',
'hero' => 'heroes',
'purchase' => 'purchases',
'hoof' => 'hooves',
'hypothesis' => 'hypotheses',
'is' => 'are',
'knife' => 'knives',
'leaf' => 'leaves',
'life' => 'lives',
'loaf' => 'loaves',
'man' => 'men',
'mouse' => 'mice',
'nucleus' => 'nuclei',
'oasis' => 'oases',
'octopus' => 'octopi',
'ox' => 'oxen',
'paralysis' => 'paralyses',
'parenthesis' => 'parentheses',
'person' => 'people',
'phenomenon' => 'phenomena',
'potato' => 'potatoes',
'quiz' => 'quizzes',
'radius' => 'radii',
'scarf' => 'scarves',
'stimulus' => 'stimuli',
'syllabus' => 'syllabi',
'synthesis' => 'syntheses',
'thief' => 'thieves',
'tooth' => 'teeth',
'was' => 'were',
'wharf' => 'wharves',
'wife' => 'wives',
'woman' => 'women',
'release' => 'releases',
),
);

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
/**
* A list of mime types. Our list is generally more complete and accurate than
* the operating system MIME list.
@@ -80,7 +80,7 @@ return array
'jpe' => array('image/jpeg', 'image/pjpeg'),
'jpeg' => array('image/jpeg', 'image/pjpeg'),
'jpg' => array('image/jpeg', 'image/pjpeg'),
'js' => array('application/x-javascript'),
'js' => array('application/javascript'),
'json' => array('application/json'),
'latex' => array('application/x-latex'),
'lha' => array('application/octet-stream'),
@@ -193,6 +193,7 @@ return array
'wav' => array('audio/x-wav'),
'wax' => array('audio/x-ms-wax'),
'wbxml' => array('application/wbxml'),
'webm' => array('video/webm'),
'wm' => array('video/x-ms-wm'),
'wma' => array('audio/x-ms-wma'),
'wmd' => array('application/x-ms-wmd'),

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(
'cookie' => array(

View File

@@ -1,8 +1,9 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(
'platform' => array(
'windows nt 6.2' => 'Windows 8',
'windows nt 6.1' => 'Windows 7',
'windows nt 6.0' => 'Windows Vista',
'windows nt 5.2' => 'Windows 2003',
@@ -94,13 +95,14 @@ return array(
),
'robot' => array(
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'askjeeves' => 'AskJeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos',
'googlebot' => 'Googlebot',
'msnbot' => 'MSNBot',
'facebookexternalhit' => 'Facebook',
'slurp' => 'Inktomi Slurp',
'yahoo' => 'Yahoo',
'askjeeves' => 'AskJeeves',
'fastcrawler' => 'FastCrawler',
'infoseek' => 'InfoSeek Robot 1.0',
'lycos' => 'Lycos',
),
);

View File

@@ -1,4 +1,4 @@
<?php defined('SYSPATH') or die('No direct script access.');
<?php defined('SYSPATH') OR die('No direct script access.');
return array(
// Leave this alone
@@ -17,7 +17,7 @@ return array(
'description' => 'Documentation for Kohana core/system.',
// Copyright message, shown in the footer for this module
'copyright' => '&copy; 20082010 Kohana Team',
'copyright' => '&copy; 20082012 Kohana Team',
)
)
);