source: trunk/www.guidonia.net/wp/wp-includes/js/tinymce/plugins/spellchecker/config.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 868 bytes
Line 
1<?php
2/**
3 * config.php
4 * @package MCManager.includes
5 * @author Moxiecode
6 * @copyright Copyright © 2007, Moxiecode Systems AB, All rights reserved.
7 */
8 // General settings
9 $config['general.engine'] = 'GoogleSpell';
10 //$config['general.engine'] = 'PSpell';
11 //$config['general.engine'] = 'PSpellShell';
12 //$config['general.remote_rpc_url'] = 'http://some.other.site/some/url/rpc.php';
13
14 // PSpell settings
15 $config['PSpell.mode'] = PSPELL_FAST;
16 $config['PSpell.spelling'] = "";
17 $config['PSpell.jargon'] = "";
18 $config['PSpell.encoding'] = "";
19
20 // PSpellShell settings
21 $config['PSpellShell.mode'] = PSPELL_FAST;
22 $config['PSpellShell.aspell'] = '/usr/bin/aspell';
23 $config['PSpellShell.tmp'] = '/tmp';
24
25 // Windows PSpellShell settings
26 //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
27 //$config['PSpellShell.tmp'] = 'c:/temp';
28?>
Note: See TracBrowser for help on using the repository browser.