• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ac-helpers/H01-Apr-2010-2219

autopackage/H01-Apr-2010-5443

data/H03-May-2022-446376

doc/H03-May-2022-539469

src/H03-May-2022-45,68836,742

tests/H03-May-2022-1,6621,289

AUTHORSH A D01-Apr-201036 21

BUGSH A D01-Apr-201013 21

COPYING.LIBH A D01-Apr-201025.8 KiB

ChangeLogH A D01-Apr-20101.5 KiB4831

HACKINGH A D01-Apr-20103.9 KiB10377

MAINTAINERSH A D01-Apr-201036 21

Makefile.amH A D01-Apr-2010354 2320

Makefile.inH A D03-May-202225.3 KiB809719

NEWSH A D01-Apr-2010539 3226

READMEH A D01-Apr-20102.4 KiB6346

aclocal.m4H A D01-Apr-2010315.7 KiB9,0988,151

autogen.shH A D01-Apr-20102 KiB9154

compile-resourceH A D01-Apr-20101.6 KiB4719

config.guessH A D01-Apr-201043.9 KiB1,5021,291

config.subH A D01-Apr-201033.6 KiB1,7061,558

configureH A D03-May-2022626.4 KiB21,44616,939

configure.inH A D01-Apr-201016.5 KiB539432

depcompH A D01-Apr-201018.2 KiB631407

enchant-uninstalled.pc.inH A D01-Apr-2010290 1210

enchant.pc.inH A D01-Apr-2010258 1210

enchant.specH A D01-Apr-20102.5 KiB9776

enchant.spec.inH A D01-Apr-20102.5 KiB9776

install-shH A D03-May-202213.3 KiB521344

lt-compile-resourceH A D01-Apr-20102.1 KiB7941

ltmain.shH A D01-Apr-2010237.5 KiB8,4076,475

missingH A D01-Apr-201011.2 KiB377281

README

1libenchant -- Generic spell checking library
2Dom Lachowicz <cinamod@hotmail.com>
3
4   libenchant is licensed under the terms of the GNU LGPL included in the
5file COPYING.LIB.
6
7   The project aims to provide an efficient extensible abstraction for
8dealing with different spell checking libraries.
9
10   Enchant is meant to provide a generic interface into various existing
11spell checking libaries. These include, but are not limited to:
12	* Aspell/Pspell
13	* Ispell
14	* Hspell
15	* Uspell
16
17   Enchant is also meant to be used in a cross-platform (XP) environment. Part
18of this means that Enchant wants to limit its number of external dependencies
19to 0, or as close is as humanly possible. Also, any enchant consumer (i.e. a
20Word Processor) should not need to know about what backend providers Enchant
21knows about. In fact, Enchant shouldn't even need to know this information
22itself. To accomplish this, all of Enchant's providers are DLLs.
23
24   Enchant is also meant to be used in a multi-user environment, such as Unix.
25It is preferable to have both a $USER and a $GLOBAL location for both
26provider DLLs and for dictionaries themselves, when possible. Enchant's DLL
27location algorithm takes this into account, and gives preference to the $USER
28DLLs, when found.
29
30To report libenchant bugs, please visit bugzilla.abisource.com.
31    This library is free software; you can redistribute it and/or modify
32    it under the terms of version 2.1 of the GNU Lesser General Public License
33    as published by the Free Software Foundation.
34
35    This program is distributed in the hope that it will be useful,
36    but WITHOUT ANY WARRANTY; without even the implied warranty of
37    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38    GNU General Public License for more details.
39
40    You should have received a copy of the GNU Lesser General Public License
41    along with this program; if not, write to the Free Software Foundation,
42    Inc., 59 Temple Place, Suite 330, Boston, MA  02110-1301  USA
43
44--
45
46This library has taken insight from
47
48Aspell/Pspell:
49	- http://aspell.net
50
51Mailing lists
52-------------
53
54   There is NO mailing list used to discuss libenchant specificly as yet.  For now
55please use the AbiWord-devel list. To subscribe send a mail to:
56
57	abiword-dev-request@abisource.com
58And in the body of the message write "subscribe"
59
60An archive of the mailing lists is available in:
61	http://www.abisource.com/mailinglists/abiword-dev/
62
63