| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/python-enchant-1.3.1/ |
Upload File : |
1.3.1:
* treat combining unicode marks as letters during tokenization
* cleanup of wxSpellCheckerDialog, thanks to Phil Mayes
* upgrades of bundled components in Windows version
* upgraded glib DLLs
* latest dictionaries from OpenOffice.org
* latest version of Hunspell
1.3.0:
* Re-worked the tokenization API to allow filters but still
remove non-alpha-numeric characters from words by default.
This introduces some minor backward-incompatabilities to the
API, hence the full minor version bump.
* 'fallback' argument to get_tokenizer() was removed, just
catch the Error and re-try with whatever is appropriate for
your application.
* filters should be passed into get_tokenizer() as the second
argument, rather than applied as seperate functions.
* Basic whitespace-and-punctuation tokenization seperated from
the language-specific parts.
* Internal details of Filter classes expanded and generalized
* English tokenization rules reverted to 1.1.5 version
1.2.0:
* Implemented "filters" that allow tokenization to skip common word
forms such as URLs, WikiWords, email addresses etc.
* Now ships with enchant-1.3.0, meaning:
* PWLs can return a useful list of suggestions rather than
the empty list
* Hunspell replaces MySpell as the default Windows backend
* Tokenization doesnt split words at non-alpha characters by default
* GtkSpellCheckerDialog contributed by Fredrik Corneliusson
* Removed deprecated functionality:
* Dict.add_to_personal
* All registry handling functionality from enchant.utils
* enchant.utils.SpellChecker (use enchant.checker.SpellChecker)
* Removed PyPWL, as native enchant PWLs can now suggest corrections
1.1.5:
* Fix hang in included MySpell (Windows distribution)
* Workaround for some MySpell/unicode problems
* Update to latest setuptools ez_setup.py
1.1.4:
* No longer need to use the registry under Windows
* Moved to setuptools for managing distribution
* Implemented unittest TestCases, works with `python setup.py test`
* Plugins on Windows moved to "enchant" subdirectory
* SpellChecker now coerces to/from unicode automatically
* Use python default encoding rather than UTF-8 where appropriate
* Various documentation cleanups
* bug fixes:
* (1230151): count of live instances done by normalized key
* Accept unicode strings as broker orderings
1.1.3:
* support for Python 2.2
* use 'locale' module to look up default language if none specified
* more and better regression tests
* mark deprecated interfaces with warnings
* removed <data> parameter to Dict constructor, with lots of
reshuffling behind the scenes
* add DictNotFoundError as a subclass of Error
* Remove de_AT from languages in the Windows version, it was
causing errors
* bug fixes:
* memory leak in DictWithPWL._free()
* incorrect cache handling for PWLs