├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── netem_full_list.json ├── netem_full_list.sql └── scripts ├── .gitignore ├── custom_config ├── .gitignore ├── __init__.py ├── js-config-example.js └── py_config_example.py ├── draft └── draft.sql ├── generate-doc ├── __init__.py ├── generate_doc_from_sql.py ├── generate_jsonl.py └── macro.js ├── generate_json ├── .gitignore └── generate_json_from_sql.py ├── spelling-variations ├── index.js ├── lib │ ├── bydictionary.json │ ├── bypattern.js │ └── index.js ├── package-lock.json └── package.json └── update_def └── format_doc_def.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.docx 2 | .vscode/ 3 | .idea/ 4 | *.pdf 5 | __pycache__/ 6 | .history 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/README.md -------------------------------------------------------------------------------- /netem_full_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/netem_full_list.json -------------------------------------------------------------------------------- /netem_full_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/netem_full_list.sql -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/custom_config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/custom_config/.gitignore -------------------------------------------------------------------------------- /scripts/custom_config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/custom_config/js-config-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/custom_config/js-config-example.js -------------------------------------------------------------------------------- /scripts/custom_config/py_config_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/custom_config/py_config_example.py -------------------------------------------------------------------------------- /scripts/draft/draft.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/draft/draft.sql -------------------------------------------------------------------------------- /scripts/generate-doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generate-doc/generate_doc_from_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/generate-doc/generate_doc_from_sql.py -------------------------------------------------------------------------------- /scripts/generate-doc/generate_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/generate-doc/generate_jsonl.py -------------------------------------------------------------------------------- /scripts/generate-doc/macro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/generate-doc/macro.js -------------------------------------------------------------------------------- /scripts/generate_json/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /scripts/generate_json/generate_json_from_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/generate_json/generate_json_from_sql.py -------------------------------------------------------------------------------- /scripts/spelling-variations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/index.js -------------------------------------------------------------------------------- /scripts/spelling-variations/lib/bydictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/lib/bydictionary.json -------------------------------------------------------------------------------- /scripts/spelling-variations/lib/bypattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/lib/bypattern.js -------------------------------------------------------------------------------- /scripts/spelling-variations/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/lib/index.js -------------------------------------------------------------------------------- /scripts/spelling-variations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/package-lock.json -------------------------------------------------------------------------------- /scripts/spelling-variations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/spelling-variations/package.json -------------------------------------------------------------------------------- /scripts/update_def/format_doc_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exam-data/NETEMVocabulary/HEAD/scripts/update_def/format_doc_def.py --------------------------------------------------------------------------------