Searched +full:sepchar -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 7 of 7) sorted by relevance
/dokuwiki/_test/tests/inc/ |
D | pageutils_clean_id.test.php | 62 ['pa-ge', 'pa-ge', ['sepchar' => '-']], 63 ['pa%ge', 'pa-ge', ['sepchar' => '-']], 96 $sepchar = isset($test[2]['sepchar']) ? $test[2]['sepchar'] : '_'; 102 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, $test[2]['useslash']]); 104 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, 0]); 105 yield([$test[0], $test[1], $ascii, $sepchar, $deaccent, 1]); 115 * @param string $sepchar 119 function testCleanId($input, $expected, $ascii, $sepchar, $deaccent, $useslash) argument 123 $conf['sepchar'] = $sepchar;
|
D | common_pagetemplate.test.php | 7 $conf['sepchar'] = '-';
|
/dokuwiki/inc/ |
D | pageutils.php | 137 $sepchar = $conf['sepchar']; 139 $sepcharpat = '#\\' . $sepchar . '+#'; 148 $id = strtr($id, ';/', ':' . $sepchar); 155 $id = Clean::stripspecials($id, $sepchar, '\*'); 160 $id = preg_replace($sepcharpat, $sepchar, $id);
|
D | common.php | 1114 $page = strtr($file, $conf['sepchar'], ' ');
|
/dokuwiki/lib/plugins/config/settings/ |
D | config.metadata.php | 44 * 'sepchar' - as multichoice, selection constructed from string of valid values 235 $meta['sepchar'] = ['sepchar', '_caution' => 'warning'];
|
/dokuwiki/lib/plugins/authplain/ |
D | auth.php | 368 return cleanID(str_replace([':', '/', ';'], $conf['sepchar'], $user)); 381 return cleanID(str_replace([':', '/', ';'], $conf['sepchar'], $group));
|
/dokuwiki/conf/ |
D | dokuwiki.php | 147 $conf['sepchar'] = '_'; //word separator character in page names; may be a
|