mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00
19 lines
395 B
PHP
19 lines
395 B
PHP
<?php
|
|
|
|
/*
|
|
* SphinxSearch Unicode maps
|
|
* Courtesy of http://speeple.com/unicode-maps.txt
|
|
*/
|
|
|
|
class sphinx_charsetTable_common extends sphinx_charsetTableAbstract
|
|
{
|
|
protected $name = 'Default';
|
|
protected $table = '
|
|
##################################################
|
|
# Common
|
|
U+FF10..U+FF19->0..9, U+FF21..U+FF3A->a..z, U+FF41..U+FF5A->a..z, 0..9,
|
|
A..Z->a..z, a..z
|
|
';
|
|
|
|
}
|