├── .gitignore ├── LICENSE ├── Readme.md ├── addons ├── .gitignore ├── acamedic-libreoffice.oxt ├── acamedic-mozilla.xpi ├── oxt │ ├── META-INF │ │ └── manifest.xml │ ├── description.xml │ ├── dictionaries.xcu │ └── package-description.txt └── xpi │ └── install.rdf ├── doc ├── found_mistakes.md ├── remove_candidates.md ├── removed-terms.md ├── typo-friends.md └── word-choices.md ├── en-Academic.aff ├── en-Academic.dic ├── res └── img │ ├── icon.svg │ ├── logo-flat.png │ ├── logo-github.png │ ├── logo-landscape.png │ └── logo.svg ├── src ├── academic │ ├── en_US_biota.dic │ ├── en_US_chem.dic │ ├── en_US_computer.dic │ ├── en_US_math.dic │ ├── en_US_med.dic │ ├── en_US_physics.dic │ ├── en_US_symbols.dic │ ├── en_US_tech.dic │ └── en_US_unit.dic ├── base │ ├── en_Latin.dic │ ├── en_US_20.dic │ ├── en_US_abbr.dic │ ├── en_US_extra.dic │ └── en_US_special.dic ├── code │ ├── code_abbr.dic │ ├── code_c.dic │ ├── code_fileextension.dic │ ├── code_java.dic │ └── code_latex.dic ├── names │ ├── names_brands.dic │ ├── names_geo.dic │ ├── names_misc.dic │ ├── names_people.dic │ └── names_scientists.dic └── own.dic ├── test_dic.py └── tests ├── lists ├── allowCompounds.dic ├── allowDuplicates.dic ├── allowExcluded.dic ├── allowExtraAdverbs.dic ├── allowInconsistencies.dic ├── allowMasking.dic ├── allowNonScowl.dic ├── allowSyntax.dic ├── disallowWords.dic └── unclear_spelling.dic ├── parsedic.py ├── refdics ├── en_US-95.dic └── en_US.dic ├── test_consistency.py ├── test_correctness.py ├── test_duplicates.py ├── test_specificity.py └── test_syntax.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/Readme.md -------------------------------------------------------------------------------- /addons/.gitignore: -------------------------------------------------------------------------------- 1 | *.dic 2 | *.aff 3 | -------------------------------------------------------------------------------- /addons/acamedic-libreoffice.oxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/acamedic-libreoffice.oxt -------------------------------------------------------------------------------- /addons/acamedic-mozilla.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/acamedic-mozilla.xpi -------------------------------------------------------------------------------- /addons/oxt/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/oxt/META-INF/manifest.xml -------------------------------------------------------------------------------- /addons/oxt/description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/oxt/description.xml -------------------------------------------------------------------------------- /addons/oxt/dictionaries.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/oxt/dictionaries.xcu -------------------------------------------------------------------------------- /addons/oxt/package-description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/oxt/package-description.txt -------------------------------------------------------------------------------- /addons/xpi/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/addons/xpi/install.rdf -------------------------------------------------------------------------------- /doc/found_mistakes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/doc/found_mistakes.md -------------------------------------------------------------------------------- /doc/remove_candidates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/doc/remove_candidates.md -------------------------------------------------------------------------------- /doc/removed-terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/doc/removed-terms.md -------------------------------------------------------------------------------- /doc/typo-friends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/doc/typo-friends.md -------------------------------------------------------------------------------- /doc/word-choices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/doc/word-choices.md -------------------------------------------------------------------------------- /en-Academic.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/en-Academic.aff -------------------------------------------------------------------------------- /en-Academic.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/en-Academic.dic -------------------------------------------------------------------------------- /res/img/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/res/img/icon.svg -------------------------------------------------------------------------------- /res/img/logo-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/res/img/logo-flat.png -------------------------------------------------------------------------------- /res/img/logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/res/img/logo-github.png -------------------------------------------------------------------------------- /res/img/logo-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/res/img/logo-landscape.png -------------------------------------------------------------------------------- /res/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/res/img/logo.svg -------------------------------------------------------------------------------- /src/academic/en_US_biota.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_biota.dic -------------------------------------------------------------------------------- /src/academic/en_US_chem.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_chem.dic -------------------------------------------------------------------------------- /src/academic/en_US_computer.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_computer.dic -------------------------------------------------------------------------------- /src/academic/en_US_math.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_math.dic -------------------------------------------------------------------------------- /src/academic/en_US_med.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_med.dic -------------------------------------------------------------------------------- /src/academic/en_US_physics.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_physics.dic -------------------------------------------------------------------------------- /src/academic/en_US_symbols.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_symbols.dic -------------------------------------------------------------------------------- /src/academic/en_US_tech.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_tech.dic -------------------------------------------------------------------------------- /src/academic/en_US_unit.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/academic/en_US_unit.dic -------------------------------------------------------------------------------- /src/base/en_Latin.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/base/en_Latin.dic -------------------------------------------------------------------------------- /src/base/en_US_20.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/base/en_US_20.dic -------------------------------------------------------------------------------- /src/base/en_US_abbr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/base/en_US_abbr.dic -------------------------------------------------------------------------------- /src/base/en_US_extra.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/base/en_US_extra.dic -------------------------------------------------------------------------------- /src/base/en_US_special.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/base/en_US_special.dic -------------------------------------------------------------------------------- /src/code/code_abbr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/code/code_abbr.dic -------------------------------------------------------------------------------- /src/code/code_c.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/code/code_c.dic -------------------------------------------------------------------------------- /src/code/code_fileextension.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/code/code_fileextension.dic -------------------------------------------------------------------------------- /src/code/code_java.dic: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/code/code_latex.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/code/code_latex.dic -------------------------------------------------------------------------------- /src/names/names_brands.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/names/names_brands.dic -------------------------------------------------------------------------------- /src/names/names_geo.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/names/names_geo.dic -------------------------------------------------------------------------------- /src/names/names_misc.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/names/names_misc.dic -------------------------------------------------------------------------------- /src/names/names_people.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/names/names_people.dic -------------------------------------------------------------------------------- /src/names/names_scientists.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/src/names/names_scientists.dic -------------------------------------------------------------------------------- /src/own.dic: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/test_dic.py -------------------------------------------------------------------------------- /tests/lists/allowCompounds.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowCompounds.dic -------------------------------------------------------------------------------- /tests/lists/allowDuplicates.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowDuplicates.dic -------------------------------------------------------------------------------- /tests/lists/allowExcluded.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowExcluded.dic -------------------------------------------------------------------------------- /tests/lists/allowExtraAdverbs.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowExtraAdverbs.dic -------------------------------------------------------------------------------- /tests/lists/allowInconsistencies.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowInconsistencies.dic -------------------------------------------------------------------------------- /tests/lists/allowMasking.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowMasking.dic -------------------------------------------------------------------------------- /tests/lists/allowNonScowl.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/allowNonScowl.dic -------------------------------------------------------------------------------- /tests/lists/allowSyntax.dic: -------------------------------------------------------------------------------- 1 | Évora 2 | Örebro 3 | Östersund 4 | İzmir 5 | Łódź 6 | -------------------------------------------------------------------------------- /tests/lists/disallowWords.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/disallowWords.dic -------------------------------------------------------------------------------- /tests/lists/unclear_spelling.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/lists/unclear_spelling.dic -------------------------------------------------------------------------------- /tests/parsedic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/parsedic.py -------------------------------------------------------------------------------- /tests/refdics/en_US-95.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/refdics/en_US-95.dic -------------------------------------------------------------------------------- /tests/refdics/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/refdics/en_US.dic -------------------------------------------------------------------------------- /tests/test_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/test_consistency.py -------------------------------------------------------------------------------- /tests/test_correctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/test_correctness.py -------------------------------------------------------------------------------- /tests/test_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/test_duplicates.py -------------------------------------------------------------------------------- /tests/test_specificity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/test_specificity.py -------------------------------------------------------------------------------- /tests/test_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emareg/acamedic/HEAD/tests/test_syntax.py --------------------------------------------------------------------------------