tinymce/3rdparty/plugins/spellchecker/config.php
author Dan Fuhry <dan@enanocms.org>
Mon, 17 Oct 2011 23:58:51 -0400
changeset 2 8c7e79d37074
parent 0 c78d206bf01c
permissions -rw-r--r--
$return, not $result

<?php
	// General settings
  // Enano modification 2008-12-21: If PSpell is available, use that; otherwise try
  // to use GoogleSpell
  if ( function_exists('pspell_suggest') )
  {
    $config['general.engine'] = 'PSpell';
  }
  else
  {
    $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';
?>