├── .gitignore ├── .gitmodules ├── 3rdparty └── Makefile.am ├── AUTHORS ├── COPYING ├── CREDITS ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── ROADMAP ├── autogen.sh ├── configure.ac ├── contrib └── packages │ └── arch │ ├── .gitignore │ └── PKGBUILD ├── docs ├── .gitignore ├── CACHE ├── Makefile.am ├── lua │ ├── diffstat.luadoc │ ├── gnuplot.luadoc │ ├── iterator.luadoc │ ├── pepper.luadoc │ ├── report.luadoc │ ├── repository.luadoc │ ├── revision.luadoc │ ├── tag.luadoc │ └── utils.luadoc └── manpage.txt ├── m4 ├── ax_check_zlib.m4 ├── ax_cxx_compile_stdcxx_11.m4 ├── ax_lua.m4 ├── ax_pthread.m4 ├── ax_python_devel.m4 ├── configure_backends.m4 ├── configure_features.m4 ├── find_apr.m4 └── find_svn.m4 ├── reports ├── Makefile.am ├── activity.lua ├── age.lua ├── authors.lua ├── authors_pie.lua ├── branches.lua ├── check_cache.lua ├── commit_counts.lua ├── csv.lua ├── data.lua ├── diffstat.lua ├── directories.lua ├── filetypes.lua ├── gui.lua ├── iteration_time.lua ├── loc.lua ├── participation.lua ├── pepper │ ├── Makefile.am │ ├── datetime.lua │ └── plotutils.lua ├── punchcard.lua ├── revdump.lua ├── shortlog.lua ├── tags.lua ├── times.lua └── volume.lua ├── src ├── .gitignore ├── 3rdparty │ └── lunar │ │ └── lunar.h ├── Makefile.am ├── abstractcache.cpp ├── abstractcache.h ├── backend.cpp ├── backend.h ├── backends │ ├── git.cpp │ ├── git.h │ ├── mercurial.cpp │ ├── mercurial.h │ ├── subversion.cpp │ ├── subversion.h │ ├── subversion_delta.cpp │ └── subversion_p.h ├── bstream.cpp ├── bstream.h ├── cache.cpp ├── cache.h ├── diffstat.cpp ├── diffstat.h ├── gnuplot.cpp ├── gnuplot.h ├── jobqueue.h ├── ldbcache.cpp ├── ldbcache.h ├── logger.cpp ├── logger.h ├── luahelpers.h ├── luamodules.cpp ├── luamodules.h ├── main.cpp ├── main.h ├── options.cpp ├── options.h ├── pex.cpp ├── pex.h ├── plot.cpp ├── plot.h ├── report.cpp ├── report.h ├── repository.cpp ├── repository.h ├── revision.cpp ├── revision.h ├── revisioniterator.cpp ├── revisioniterator.h ├── strlib.cpp ├── strlib.h ├── syslib │ ├── datetime.cpp │ ├── datetime.h │ ├── fs.cpp │ ├── fs.h │ ├── io.cpp │ ├── io.h │ ├── parallel.cpp │ ├── parallel.h │ ├── sigblock.cpp │ └── sigblock.h ├── tag.cpp ├── tag.h ├── utils.cpp └── utils.h └── tests ├── .gitignore ├── Makefile.am ├── atlocal.in ├── backends ├── Makefile.am ├── main.cpp └── test_subversion.h ├── catch ├── LICENSE_1_0.txt ├── catch.hpp ├── catch_reporter_basic.hpp ├── catch_reporter_junit.hpp ├── catch_reporter_xml.hpp ├── catch_runner.hpp ├── catch_with_main.hpp └── internal │ ├── catch_capture.hpp │ ├── catch_commandline.hpp │ ├── catch_common.h │ ├── catch_config.hpp │ ├── catch_debugger.hpp │ ├── catch_generators.hpp │ ├── catch_generators_impl.hpp │ ├── catch_hub.h │ ├── catch_hub_impl.hpp │ ├── catch_interfaces_capture.h │ ├── catch_interfaces_reporter.h │ ├── catch_interfaces_runner.h │ ├── catch_interfaces_testcase.h │ ├── catch_list.hpp │ ├── catch_reporter_registrars.hpp │ ├── catch_reporter_registry.hpp │ ├── catch_result_type.h │ ├── catch_resultinfo.hpp │ ├── catch_runner_impl.hpp │ ├── catch_section.hpp │ ├── catch_self_test.hpp │ ├── catch_stream.hpp │ ├── catch_test_case_info.hpp │ ├── catch_test_case_registry_impl.hpp │ ├── catch_test_registry.hpp │ └── catch_xmlwriter.hpp ├── diffstat ├── Makefile.am ├── data │ ├── git-add.pat │ ├── git-add.ref │ ├── git-del.pat │ ├── git-del.ref │ ├── git-mod.pat │ ├── git-mod.ref │ ├── git-quotes.pat │ ├── git-quotes.ref │ ├── svn-add.pat │ ├── svn-add.ref │ ├── svn-bin-wronchunk.pat │ ├── svn-bin-wronchunk.ref │ ├── svn-del.pat │ ├── svn-del.ref │ ├── svn-mod.pat │ └── svn-mod.ref └── main.cpp ├── scripts ├── cmpdiffs └── diffcmp ├── test_backends.at ├── test_diffstat.at ├── test_diffstat.pl ├── test_units.at ├── testsuite.at └── units ├── Makefile.am ├── main.cpp ├── test_bstream.h ├── test_options.h ├── test_parallel.h ├── test_strlib.h ├── test_sys_fs.h ├── test_sys_io.h └── test_utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/3rdparty/Makefile.am -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/CREDITS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/README -------------------------------------------------------------------------------- /ROADMAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/ROADMAP -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/packages/arch/.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | src/ 3 | -------------------------------------------------------------------------------- /contrib/packages/arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/contrib/packages/arch/PKGBUILD -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/CACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/CACHE -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/lua/diffstat.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/diffstat.luadoc -------------------------------------------------------------------------------- /docs/lua/gnuplot.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/gnuplot.luadoc -------------------------------------------------------------------------------- /docs/lua/iterator.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/iterator.luadoc -------------------------------------------------------------------------------- /docs/lua/pepper.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/pepper.luadoc -------------------------------------------------------------------------------- /docs/lua/report.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/report.luadoc -------------------------------------------------------------------------------- /docs/lua/repository.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/repository.luadoc -------------------------------------------------------------------------------- /docs/lua/revision.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/revision.luadoc -------------------------------------------------------------------------------- /docs/lua/tag.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/tag.luadoc -------------------------------------------------------------------------------- /docs/lua/utils.luadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/lua/utils.luadoc -------------------------------------------------------------------------------- /docs/manpage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/docs/manpage.txt -------------------------------------------------------------------------------- /m4/ax_check_zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/ax_check_zlib.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/ax_lua.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/ax_lua.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/ax_python_devel.m4 -------------------------------------------------------------------------------- /m4/configure_backends.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/configure_backends.m4 -------------------------------------------------------------------------------- /m4/configure_features.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/configure_features.m4 -------------------------------------------------------------------------------- /m4/find_apr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/find_apr.m4 -------------------------------------------------------------------------------- /m4/find_svn.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/m4/find_svn.m4 -------------------------------------------------------------------------------- /reports/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/Makefile.am -------------------------------------------------------------------------------- /reports/activity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/activity.lua -------------------------------------------------------------------------------- /reports/age.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/age.lua -------------------------------------------------------------------------------- /reports/authors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/authors.lua -------------------------------------------------------------------------------- /reports/authors_pie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/authors_pie.lua -------------------------------------------------------------------------------- /reports/branches.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/branches.lua -------------------------------------------------------------------------------- /reports/check_cache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/check_cache.lua -------------------------------------------------------------------------------- /reports/commit_counts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/commit_counts.lua -------------------------------------------------------------------------------- /reports/csv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/csv.lua -------------------------------------------------------------------------------- /reports/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/data.lua -------------------------------------------------------------------------------- /reports/diffstat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/diffstat.lua -------------------------------------------------------------------------------- /reports/directories.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/directories.lua -------------------------------------------------------------------------------- /reports/filetypes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/filetypes.lua -------------------------------------------------------------------------------- /reports/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/gui.lua -------------------------------------------------------------------------------- /reports/iteration_time.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/iteration_time.lua -------------------------------------------------------------------------------- /reports/loc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/loc.lua -------------------------------------------------------------------------------- /reports/participation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/participation.lua -------------------------------------------------------------------------------- /reports/pepper/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/pepper/Makefile.am -------------------------------------------------------------------------------- /reports/pepper/datetime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/pepper/datetime.lua -------------------------------------------------------------------------------- /reports/pepper/plotutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/pepper/plotutils.lua -------------------------------------------------------------------------------- /reports/punchcard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/punchcard.lua -------------------------------------------------------------------------------- /reports/revdump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/revdump.lua -------------------------------------------------------------------------------- /reports/shortlog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/shortlog.lua -------------------------------------------------------------------------------- /reports/tags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/tags.lua -------------------------------------------------------------------------------- /reports/times.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/times.lua -------------------------------------------------------------------------------- /reports/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/reports/volume.lua -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | pepper 2 | -------------------------------------------------------------------------------- /src/3rdparty/lunar/lunar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/3rdparty/lunar/lunar.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/abstractcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/abstractcache.cpp -------------------------------------------------------------------------------- /src/abstractcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/abstractcache.h -------------------------------------------------------------------------------- /src/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backend.cpp -------------------------------------------------------------------------------- /src/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backend.h -------------------------------------------------------------------------------- /src/backends/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/git.cpp -------------------------------------------------------------------------------- /src/backends/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/git.h -------------------------------------------------------------------------------- /src/backends/mercurial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/mercurial.cpp -------------------------------------------------------------------------------- /src/backends/mercurial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/mercurial.h -------------------------------------------------------------------------------- /src/backends/subversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/subversion.cpp -------------------------------------------------------------------------------- /src/backends/subversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/subversion.h -------------------------------------------------------------------------------- /src/backends/subversion_delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/subversion_delta.cpp -------------------------------------------------------------------------------- /src/backends/subversion_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/backends/subversion_p.h -------------------------------------------------------------------------------- /src/bstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/bstream.cpp -------------------------------------------------------------------------------- /src/bstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/bstream.h -------------------------------------------------------------------------------- /src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/cache.cpp -------------------------------------------------------------------------------- /src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/cache.h -------------------------------------------------------------------------------- /src/diffstat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/diffstat.cpp -------------------------------------------------------------------------------- /src/diffstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/diffstat.h -------------------------------------------------------------------------------- /src/gnuplot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/gnuplot.cpp -------------------------------------------------------------------------------- /src/gnuplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/gnuplot.h -------------------------------------------------------------------------------- /src/jobqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/jobqueue.h -------------------------------------------------------------------------------- /src/ldbcache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/ldbcache.cpp -------------------------------------------------------------------------------- /src/ldbcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/ldbcache.h -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/luahelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/luahelpers.h -------------------------------------------------------------------------------- /src/luamodules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/luamodules.cpp -------------------------------------------------------------------------------- /src/luamodules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/luamodules.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/main.h -------------------------------------------------------------------------------- /src/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/options.cpp -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/options.h -------------------------------------------------------------------------------- /src/pex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/pex.cpp -------------------------------------------------------------------------------- /src/pex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/pex.h -------------------------------------------------------------------------------- /src/plot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/plot.cpp -------------------------------------------------------------------------------- /src/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/plot.h -------------------------------------------------------------------------------- /src/report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/report.cpp -------------------------------------------------------------------------------- /src/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/report.h -------------------------------------------------------------------------------- /src/repository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/repository.cpp -------------------------------------------------------------------------------- /src/repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/repository.h -------------------------------------------------------------------------------- /src/revision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/revision.cpp -------------------------------------------------------------------------------- /src/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/revision.h -------------------------------------------------------------------------------- /src/revisioniterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/revisioniterator.cpp -------------------------------------------------------------------------------- /src/revisioniterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/revisioniterator.h -------------------------------------------------------------------------------- /src/strlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/strlib.cpp -------------------------------------------------------------------------------- /src/strlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/strlib.h -------------------------------------------------------------------------------- /src/syslib/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/datetime.cpp -------------------------------------------------------------------------------- /src/syslib/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/datetime.h -------------------------------------------------------------------------------- /src/syslib/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/fs.cpp -------------------------------------------------------------------------------- /src/syslib/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/fs.h -------------------------------------------------------------------------------- /src/syslib/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/io.cpp -------------------------------------------------------------------------------- /src/syslib/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/io.h -------------------------------------------------------------------------------- /src/syslib/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/parallel.cpp -------------------------------------------------------------------------------- /src/syslib/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/parallel.h -------------------------------------------------------------------------------- /src/syslib/sigblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/sigblock.cpp -------------------------------------------------------------------------------- /src/syslib/sigblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/syslib/sigblock.h -------------------------------------------------------------------------------- /src/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/tag.cpp -------------------------------------------------------------------------------- /src/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/tag.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/src/utils.h -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/atlocal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/atlocal.in -------------------------------------------------------------------------------- /tests/backends/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/backends/Makefile.am -------------------------------------------------------------------------------- /tests/backends/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/backends/main.cpp -------------------------------------------------------------------------------- /tests/backends/test_subversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/backends/test_subversion.h -------------------------------------------------------------------------------- /tests/catch/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/LICENSE_1_0.txt -------------------------------------------------------------------------------- /tests/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch.hpp -------------------------------------------------------------------------------- /tests/catch/catch_reporter_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch_reporter_basic.hpp -------------------------------------------------------------------------------- /tests/catch/catch_reporter_junit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch_reporter_junit.hpp -------------------------------------------------------------------------------- /tests/catch/catch_reporter_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch_reporter_xml.hpp -------------------------------------------------------------------------------- /tests/catch/catch_runner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch_runner.hpp -------------------------------------------------------------------------------- /tests/catch/catch_with_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/catch_with_main.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_capture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_capture.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_commandline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_commandline.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_common.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_config.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_debugger.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_generators.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_generators_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_generators_impl.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_hub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_hub.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_hub_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_hub_impl.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_interfaces_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_interfaces_capture.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_interfaces_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_interfaces_reporter.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_interfaces_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_interfaces_runner.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_interfaces_testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_interfaces_testcase.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_list.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_reporter_registrars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_reporter_registrars.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_reporter_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_reporter_registry.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_result_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_result_type.h -------------------------------------------------------------------------------- /tests/catch/internal/catch_resultinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_resultinfo.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_runner_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_runner_impl.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_section.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_self_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_self_test.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_stream.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_test_case_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_test_case_info.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_test_case_registry_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_test_case_registry_impl.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_test_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_test_registry.hpp -------------------------------------------------------------------------------- /tests/catch/internal/catch_xmlwriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/catch/internal/catch_xmlwriter.hpp -------------------------------------------------------------------------------- /tests/diffstat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/Makefile.am -------------------------------------------------------------------------------- /tests/diffstat/data/git-add.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/git-add.pat -------------------------------------------------------------------------------- /tests/diffstat/data/git-add.ref: -------------------------------------------------------------------------------- 1 | 1 file changed, 24 insertions(+) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/git-del.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/git-del.pat -------------------------------------------------------------------------------- /tests/diffstat/data/git-del.ref: -------------------------------------------------------------------------------- 1 | 1 file changed, 24 deletions(-) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/git-mod.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/git-mod.pat -------------------------------------------------------------------------------- /tests/diffstat/data/git-mod.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/git-mod.ref -------------------------------------------------------------------------------- /tests/diffstat/data/git-quotes.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/git-quotes.pat -------------------------------------------------------------------------------- /tests/diffstat/data/git-quotes.ref: -------------------------------------------------------------------------------- 1 | 3 files changed, 12 deletions(-) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/svn-add.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/svn-add.pat -------------------------------------------------------------------------------- /tests/diffstat/data/svn-add.ref: -------------------------------------------------------------------------------- 1 | 1 file changed, 24 insertions(+) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/svn-bin-wronchunk.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/svn-bin-wronchunk.pat -------------------------------------------------------------------------------- /tests/diffstat/data/svn-bin-wronchunk.ref: -------------------------------------------------------------------------------- 1 | 2 files changed, 21 insertions(+) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/svn-del.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/svn-del.pat -------------------------------------------------------------------------------- /tests/diffstat/data/svn-del.ref: -------------------------------------------------------------------------------- 1 | 1 file changed, 24 deletions(-) 2 | -------------------------------------------------------------------------------- /tests/diffstat/data/svn-mod.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/svn-mod.pat -------------------------------------------------------------------------------- /tests/diffstat/data/svn-mod.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/data/svn-mod.ref -------------------------------------------------------------------------------- /tests/diffstat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/diffstat/main.cpp -------------------------------------------------------------------------------- /tests/scripts/cmpdiffs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/scripts/cmpdiffs -------------------------------------------------------------------------------- /tests/scripts/diffcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/scripts/diffcmp -------------------------------------------------------------------------------- /tests/test_backends.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/test_backends.at -------------------------------------------------------------------------------- /tests/test_diffstat.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/test_diffstat.at -------------------------------------------------------------------------------- /tests/test_diffstat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/test_diffstat.pl -------------------------------------------------------------------------------- /tests/test_units.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/test_units.at -------------------------------------------------------------------------------- /tests/testsuite.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/testsuite.at -------------------------------------------------------------------------------- /tests/units/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/Makefile.am -------------------------------------------------------------------------------- /tests/units/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/main.cpp -------------------------------------------------------------------------------- /tests/units/test_bstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_bstream.h -------------------------------------------------------------------------------- /tests/units/test_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_options.h -------------------------------------------------------------------------------- /tests/units/test_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_parallel.h -------------------------------------------------------------------------------- /tests/units/test_strlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_strlib.h -------------------------------------------------------------------------------- /tests/units/test_sys_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_sys_fs.h -------------------------------------------------------------------------------- /tests/units/test_sys_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_sys_io.h -------------------------------------------------------------------------------- /tests/units/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgehring/pepper/HEAD/tests/units/test_utils.h --------------------------------------------------------------------------------