php-src/ext/pspell
Vlad Krupin 3d3d238021 Changed syntax of pspell_new() (one more parameter - mode)
pspell_new() parameters that are empty ("") are now ignored

Removed pspell_mode() and pspell_runtogether() - their
functionality moved to pspell_new() because the ability
to dynamically change those settings is not in ISPELL, and
is likely do disappear from ASPELL, according to ASPELL
author.

Created a new constant - PSPELL_RUN_TOGETHER for pspell_new()

fixed a bug in pspell_new() that caused non-English dictionaries
to be ignored

removed a bogus line from pspell_new() that could result in
a memory leak
2000-07-26 21:32:29 +00:00
..
config.m4 - Making pspell compile as a shared module 2000-07-13 20:39:14 +00:00
Makefile.in - Making pspell compile as a shared module 2000-07-13 20:39:14 +00:00
php_pspell.h Removed pspell_mode() and pspell_runtogether() 2000-07-26 21:24:17 +00:00
pspell.c Changed syntax of pspell_new() (one more parameter - mode) 2000-07-26 21:32:29 +00:00
README - Making pspell compile as a shared module 2000-07-13 20:39:14 +00:00

README file for pspell (spellchecker) module for PHP4
-----------------------------------------------------

The latest release of pspell is always available from

  http://pspell.sourceforge.net/

This module was developed and tested with aspell-.31.1 and pspell-.11.0.2,
although slightly earlier (and hopefully later) versions of those libraries
should work as well.

General notes
-------------

Please, note that somewhere around version .27.x (I believe) aspell stopped
working with the aspell module for php. This is due to the fact that the
author changed things around a bit, and suggested that people link to pspell
in the future rather than to aspell. That's exactly what this module is for.
It has the same basic functionality as aspell (and more features are being
added). I did not want to modify existing aspell module, because it would
break things for those who are using older aspell, or result in very ugly code.
Rather, I wrote a new module - pspell.


Building pspell on a Unix system
--------------------------------

In order to use pspell, you need to have *both* aspell and pspell libraries
installed, and they have to be compatible with each other. Get the latest
release of both at the URL given above.

I expect the libraries to be in /usr/local (that's the default when you
cofigure pspell and aspell with their 'configure' scripts woth no parameters).
If that location is different, please specify it in --with-pspell=PATH, where
PATH is the path you specified for pspell libraries.