| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
|
| |
located in an unusual (e.g. /usr/local/include/pspell) location.
@fixed bug that made pspell include pspell.h from a wrong location. (Vlad)
|
| |
|
|
|
|
|
| |
- change something I wasn't supposed to. It should be fine IMO.
|
|
|
|
|
|
| |
see README.EXTENSIONS file for upgrade help.
@Introduced extension version numbers (Stig)
|
|
|
|
| |
isn't optimal, it parses for example var->zval.value incorrect) please let me know.
|
| |
|
|
|
|
|
| |
- whitespace fixes
|
| |
|
| |
|
|
|
|
|
| |
some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
|
| |
|
| |
|
|
|
|
|
|
| |
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 fix (Hugh Jones)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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)
|
|
|
|
|
|
| |
used later to create an instance of the spellchecker based on that
config.
|
|
|
|
|
|
|
|
| |
new functions: pspell_new_personal(), pspell_save_wordlist().
pspell_save_wordlist() needs to be changed to return error-codes
once pspell library gets fixed
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
pspell_store_replacement(), pspell_add_to_personal(), pspell_add_to_session(), pspell_clear_session().
- fixed a few confusing typos in comments
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
- fix a couple typos
@ Making pspell compile as a shared module
|
|
|
|
|
|
|
|
|
| |
- zval is used instead of pval
(as Andrei Zmievski suggested)
Modified Files:
ext/pspell/pspell.c
|
|
- Functionality of aspell
- 3 modes of spellchecking (fast, normal, bad_spellers)
- support for run-together words
|