From 726425e42278216e7ee618e5b5da194265061843 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Sat, 25 Jun 2005 21:17:00 +0000 Subject: [PATCH] - nah. pspell compat not fixed... Changed files: ajax-spell-fixes.patch -> 1.3 --- ajax-spell-fixes.patch | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 ajax-spell-fixes.patch diff --git a/ajax-spell-fixes.patch b/ajax-spell-fixes.patch new file mode 100644 index 0000000..af80578 --- /dev/null +++ b/ajax-spell-fixes.patch @@ -0,0 +1,48 @@ +diff -u ../pspell_comp.php ./pspell_comp.php +--- ../pspell_comp.php 2005-06-24 15:32:02.000000000 +0300 ++++ ./pspell_comp.php 2005-06-24 15:38:15.000000000 +0300 +@@ -44,9 +44,9 @@ + + if(!defined('ASPELL_BIN')) define('ASPELL_BIN','aspell'); + +-define(PSPELL_FAST,1); # Fast mode (least number of suggestions) +-define(PSPELL_NORMAL,2); # Normal mode (more suggestions) +-define(PSPELL_BAD_SPELLERS,3); # Slow mode (a lot of suggestions) ) ++define('PSPELL_FAST',1); # Fast mode (least number of suggestions) ++define('PSPELL_NORMAL',2); # Normal mode (more suggestions) ++define('PSPELL_BAD_SPELLERS',3); # Slow mode (a lot of suggestions) ) + + function pspell_config_create($language, $spelling=null, $jargon=null, $encoding='iso8859-1'){ + return new Pspell($language, $spelling, $jargon, $encoding); +@@ -120,23 +120,23 @@ + function _prepareArgs(){ + $this->args = ''; + +- if($this->$language){ +- $this->args .= ' --lang='.escapeshellarg($language); +- }else{ ++ if ($this->language) { ++ $this->args .= ' --lang='.escapeshellarg($this->language); ++ } else { + return false; // no lang no spell + } + + #FIXME how to support spelling? + +- if($this->$jargon){ +- $this->args .= ' --jargon='.escapeshellarg($jargon); ++ if ($this->jargon){ ++ $this->args .= ' --jargon='.escapeshellarg($this->jargon); + } + +- if($this->$encoding){ +- $this->args .= ' --encoding='.escapeshellarg($encoding); ++ if($this->encoding){ ++ $this->args .= ' --encoding='.escapeshellarg($this->encoding); + } + +- switch ($this->mode){ ++ switch ($this->mode) { + case PSPELL_FAST: + $this->args .= ' --sug-mode=fast'; + break; -- 2.43.0