mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
9acde4e9ac
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92501 467b73ca-7a2a-4603-9d3b-597d59a354a9
28 lines
802 B
PHP
28 lines
802 B
PHP
<?php
|
|
/**
|
|
* config.php
|
|
*
|
|
* @package MCManager.includes
|
|
*/
|
|
// General settings
|
|
$config['general.engine'] = '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'] = '/usr/bin/aspell';
|
|
$config['PSpellShell.tmp'] = '/tmp';
|
|
|
|
// Windows PSpellShell settings
|
|
//$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
|
|
//$config['PSpellShell.tmp'] = 'c:/temp';
|
|
?>
|