├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Procfile ├── README.rst ├── demo ├── app.py └── templates │ ├── base.html │ └── ndiff.html ├── diffhtml ├── __init__.py └── ndiff.py ├── requirements-test.txt ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_ndiff.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: sh -c 'cd demo && exec waitress-serve --port=$PORT app:app' 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/README.rst -------------------------------------------------------------------------------- /demo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/demo/app.py -------------------------------------------------------------------------------- /demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/demo/templates/base.html -------------------------------------------------------------------------------- /demo/templates/ndiff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/demo/templates/ndiff.html -------------------------------------------------------------------------------- /diffhtml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/diffhtml/__init__.py -------------------------------------------------------------------------------- /diffhtml/ndiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/diffhtml/ndiff.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.1 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/test_ndiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/tests/test_ndiff.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranusjr/diffhtml/HEAD/tox.ini --------------------------------------------------------------------------------