00001 <?php 00002 /* SVN FILE: $Id: 0500_052f.php 7805 2008-10-30 17:30:26Z AD7six $ */ 00003 /** 00004 * Case Folding Properties. 00005 * 00006 * Provides case mapping of Unicode characters for code points U+0500 through U+052F 00007 * 00008 * @see http://www.unicode.org/Public/UNIDATA/UCD.html 00009 * @see http://www.unicode.org/Public/UNIDATA/CaseFolding.txt 00010 * @see http://www.unicode.org/reports/tr21/tr21-5.html 00011 * 00012 * PHP versions 4 and 5 00013 * 00014 * CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org) 00015 * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00016 * 00017 * Licensed under The MIT License 00018 * Redistributions of files must retain the above copyright notice. 00019 * 00020 * @filesource 00021 * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org) 00022 * @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project 00023 * @package cake 00024 * @subpackage cake.cake.config.unicode.casefolding 00025 * @since CakePHP(tm) v 1.2.0.5691 00026 * @version $Revision: 7805 $ 00027 * @modifiedby $LastChangedBy: AD7six $ 00028 * @lastmodified $Date: 2008-10-30 13:30:26 -0400 (Thu, 30 Oct 2008) $ 00029 * @license http://www.opensource.org/licenses/mit-license.php The MIT License 00030 */ 00031 /** 00032 * The upper field is the decimal value of the upper case character 00033 * 00034 * The lower filed is an array of the decimal values that form the lower case version of a character. 00035 * 00036 * The status field is: 00037 * C: common case folding, common mappings shared by both simple and full mappings. 00038 * F: full case folding, mappings that cause strings to grow in length. Multiple characters are separated by spaces. 00039 * S: simple case folding, mappings to single characters where different from F. 00040 * T: special case for uppercase I and dotted uppercase I 00041 * - For non-Turkic languages, this mapping is normally not used. 00042 * - For Turkic languages (tr, az), this mapping can be used instead of the normal mapping for these characters. 00043 * Note that the Turkic mappings do not maintain canonical equivalence without additional processing. 00044 * See the discussions of case mapping in the Unicode Standard for more information. 00045 */ 00046 $config['0500_052f'][] = array('upper' => 1280, 'status' => 'C', 'lower' => array(1281)); /* CYRILLIC CAPITAL LETTER KOMI DE */ 00047 $config['0500_052f'][] = array('upper' => 1282, 'status' => 'C', 'lower' => array(1283)); /* CYRILLIC CAPITAL LETTER KOMI DJE */ 00048 $config['0500_052f'][] = array('upper' => 1284, 'status' => 'C', 'lower' => array(1285)); /* CYRILLIC CAPITAL LETTER KOMI ZJE */ 00049 $config['0500_052f'][] = array('upper' => 1286, 'status' => 'C', 'lower' => array(1287)); /* CYRILLIC CAPITAL LETTER KOMI DZJE */ 00050 $config['0500_052f'][] = array('upper' => 1288, 'status' => 'C', 'lower' => array(1289)); /* CYRILLIC CAPITAL LETTER KOMI LJE */ 00051 $config['0500_052f'][] = array('upper' => 1290, 'status' => 'C', 'lower' => array(1291)); /* CYRILLIC CAPITAL LETTER KOMI NJE */ 00052 $config['0500_052f'][] = array('upper' => 1292, 'status' => 'C', 'lower' => array(1293)); /* CYRILLIC CAPITAL LETTER KOMI SJE */ 00053 $config['0500_052f'][] = array('upper' => 1294, 'status' => 'C', 'lower' => array(1295)); /* CYRILLIC CAPITAL LETTER KOMI TJE */ 00054 ?>
1.4.7