Skip to content

Commit

Permalink
Updated license link, and copyright dates. Closes #2325
Browse files Browse the repository at this point in the history
  • Loading branch information
isaiah committed Nov 10, 2009
1 parent 3f0681b commit 612fde0
Show file tree
Hide file tree
Showing 80 changed files with 143 additions and 139 deletions.
2 changes: 1 addition & 1 deletion Kohana License.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h2>Kohana License Agreement</h2>

<p>This license is a legal agreement between you and the Kohana Software Foundation for the use of Kohana Framework (the "Software"). By obtaining the Software you agree to comply with the terms and conditions of this license.</p>

<p>Copyright (c) 2007-2008 Kohana Team<br/>All rights reserved.</p>
<p>Copyright (c) 2007-2009 Kohana Team<br/>All rights reserved.</p>

<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>

Expand Down
4 changes: 2 additions & 2 deletions application/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/

// Kohana benchmarks are prefixed to prevent collisions
Expand Down
4 changes: 2 additions & 2 deletions system/controllers/captcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*
* @package Captcha
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class Captcha_Controller extends Controller {

Expand Down
4 changes: 2 additions & 2 deletions system/controllers/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
abstract class Template_Controller extends Controller {

Expand Down
4 changes: 2 additions & 2 deletions system/core/Benchmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
final class Benchmark {

Expand Down
4 changes: 2 additions & 2 deletions system/core/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
* @link http://docs.kohanaphp.com/general/events
*/
abstract class Event_Core {
Expand Down
4 changes: 2 additions & 2 deletions system/core/Kohana.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/

// Test of Kohana is running in Windows
Expand Down
2 changes: 1 addition & 1 deletion system/core/Kohana_Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package KohanaConfig
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class Kohana_Config_Core implements ArrayAccess {

Expand Down
4 changes: 2 additions & 2 deletions system/core/Kohana_Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/

class Kohana_Exception_Core extends Exception {
Expand Down
26 changes: 13 additions & 13 deletions system/helpers/arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class arr_Core {

Expand Down Expand Up @@ -102,20 +102,20 @@ public static function extract(array $search, $keys)
$found = array();
foreach ($keys as $key)
{
$found[$key] = isset($search[$key]) ? $search[$key] : NULL;
$found[$key] = isset($search[$key]) ? 'test' : NULL; //$search[$key] : NULL;
}

return $found;
}

/**
* Get the value of array[key]. If it doesn't exist, return default.
*
* @param array array to search
* @param string key name
* @param mixed default value
* @return mixed
*/
/**
* Get the value of array[key]. If it doesn't exist, return default.
*
* @param array array to search
* @param string key name
* @param mixed default value
* @return mixed
*/
public static function get(array $array, $key, $default = NULL)
{
return isset($array[$key]) ? $array[$key] : $default;
Expand Down Expand Up @@ -255,7 +255,7 @@ public static function to_object(array $array, $class = 'stdClass')

return $object;
}

/**
* Returns specific key/column from an array of objects.
*
Expand Down
4 changes: 2 additions & 2 deletions system/helpers/cookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class cookie_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/date.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class date_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/helpers/db.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class db_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/helpers/download.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class download_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/helpers/expires.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class expires_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class feed_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/file.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class file_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class form_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/format.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class format_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/html.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class html_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/inflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class inflector_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/num.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class num_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/remote.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class remote_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/request.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class request_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/security.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class security_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/helpers/text.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class text_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/upload.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class upload_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/url.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class url_Core {

Expand Down
4 changes: 2 additions & 2 deletions system/helpers/valid.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class valid_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @package Cache
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class Cache_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Cache_Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/

class Cache_Exception_Core extends Kohana_Exception {}
Expand Down
4 changes: 2 additions & 2 deletions system/libraries/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
* @copyright (c) 2007-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
abstract class Controller_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
abstract class Database_Core {

Expand Down
2 changes: 1 addition & 1 deletion system/libraries/Database_Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license.html
* @license http://kohanaphp.com/license
*/
class Database_Builder_Core {

Expand Down
Loading

0 comments on commit 612fde0

Please sign in to comment.