├── .coveragerc ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── TERMS.md ├── docs └── images │ ├── banner.png │ ├── dropdown.png │ └── sharing-sites.png ├── pyproject.toml ├── setup.py ├── testmanage.py ├── tox.ini └── wagtailsharing ├── __init__.py ├── apps.py ├── helpers.py ├── migrations ├── 0001_initial.py ├── 0002_shareableroutablepage.py ├── 0003_delete_shareableroutablepage.py ├── 0004_bigautofield.py └── __init__.py ├── models.py ├── routers ├── __init__.py ├── base.py ├── db.py └── settings.py ├── templates └── wagtailsharing │ └── banner.html ├── tests ├── __init__.py ├── helpers.py ├── routers │ ├── __init__.py │ ├── test_base.py │ ├── test_db.py │ ├── test_routers.py │ └── test_settings.py ├── settings.py ├── shareable_routable_testapp │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_testpage.py │ │ └── __init__.py │ └── models.py ├── test_helpers.py ├── test_models.py ├── test_urls.py ├── test_views.py ├── test_wagtail_hooks.py └── urls.py ├── urls.py ├── views.py └── wagtail_hooks.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | /CHANGELOG.md merge=union 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/README.rst -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/TERMS.md -------------------------------------------------------------------------------- /docs/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/docs/images/banner.png -------------------------------------------------------------------------------- /docs/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/docs/images/dropdown.png -------------------------------------------------------------------------------- /docs/images/sharing-sites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/docs/images/sharing-sites.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/setup.py -------------------------------------------------------------------------------- /testmanage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/testmanage.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/tox.ini -------------------------------------------------------------------------------- /wagtailsharing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/apps.py -------------------------------------------------------------------------------- /wagtailsharing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/helpers.py -------------------------------------------------------------------------------- /wagtailsharing/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/migrations/0001_initial.py -------------------------------------------------------------------------------- /wagtailsharing/migrations/0002_shareableroutablepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/migrations/0002_shareableroutablepage.py -------------------------------------------------------------------------------- /wagtailsharing/migrations/0003_delete_shareableroutablepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/migrations/0003_delete_shareableroutablepage.py -------------------------------------------------------------------------------- /wagtailsharing/migrations/0004_bigautofield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/migrations/0004_bigautofield.py -------------------------------------------------------------------------------- /wagtailsharing/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/models.py -------------------------------------------------------------------------------- /wagtailsharing/routers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/routers/__init__.py -------------------------------------------------------------------------------- /wagtailsharing/routers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/routers/base.py -------------------------------------------------------------------------------- /wagtailsharing/routers/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/routers/db.py -------------------------------------------------------------------------------- /wagtailsharing/routers/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/routers/settings.py -------------------------------------------------------------------------------- /wagtailsharing/templates/wagtailsharing/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/templates/wagtailsharing/banner.html -------------------------------------------------------------------------------- /wagtailsharing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/helpers.py -------------------------------------------------------------------------------- /wagtailsharing/tests/routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/tests/routers/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/routers/test_base.py -------------------------------------------------------------------------------- /wagtailsharing/tests/routers/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/routers/test_db.py -------------------------------------------------------------------------------- /wagtailsharing/tests/routers/test_routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/routers/test_routers.py -------------------------------------------------------------------------------- /wagtailsharing/tests/routers/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/routers/test_settings.py -------------------------------------------------------------------------------- /wagtailsharing/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/settings.py -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/shareable_routable_testapp/apps.py -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/shareable_routable_testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/migrations/0002_testpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/shareable_routable_testapp/migrations/0002_testpage.py -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wagtailsharing/tests/shareable_routable_testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/shareable_routable_testapp/models.py -------------------------------------------------------------------------------- /wagtailsharing/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/test_helpers.py -------------------------------------------------------------------------------- /wagtailsharing/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/test_models.py -------------------------------------------------------------------------------- /wagtailsharing/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/test_urls.py -------------------------------------------------------------------------------- /wagtailsharing/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/test_views.py -------------------------------------------------------------------------------- /wagtailsharing/tests/test_wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/test_wagtail_hooks.py -------------------------------------------------------------------------------- /wagtailsharing/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/tests/urls.py -------------------------------------------------------------------------------- /wagtailsharing/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/urls.py -------------------------------------------------------------------------------- /wagtailsharing/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/views.py -------------------------------------------------------------------------------- /wagtailsharing/wagtail_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/wagtail-sharing/HEAD/wagtailsharing/wagtail_hooks.py --------------------------------------------------------------------------------