diff options
author | alecpl <alec@alec.pl> | 2011-05-30 15:08:26 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-05-30 15:08:26 +0000 |
commit | b4edf78e4b75bc40a829147941ba0cf6379fbc39 (patch) | |
tree | 04b7d939ee4a5e954fb607a05bb150803185ad91 /program/steps/utils/spell.inc | |
parent | 55150f858fc5b46eefed76687352283d4ef1503c (diff) |
- Provided rcube_spellchecker class, simplified code in utils task (less spell* files)
Diffstat (limited to 'program/steps/utils/spell.inc')
-rw-r--r-- | program/steps/utils/spell.inc | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/program/steps/utils/spell.inc b/program/steps/utils/spell.inc index f61939d68..358576c7c 100644 --- a/program/steps/utils/spell.inc +++ b/program/steps/utils/spell.inc @@ -5,6 +5,7 @@ | program/steps/utils/spell.inc | | | | This file is part of the Roundcube Webmail client | + | Copyright (C) 2005-2011, The Roundcube Dev Team | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -18,15 +19,24 @@ */ -// max. number of suggestions for one word -define('MAX_SUGGESTIONS', 10); +// read input +$lang = get_input_value('lang', RCUBE_INPUT_GET); +$data = file_get_contents('php://input'); -$tiny = !empty($_GET['tiny']) ? 'html_' : ''; +// Get data string +$left = strpos($data, '<text>'); +$right = strrpos($data, '</text>'); +$data = substr($data, $left+6, $right-($left+6)); +$data = html_entity_decode($data, ENT_QUOTES, RCMAIL_CHARSET); -if ($spell_engine = $RCMAIL->config->get('spellcheck_engine', 'googie')) { - include('spell_'.$tiny.$spell_engine.'.inc'); -} +$spellchecker = new rcube_spellchecker($lang); +$spellchecker->check($data); +$result = $spellchecker->get_xml(); -header('HTTP/1.1 404 Not Found'); -exit; +// set response length +header("Content-Length: " . strlen($result)); +// Don't use server's default Content-Type charset (#1486406) +header("Content-Type: text/xml; charset=" . RCMAIL_CHARSET); +print $result; +exit; |