mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
8cbc0c7099
--HG-- rename : intl/hyphenation/src/COPYING => intl/hyphenation/COPYING rename : intl/hyphenation/src/COPYING.LGPL => intl/hyphenation/COPYING.LGPL rename : intl/hyphenation/src/COPYING.MPL => intl/hyphenation/COPYING.MPL rename : intl/hyphenation/src/README => intl/hyphenation/README rename : intl/hyphenation/src/README.compound => intl/hyphenation/README.compound rename : intl/hyphenation/src/README.hyphen => intl/hyphenation/README.hyphen rename : intl/hyphenation/src/README.mozilla => intl/hyphenation/README.mozilla rename : intl/hyphenation/src/README.nonstandard => intl/hyphenation/README.nonstandard rename : intl/hyphenation/src/hnjalloc.h => intl/hyphenation/hnjalloc.h rename : intl/hyphenation/src/hnjstdio.cpp => intl/hyphenation/hnjstdio.cpp rename : intl/hyphenation/src/hyphen.c => intl/hyphenation/hyphen.c rename : intl/hyphenation/src/hyphen.h => intl/hyphenation/hyphen.h rename : intl/hyphenation/src/nsHyphenationManager.cpp => intl/hyphenation/nsHyphenationManager.cpp rename : intl/hyphenation/public/nsHyphenationManager.h => intl/hyphenation/nsHyphenationManager.h rename : intl/hyphenation/src/nsHyphenator.cpp => intl/hyphenation/nsHyphenator.cpp rename : intl/hyphenation/public/nsHyphenator.h => intl/hyphenation/nsHyphenator.h
29 lines
1016 B
Plaintext
29 lines
1016 B
Plaintext
About the hyphenation code in this directory
|
|
============================================
|
|
|
|
The core hyphenation code (files "hyphen.c" and "hyphen.h") comes from the
|
|
Hyphen library, part of the hunspell project. The various COPYING* and README*
|
|
files (except this README.mozilla) are likewise from the hunspell distribution
|
|
of Hyphen:
|
|
|
|
http://sourceforge.net/projects/hunspell/files/Hyphen/.
|
|
|
|
This code is distributed under the GPL 2.0/LGPL 2.1/MPL 1.1 tri-license, as
|
|
detailed in the associated README and COPYING files.
|
|
|
|
Note that we do not include other tools and resources found in the complete
|
|
Hyphen package from upstream, so the original README.* files may refer to
|
|
additional files that are not present in the Mozilla source tree.
|
|
|
|
|
|
The other source files here:
|
|
|
|
hnjalloc.h
|
|
hnjstdio.cpp
|
|
nsHyphenationManager.cpp
|
|
nsHyphenator.cpp
|
|
|
|
as well as the build files (Makefile.in and moz.build) are Mozilla-authored
|
|
code, and the standard MPL 2.0 applies to these, as noted in the comments
|
|
within the files.
|