summaryrefslogtreecommitdiff
path: root/ext/pspell
Commit message (Collapse)AuthorAgeFilesLines
* Added a skip condition if the English dictionary needed for the test is notIlia Alshanetsky2002-11-081-1/+6
| | | | | avaliable.
* - note aspellJan Lehnardt2002-10-091-1/+2
|
* - initial checkin of basic testcases for pspellJan Lehnardt2002-03-241-0/+138
|
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-8/+1
|
* Maintain headers.Sebastian Bergmann2002-02-282-2/+2
|
* 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-112-4/+4
|
* - 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.
* Unified the configure messages.foobar2001-11-301-1/+3
|
* * 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
|
* ...and this fixes the typo I made long ago. It prevented people that haveVlad Krupin2001-05-171-1/+1
| | | | | | certain weird installations of pspell from compiling properly (couldn't find pspell header files). No-one noticed...
* Fix for bug 10912.Vlad Krupin2001-05-171-1/+6
| | | | | | | Also, if you explicily specify path in --with-pspell, the directories /usr, /usr/local will no longer be searched even if the library is not found at the specified location (this seems to make more sense)
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-2/+2
| | | | | # Heads up people! I tested this before committing but you never know..
* - Fix copyright notices with 2001Andi Gutmans2001-02-262-2/+2
|
* Added myself to CREDITS (vlad)Vlad Krupin2001-02-051-0/+2
|
* 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)
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+0
|
* 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-102-7/+315
| | | | | | used later to create an instance of the spellchecker based on that config.
* #fixed typosDavid Croft2000-08-101-3/+3
|
* Added instructions on how to use personalized dictionariesVlad Krupin2000-08-081-0/+16
|
* added support for personalized dictionaries.Vlad Krupin2000-08-082-4/+121
| | | | | | | | 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
* Removed pspell_mode() and pspell_runtogether()Vlad Krupin2000-07-261-2/+0
|
* added several functions for manipulating wordlists:Vlad Krupin2000-07-251-0/+4
| | | | | | | | pspell_store_replacement() pspell_add_to_personal() pspell_add_to_session() pspell_clear_session()
* - 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-242-37/+25
| | | | | | | | | 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-135-34/+34
| | | | | | - 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-105-0/+393
- Functionality of aspell - 3 modes of spellchecking (fast, normal, bad_spellers) - support for run-together words