├── .github └── FUNDING.yml ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.pl ├── README.md ├── doc └── index.html ├── modules ├── FileType.xml └── Internals │ ├── Fonts │ ├── OpenSans.ttf │ └── VeraMono.ttf │ ├── Scripts │ └── Sort.js │ ├── Styles │ ├── Index.css │ └── View.css │ └── Tools │ ├── java-dump.sh │ └── rfcdiff-1.41-CUSTOM.sh └── pkgdiff.pl /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/Makefile.pl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/README.md -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/doc/index.html -------------------------------------------------------------------------------- /modules/FileType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/FileType.xml -------------------------------------------------------------------------------- /modules/Internals/Fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Fonts/OpenSans.ttf -------------------------------------------------------------------------------- /modules/Internals/Fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Fonts/VeraMono.ttf -------------------------------------------------------------------------------- /modules/Internals/Scripts/Sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Scripts/Sort.js -------------------------------------------------------------------------------- /modules/Internals/Styles/Index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Styles/Index.css -------------------------------------------------------------------------------- /modules/Internals/Styles/View.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Styles/View.css -------------------------------------------------------------------------------- /modules/Internals/Tools/java-dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Tools/java-dump.sh -------------------------------------------------------------------------------- /modules/Internals/Tools/rfcdiff-1.41-CUSTOM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/modules/Internals/Tools/rfcdiff-1.41-CUSTOM.sh -------------------------------------------------------------------------------- /pkgdiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvc/pkgdiff/HEAD/pkgdiff.pl --------------------------------------------------------------------------------