(0 . 0)(1 . 27)
123815 <?php
123816 /**
123817 * config.php
123818 * @package MCManager.includes
123819 * @author Moxiecode
123820 */
123821 // General settings
123822 $config['general.engine'] = 'GoogleSpell';
123823 //$config['general.engine'] = 'PSpell';
123824 //$config['general.engine'] = 'PSpellShell';
123825 //$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
123826
123827 // PSpell settings
123828 $config['PSpell.mode'] = PSPELL_FAST;
123829 $config['PSpell.spelling'] = "";
123830 $config['PSpell.jargon'] = "";
123831 $config['PSpell.encoding'] = "";
123832
123833 // PSpellShell settings
123834 $config['PSpellShell.mode'] = PSPELL_FAST;
123835 $config['PSpellShell.aspell'] = '/usr/bin/aspell';
123836 $config['PSpellShell.tmp'] = '/tmp';
123837
123838 // Windows PSpellShell settings
123839 //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
123840 //$config['PSpellShell.tmp'] = 'c:/temp';
123841 ?>