├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── classdiff ├── config.py ├── diff_range.py ├── graphviz.py ├── main.py ├── tag_language.py └── tag_model.py ├── doc └── classref.ctags ├── gitk-cl ├── setup.py └── tests ├── .gitignore ├── C.htop.a.tags ├── C.htop.b.tags ├── C.htop.expected.gv ├── C.htop.expected.imap_np ├── C.htop.md ├── C.htop.ranges ├── Java.mockito.a.tags ├── Java.mockito.b.tags ├── Java.mockito.expected.gv ├── Java.mockito.expected.imap_np ├── Java.mockito.md ├── Java.mockito.ranges ├── Python.flake8.a.tags ├── Python.flake8.b.tags ├── Python.flake8.expected.gv ├── Python.flake8.expected.imap_np ├── Python.flake8.md ├── Python.flake8.ranges └── test_classdiff.py /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | __pycache__/ 3 | dist/ 4 | build/ 5 | *.egg-info/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/README.md -------------------------------------------------------------------------------- /classdiff/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/config.py -------------------------------------------------------------------------------- /classdiff/diff_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/diff_range.py -------------------------------------------------------------------------------- /classdiff/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/graphviz.py -------------------------------------------------------------------------------- /classdiff/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/main.py -------------------------------------------------------------------------------- /classdiff/tag_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/tag_language.py -------------------------------------------------------------------------------- /classdiff/tag_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/classdiff/tag_model.py -------------------------------------------------------------------------------- /doc/classref.ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/doc/classref.ctags -------------------------------------------------------------------------------- /gitk-cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/gitk-cl -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/setup.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.actual.gv 2 | *.png 3 | -------------------------------------------------------------------------------- /tests/C.htop.a.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.a.tags -------------------------------------------------------------------------------- /tests/C.htop.b.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.b.tags -------------------------------------------------------------------------------- /tests/C.htop.expected.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.expected.gv -------------------------------------------------------------------------------- /tests/C.htop.expected.imap_np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.expected.imap_np -------------------------------------------------------------------------------- /tests/C.htop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.md -------------------------------------------------------------------------------- /tests/C.htop.ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/C.htop.ranges -------------------------------------------------------------------------------- /tests/Java.mockito.a.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.a.tags -------------------------------------------------------------------------------- /tests/Java.mockito.b.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.b.tags -------------------------------------------------------------------------------- /tests/Java.mockito.expected.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.expected.gv -------------------------------------------------------------------------------- /tests/Java.mockito.expected.imap_np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.expected.imap_np -------------------------------------------------------------------------------- /tests/Java.mockito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.md -------------------------------------------------------------------------------- /tests/Java.mockito.ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Java.mockito.ranges -------------------------------------------------------------------------------- /tests/Python.flake8.a.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.a.tags -------------------------------------------------------------------------------- /tests/Python.flake8.b.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.b.tags -------------------------------------------------------------------------------- /tests/Python.flake8.expected.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.expected.gv -------------------------------------------------------------------------------- /tests/Python.flake8.expected.imap_np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.expected.imap_np -------------------------------------------------------------------------------- /tests/Python.flake8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.md -------------------------------------------------------------------------------- /tests/Python.flake8.ranges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/Python.flake8.ranges -------------------------------------------------------------------------------- /tests/test_classdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefandtw/gitk-class-diagram/HEAD/tests/test_classdiff.py --------------------------------------------------------------------------------