23 lines
779 B
PHP
23 lines
779 B
PHP
<?php
|
|
// General settings
|
|
$config['general.engine'] = get_config('editor', 'editor_tinymce_spellengine') ? get_config('editor', 'editor_tinymce_spellengine') : 'GoogleSpell';
|
|
//$config['general.engine'] = 'PSpell';
|
|
//$config['general.engine'] = 'PSpellShell';
|
|
//$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
|
|
|
|
// PSpell settings
|
|
$config['PSpell.mode'] = PSPELL_FAST;
|
|
$config['PSpell.spelling'] = "";
|
|
$config['PSpell.jargon'] = "";
|
|
$config['PSpell.encoding'] = "";
|
|
|
|
// PSpellShell settings
|
|
$config['PSpellShell.mode'] = PSPELL_FAST;
|
|
$config['PSpellShell.aspell'] = $CFG->aspellpath;
|
|
$config['PSpellShell.tmp'] = '/tmp';
|
|
|
|
// Windows PSpellShell settings
|
|
$config['PSpellShell.aspell'] = $CFG->aspellpath;
|
|
//$config['PSpellShell.tmp'] = 'c:/temp';
|
|
?>
|