├── .gitignore ├── Dockerfile ├── config └── config.yaml ├── ghcc_process ├── ghcc.py ├── libs │ ├── __init__.py │ ├── github_audit_libs.py │ ├── keywords.py │ └── mongo_utils.py ├── remove_lock.py └── requirements.txt ├── images ├── screenshot.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png ├── readme.md ├── supervisord.conf └── viewer_process ├── __init__.py ├── ghcc ├── .gitignore ├── __init__.py ├── libs │ ├── __init__.py │ ├── config.py │ ├── superxmlrpc.py │ └── utils.py ├── static │ ├── css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── highlight.css │ │ └── styles │ │ │ ├── github.css │ │ │ └── zenburn.css │ ├── favicon.ico │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ └── darth.gif │ └── js │ │ ├── highlight.pack.js │ │ ├── jquery.highlight-5.js │ │ ├── jquery.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── jquery.tablesorter.widgets.min.js │ │ └── table_misc.js ├── templates │ ├── config.html │ ├── error.html │ ├── footer.html │ ├── gh_audit.html │ ├── ghrecord.html │ ├── info.html │ ├── log.html │ ├── navbar.html │ ├── no_more.html │ └── supervisor.html └── views.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/Dockerfile -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/config/config.yaml -------------------------------------------------------------------------------- /ghcc_process/ghcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/ghcc.py -------------------------------------------------------------------------------- /ghcc_process/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghcc_process/libs/github_audit_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/libs/github_audit_libs.py -------------------------------------------------------------------------------- /ghcc_process/libs/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/libs/keywords.py -------------------------------------------------------------------------------- /ghcc_process/libs/mongo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/libs/mongo_utils.py -------------------------------------------------------------------------------- /ghcc_process/remove_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/remove_lock.py -------------------------------------------------------------------------------- /ghcc_process/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/ghcc_process/requirements.txt -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/images/screenshot2.png -------------------------------------------------------------------------------- /images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/images/screenshot3.png -------------------------------------------------------------------------------- /images/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/images/screenshot4.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/readme.md -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/supervisord.conf -------------------------------------------------------------------------------- /viewer_process/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer_process/ghcc/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | -------------------------------------------------------------------------------- /viewer_process/ghcc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer_process/ghcc/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewer_process/ghcc/libs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/libs/config.py -------------------------------------------------------------------------------- /viewer_process/ghcc/libs/superxmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/libs/superxmlrpc.py -------------------------------------------------------------------------------- /viewer_process/ghcc/libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/libs/utils.py -------------------------------------------------------------------------------- /viewer_process/ghcc/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /viewer_process/ghcc/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /viewer_process/ghcc/static/css/highlight.css: -------------------------------------------------------------------------------- 1 | .highlight { background-color: yellow } -------------------------------------------------------------------------------- /viewer_process/ghcc/static/css/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/css/styles/github.css -------------------------------------------------------------------------------- /viewer_process/ghcc/static/css/styles/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/css/styles/zenburn.css -------------------------------------------------------------------------------- /viewer_process/ghcc/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/favicon.ico -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /viewer_process/ghcc/static/images/darth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/images/darth.gif -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/highlight.pack.js -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/jquery.highlight-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/jquery.highlight-5.js -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/jquery.min.js -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/jquery.tablesorter.widgets.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/jquery.tablesorter.widgets.min.js -------------------------------------------------------------------------------- /viewer_process/ghcc/static/js/table_misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/static/js/table_misc.js -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/config.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/error.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/footer.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/gh_audit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/gh_audit.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/ghrecord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/ghrecord.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/info.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/log.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/navbar.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/no_more.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/no_more.html -------------------------------------------------------------------------------- /viewer_process/ghcc/templates/supervisor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/templates/supervisor.html -------------------------------------------------------------------------------- /viewer_process/ghcc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/ghcc/views.py -------------------------------------------------------------------------------- /viewer_process/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfalken/github_commit_crawler/HEAD/viewer_process/requirements.txt --------------------------------------------------------------------------------