Changeset 1382

Show
Ignore:
Timestamp:
12/02/2007 02:25:53 PM (12 months ago)
Author:
Shadowhand
Message:

Updated utf8/* files with phpdoc comments. Phew, all done!

Location:
trunk/system/core/utf8
Files:
24 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/core/utf8/from_unicode.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: from_unicode 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::from_unicode 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _from_unicode($arr) 
    1312{ 
  • trunk/system/core/utf8/ltrim.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: ltrim 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::ltrim 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _ltrim($str, $charlist = NULL) 
    1312{ 
  • trunk/system/core/utf8/ord.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: ord 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::ord 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _ord($chr) 
    1312{ 
  • trunk/system/core/utf8/rtrim.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: rtrim 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::rtrim 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _rtrim($str, $charlist = NULL) 
    1312{ 
  • trunk/system/core/utf8/str_ireplace.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: str_ireplace 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::str_ireplace 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _str_ireplace($search, $replace, $str, & $count = NULL) 
    1312{ 
  • trunk/system/core/utf8/str_pad.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: str_pad 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::str_pad 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _str_pad($str, $final_str_length, $pad_str = ' ', $pad_type = STR_PAD_RIGHT) 
    1312{ 
  • trunk/system/core/utf8/str_split.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: str_split 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::str_split 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _str_split($str, $split_length = 1) 
    1312{ 
  • trunk/system/core/utf8/strcasecmp.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strcasecmp 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strcasecmp 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strcasecmp($str1, $str2) 
    1312{ 
  • trunk/system/core/utf8/strcspn.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strcspn 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strcspn 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strcspn($str, $mask, $offset = NULL, $length = NULL) 
    1312{ 
  • trunk/system/core/utf8/stristr.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: stristr 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::stristr 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _stristr($str, $search) 
    1312{ 
  • trunk/system/core/utf8/strlen.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strlen 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strlen 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strlen($str) 
    1312{ 
  • trunk/system/core/utf8/strpos.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strpos 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strpos 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strpos($str, $search, $offset = 0) 
    1312{ 
  • trunk/system/core/utf8/strrev.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strrev 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strrev 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strrev($str) 
    1312{ 
  • trunk/system/core/utf8/strrpos.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strrpos 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strrpos 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strrpos($str, $search, $offset = 0) 
    1312{ 
  • trunk/system/core/utf8/strspn.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strspn 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strspn 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strspn($str, $mask, $offset = NULL, $length = NULL) 
    1312{ 
  • trunk/system/core/utf8/strtolower.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strtolower 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strtolower 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strtolower($str) 
    1312{ 
  • trunk/system/core/utf8/strtoupper.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: strtoupper 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::strtoupper 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _strtoupper($str) 
    1312{ 
  • trunk/system/core/utf8/substr.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: substr 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::substr 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _substr($str, $offset, $length = NULL) 
    1312{ 
  • trunk/system/core/utf8/substr_replace.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: substr_replace 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::substr_replace 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _substr_replace($str, $replacement, $offset, $length = NULL) 
    1312{ 
  • trunk/system/core/utf8/to_unicode.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: to_unicode 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::to_unicode 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _to_unicode($str) 
    1312{ 
  • trunk/system/core/utf8/transliterate_to_ascii.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: transliterate_to_ascii 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::transliterate_to_ascii 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _transliterate_to_ascii($str, $case = 0) 
    1312{ 
  • trunk/system/core/utf8/trim.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: trim 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::trim 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _trim($str, $charlist = NULL) 
    1312{ 
  • trunk/system/core/utf8/ucfirst.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: ucfirst 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::ucfirst 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _ucfirst($str) 
    1312{ 
  • trunk/system/core/utf8/ucwords.php

    r1297 r1382  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * File: ucwords 
    4  *  Kohana utf8 file, loaded by <utf8.php>.  
     3 * utf8::ucwords 
    54 * 
    6  * Kohana Source Code: 
    7  *  author    - Kohana Team 
    8  *  copyright - (c) 2007 Kohana Team 
    9  *  license   - <http://kohanaphp.com/license.html> 
     5 * @package    Core 
     6 * @author     Kohana Team 
     7 * @copyright  (c) 2007 Kohana Team 
     8 * @copyright  (c) 2005 Harry Fuecks 
     9 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt 
    1010 */ 
    11  
    1211function _ucwords($str) 
    1312{