Home
last modified time | relevance | path

Searched +full:deaccent -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 12 of 12) sorted by relevance

/dokuwiki/_test/tests/inc/
H A Dpageutils_clean_id.test.php66 ['pàge', 'pàge', ['deaccent' => 0]],
67 ['pagĖ', 'pagė', ['deaccent' => 0]],
68 ['pagĒēĔĕĖėĘęĚě', 'pagēēĕĕėėęęěě', ['deaccent' => 0]],
69 ['ښ', 'ښ', ['deaccent' => 0]],
70 ['ښ侧化并곦ঝഈ', 'ښ侧化并곦ঝഈ', ['deaccent' => 0]],
73 ['pàge', 'page', ['deaccent' => 2]],
74 ['pagĖ', 'page', ['deaccent' => 2]],
75 ['pagĒēĔĕĖėĘęĚě', 'pageeeeeeeeee', ['deaccent' => 2]],
76 ['ښ', 'ښ', ['deaccent' => 2]],
77 ['ښ侧化并곦ঝഈ', 'ښ侧化并곦ঝഈ', ['deaccent' => 2]],
[all …]
H A Dpageutils_getid.test.php29 $conf['deaccent'] = 0; // the default (1) gives me strange exceptions
/dokuwiki/inc/Utf8/
H A DClean.php142 * Use the optional parameter to just deaccent lower ($case = -1) or upper ($case = 1)
143 * letters. Default is to deaccent both cases ($case = 0)
151 public static function deaccent($string, $case = 0) function in dokuwiki\\Utf8\\Clean
/dokuwiki/inc/Utf8/tables/
H A Dupperaccents.php10 * @see \dokuwiki\Utf8\Clean::deaccent()
H A Dloweraccents.php10 * @see \dokuwiki\Utf8\Clean::deaccent()
H A Dromanization.php30 // scandinavian - differs from what we do in deaccent
/dokuwiki/inc/
H A Dutf8.php183 dbg_deprecated(Clean::class . '::deaccent()');
184 return Clean::deaccent($str, $case);
H A Dpageutils.php151 if ($conf['deaccent'] == 2 || $ascii) $id = Clean::romanize($id);
152 if ($conf['deaccent'] || $ascii) $id = Clean::deaccent($id, -1);
H A DMailer.class.php425 $text = Clean::deaccent($text);
592 $this->headers['Subject'] = Clean::deaccent($this->headers['Subject']);
/dokuwiki/_test/
H A Drector.php205 'utf8_deaccent' => 'dokuwiki\Utf8\Clean::deaccent',
/dokuwiki/conf/
H A Ddokuwiki.php49 $conf['deaccent'] = 1; //deaccented chars in pagenames (1) or romanize (2) or ke…
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php115 $meta['deaccent'] = ['multichoice', '_choices' => [0, 1, 2], '_caution' => 'warning'];