summaryrefslogtreecommitdiff
path: root/ext/pspell/pspell.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Fix crash bug 15607Yasuo Ohgaki2002-02-221-0/+1
|
* fixed bug preventing pspell from building when pspell header files areVlad Krupin2001-12-291-1/+1
| | | | | | located in an unusual (e.g. /usr/local/include/pspell) location. @fixed bug that made pspell include pspell.h from a wrong location. (Vlad)
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Nuke REGISTER_MAIN_*. Extension maintainers please make sure I didn'tAndi Gutmans2001-12-031-4/+4
| | | | | - change something I wasn't supposed to. It should be fine IMO.
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-1/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-63/+63
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* - TSRMLS_FETCH workZeev Suraski2001-08-051-12/+24
| | | | | - whitespace fixes
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-2/+4
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+17
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* now when pspell/pspell.h is included, it will recognizeVlad Krupin2001-02-051-1/+3
| | | | | | that it has to work in compatibility mode. (The previous fix had the right idea, but was too far down in the source)
* pspell .12 fixRasmus Lerdorf2001-02-021-0/+1
| | | | | @ pspell .12 fix (Hugh Jones)
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-2/+2
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-4/+8
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* Added capability to create and manipulate a config object that can beVlad Krupin2000-08-101-7/+307
| | | | | | used later to create an instance of the spellchecker based on that config.
* added support for personalized dictionaries.Vlad Krupin2000-08-081-4/+119
| | | | | | | | new functions: pspell_new_personal(), pspell_save_wordlist(). pspell_save_wordlist() needs to be changed to return error-codes once pspell library gets fixed
* Added a parameter type.Egon Schmid2000-08-061-1/+1
|
* Fixed some protos.Egon Schmid2000-08-061-11/+11
|
* Changed syntax of pspell_new() (one more parameter - mode)Vlad Krupin2000-07-261-90/+44
| | | | | | | | | | | | | | | | | | | 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
* - added several functions for manipulating wordlists - ↵Vlad Krupin2000-07-251-4/+140
| | | | | | | pspell_store_replacement(), pspell_add_to_personal(), pspell_add_to_session(), pspell_clear_session(). - fixed a few confusing typos in comments
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-15/+15
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* - Making pspell compile as a shared moduleVlad Krupin2000-07-131-3/+2
| | | | | | - fix a couple typos @ Making pspell compile as a shared module
* - PS_* constants changed to PSPELL_*Vlad Krupin2000-07-101-14/+14
| | | | | | | | | - zval is used instead of pval (as Andrei Zmievski suggested) Modified Files: ext/pspell/pspell.c
* Initial release. Includes:Vlad Krupin2000-07-101-0/+272
- Functionality of aspell - 3 modes of spellchecking (fast, normal, bad_spellers) - support for run-together words