├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── babel.config.js ├── docs ├── Makefile ├── conf.py ├── index.rst ├── installation.rst ├── make.bat └── quickstart.rst ├── jest.config.js ├── knowledgelab ├── __init__.py ├── commands.py └── extension.py ├── knowledgerepos ├── .gitignore ├── .knowledge_repo_config.py ├── LICENSE ├── README.md ├── server_config.py └── test.kp │ ├── REVISION │ ├── UUID │ ├── images │ └── output_5_1.png │ ├── knowledge.md │ └── orig_src │ └── test.ipynb ├── package.json ├── pyproject.toml ├── requirements.txt ├── scripts ├── add.sh ├── create_new.sh ├── deploy.sh ├── init_repo.sh ├── preview.sh ├── runserver.sh ├── submit.sh └── update.sh ├── setup.cfg ├── setup.py ├── src └── index.ts ├── style └── index.css ├── tests ├── __init__.py ├── js │ ├── activate.test.ts │ ├── assetsTransformer.js │ ├── export.test.ts │ ├── fileMock.js │ └── styleMock.js ├── test_all.py ├── test_command.py ├── test_extension.py └── test_init.py ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | prune tests/ 2 | prunt examples/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/jest.config.js -------------------------------------------------------------------------------- /knowledgelab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgelab/__init__.py -------------------------------------------------------------------------------- /knowledgelab/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgelab/commands.py -------------------------------------------------------------------------------- /knowledgelab/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgelab/extension.py -------------------------------------------------------------------------------- /knowledgerepos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/.gitignore -------------------------------------------------------------------------------- /knowledgerepos/.knowledge_repo_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/.knowledge_repo_config.py -------------------------------------------------------------------------------- /knowledgerepos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/LICENSE -------------------------------------------------------------------------------- /knowledgerepos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/README.md -------------------------------------------------------------------------------- /knowledgerepos/server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/server_config.py -------------------------------------------------------------------------------- /knowledgerepos/test.kp/REVISION: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /knowledgerepos/test.kp/UUID: -------------------------------------------------------------------------------- 1 | a2bea2ee-d408-4bed-9af8-b2287817fc30 -------------------------------------------------------------------------------- /knowledgerepos/test.kp/images/output_5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/test.kp/images/output_5_1.png -------------------------------------------------------------------------------- /knowledgerepos/test.kp/knowledge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/test.kp/knowledge.md -------------------------------------------------------------------------------- /knowledgerepos/test.kp/orig_src/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/knowledgerepos/test.kp/orig_src/test.ipynb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/add.sh -------------------------------------------------------------------------------- /scripts/create_new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/create_new.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/init_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/init_repo.sh -------------------------------------------------------------------------------- /scripts/preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/preview.sh -------------------------------------------------------------------------------- /scripts/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/runserver.sh -------------------------------------------------------------------------------- /scripts/submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/submit.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | 4 | [metadata] 5 | description_file = README.md 6 | 7 | [flake8] 8 | max-line-length=200 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/setup.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/src/index.ts -------------------------------------------------------------------------------- /style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/style/index.css -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/js/activate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/js/activate.test.ts -------------------------------------------------------------------------------- /tests/js/assetsTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/js/assetsTransformer.js -------------------------------------------------------------------------------- /tests/js/export.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/js/export.test.ts -------------------------------------------------------------------------------- /tests/js/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; -------------------------------------------------------------------------------- /tests/js/styleMock.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tests/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/test_extension.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkp-archive/knowledgelab/HEAD/yarn.lock --------------------------------------------------------------------------------