├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── .ignore ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── dev-requirements.txt ├── pyproject.toml ├── scriv.d └── README.txt ├── src └── dinghy │ ├── __init__.py │ ├── __main__.py │ ├── adhoc.py │ ├── cli.py │ ├── digest.py │ ├── graphql │ ├── author_frag.graphql │ ├── comment_frag.graphql │ ├── issue_comments.graphql │ ├── issue_frag.graphql │ ├── org_project_entries.graphql │ ├── pr_comments.graphql │ ├── pr_reviews.graphql │ ├── pr_reviewthreads.graphql │ ├── project_entries_frag.graphql │ ├── pull_request_frag.graphql │ ├── release_frag.graphql │ ├── repo_frag.graphql │ ├── repo_issues.graphql │ ├── repo_pull_requests.graphql │ ├── repo_releases.graphql │ ├── review_comments.graphql │ ├── review_frag.graphql │ ├── reviewthread_comments.graphql │ ├── reviewthread_frag.graphql │ └── search_entries.graphql │ ├── graphql_helpers.py │ ├── helpers.py │ ├── jinja_helpers.py │ └── templates │ └── digest.html.j2 ├── tests └── test_helpers.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: nedbat 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/.ignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scriv.d/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/scriv.d/README.txt -------------------------------------------------------------------------------- /src/dinghy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/__init__.py -------------------------------------------------------------------------------- /src/dinghy/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/__main__.py -------------------------------------------------------------------------------- /src/dinghy/adhoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/adhoc.py -------------------------------------------------------------------------------- /src/dinghy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/cli.py -------------------------------------------------------------------------------- /src/dinghy/digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/digest.py -------------------------------------------------------------------------------- /src/dinghy/graphql/author_frag.graphql: -------------------------------------------------------------------------------- 1 | fragment authorData on Actor { 2 | __typename 3 | login 4 | } 5 | -------------------------------------------------------------------------------- /src/dinghy/graphql/comment_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/comment_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/issue_comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/issue_comments.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/issue_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/issue_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/org_project_entries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/org_project_entries.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/pr_comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/pr_comments.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/pr_reviews.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/pr_reviews.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/pr_reviewthreads.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/pr_reviewthreads.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/project_entries_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/project_entries_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/pull_request_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/pull_request_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/release_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/release_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/repo_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/repo_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/repo_issues.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/repo_issues.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/repo_pull_requests.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/repo_pull_requests.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/repo_releases.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/repo_releases.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/review_comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/review_comments.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/review_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/review_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/reviewthread_comments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/reviewthread_comments.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/reviewthread_frag.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/reviewthread_frag.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql/search_entries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql/search_entries.graphql -------------------------------------------------------------------------------- /src/dinghy/graphql_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/graphql_helpers.py -------------------------------------------------------------------------------- /src/dinghy/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/helpers.py -------------------------------------------------------------------------------- /src/dinghy/jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/jinja_helpers.py -------------------------------------------------------------------------------- /src/dinghy/templates/digest.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/src/dinghy/templates/digest.html.j2 -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nedbat/dinghy/HEAD/tox.ini --------------------------------------------------------------------------------