├── .coveragerc ├── .flake8 ├── .github ├── pull_request_template.md └── workflows │ ├── codechecks.yml │ ├── linux.yml │ ├── macos.yaml │ └── windows.yml ├── .gitignore ├── .readthedocs.yaml ├── COPYING.GPL ├── COPYING.TGPPL.rst ├── CREDITS ├── DEVELOPERS ├── MANIFEST.in ├── Makefile ├── NEWS.rst ├── NOTES.rst ├── README.rst ├── docs ├── CODE_OF_CONDUCT.rst ├── Makefile ├── _static │ ├── .empty │ └── custom.css ├── _templates │ └── .empty ├── backdoors.rst ├── conf.py ├── config.rst ├── datamodel.rst ├── development.rst ├── downloader.rst ├── index.rst ├── interface.rst ├── invite-diagram-readonly.seqdiag ├── invite-diagram.seqdiag ├── invites.rst ├── leif-design.rst ├── limitations.rst ├── magic-folder-data-model--high-level.svg ├── magic-folder-data-model-abstract--conflict.plain.svg ├── magic-folder-data-model-abstract--conflict.svg ├── magic-folder-data-model-abstract.svg ├── magic-folder-data-model.svg ├── proposed │ ├── conflict-api.rst │ ├── index.rst │ ├── magic-folder │ │ ├── filesystem-integration.rst │ │ ├── remote-to-local-sync.rst │ │ └── user-interface-design.rst │ ├── recovery.rst │ └── scanning-for-changes.rst ├── release-process.rst ├── releases.rst ├── snapshots.rst └── usage.rst ├── integration ├── README ├── __init__.py ├── conftest.py ├── test_add.py ├── test_general_cli.py ├── test_invite.py ├── test_kitties.py ├── test_list.py ├── test_magic_folder.py ├── test_multiuser.py ├── test_same_files.py ├── test_status.py ├── test_synchronize.py ├── test_tahoe_objects.py └── util.py ├── misc ├── build_helpers │ ├── platform-pins.py │ ├── run-deprecations.py │ ├── sqlite_version.py │ └── update-version.py └── coding_tools │ └── check-debugging.py ├── newsfragments ├── .keep-directory ├── 750.minor ├── 760.installation ├── 764.feature ├── 764.minor ├── 769.minor ├── 770.minor └── 773.minor ├── pyproject.toml ├── pytest.ini ├── requirements ├── README ├── base.in ├── base.txt ├── build.in ├── build.txt ├── platform.txt ├── read-the-docs.txt ├── tahoe-integration-1.17.txt ├── tahoe-integration-1.18.txt ├── tahoe-integration-1.19.txt ├── tahoe-integration-master.txt ├── test.in ├── test.txt ├── tox.in └── tox.txt ├── setup.py ├── signatures ├── README.rst ├── magic-folder-22.10.0.tar.gz.asc ├── magic-folder-22.10.1.tar.gz.asc ├── magic-folder-22.2.0.tar.gz.asc ├── magic-folder-22.2.1.tar.gz.asc ├── magic-folder-22.5.0.tar.gz.asc ├── magic-folder-22.5.1.tar.gz.asc ├── magic-folder-22.8.0.tar.gz.asc ├── magic-folder-22.9.0.tar.gz.asc ├── magic-folder-23.1.1.tar.gz.asc ├── magic-folder-23.3.0.tar.gz.asc ├── magic-folder-23.3.1.tar.gz.asc ├── magic-folder-23.5.0.tar.gz.asc ├── magic-folder-23.6.0.tar.gz.asc ├── magic_folder-22.1.0-py3-none-any.whl.asc ├── magic_folder-22.1.0.tar.gz.asc ├── magic_folder-22.10.0-py3-none-any.whl.asc ├── magic_folder-22.10.1-py3-none-any.whl.asc ├── magic_folder-22.2.0-py3-none-any.whl.asc ├── magic_folder-22.2.1-py3-none-any.whl.asc ├── magic_folder-22.5.0-py3-none-any.whl.asc ├── magic_folder-22.5.1-py3-none-any.whl.asc ├── magic_folder-22.8.0-py3-none-any.whl.asc ├── magic_folder-22.9.0-py3-none-any.whl.asc ├── magic_folder-23.1.1-py3-none-any.whl.asc ├── magic_folder-23.3.0-py3-none-any.whl.asc ├── magic_folder-23.3.1-py3-none-any.whl.asc ├── magic_folder-23.5.0-py3-none-any.whl.asc └── magic_folder-23.6.0-py3-none-any.whl.asc ├── src ├── magic_folder │ ├── __init__.py │ ├── __main__.py │ ├── _coverage.py │ ├── _endpoint_parser.py │ ├── _schema.py │ ├── api_cli.py │ ├── cli.py │ ├── client.py │ ├── common.py │ ├── config.py │ ├── downloader.py │ ├── endpoints.py │ ├── initialize.py │ ├── invite.py │ ├── join.py │ ├── list.py │ ├── magic_file.py │ ├── magic_folder.py │ ├── magicpath.py │ ├── migrate.py │ ├── participants.py │ ├── pid.py │ ├── scanner.py │ ├── service.py │ ├── show_config.py │ ├── snapshot.py │ ├── status.py │ ├── tahoe_client.py │ ├── test │ │ ├── __init__.py │ │ ├── agentutil.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── test_api_cli.py │ │ │ └── test_magic_folder.py │ │ ├── common.py │ │ ├── eliotutil.py │ │ ├── fixtures.py │ │ ├── matchers.py │ │ ├── plugins │ │ │ └── magic_folder_tests_dropin.py │ │ ├── strategies.py │ │ ├── test_api_cli.py │ │ ├── test_cli.py │ │ ├── test_client.py │ │ ├── test_common.py │ │ ├── test_config.py │ │ ├── test_download.py │ │ ├── test_eliotutil.py │ │ ├── test_endpoints.py │ │ ├── test_invite.py │ │ ├── test_local_snapshot.py │ │ ├── test_magic_file.py │ │ ├── test_magic_folder_service.py │ │ ├── test_magicpath.py │ │ ├── test_participants.py │ │ ├── test_pid.py │ │ ├── test_scanner.py │ │ ├── test_schema.py │ │ ├── test_service.py │ │ ├── test_snapshot.py │ │ ├── test_status.py │ │ ├── test_strategies.py │ │ ├── test_tahoe_client.py │ │ ├── test_testing.py │ │ ├── test_upload.py │ │ ├── test_util_attrs_zope.py │ │ ├── test_util_database.py │ │ ├── test_util_file.py │ │ ├── test_util_twisted.py │ │ └── test_web.py │ ├── testing │ │ ├── __init__.py │ │ └── web.py │ ├── uploader.py │ ├── util │ │ ├── __init__.py │ │ ├── attrs_zope.py │ │ ├── capabilities.py │ │ ├── database.py │ │ ├── eliotutil.py │ │ ├── encoding.py │ │ ├── file.py │ │ ├── observer.py │ │ ├── twisted.py │ │ └── wrap.py │ └── web.py └── twisted │ └── plugins │ └── magic_folder_dropin.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/codechecks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.github/workflows/codechecks.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.github/workflows/macos.yaml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /COPYING.TGPPL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/COPYING.TGPPL.rst -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/CREDITS -------------------------------------------------------------------------------- /DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/DEVELOPERS -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/NEWS.rst -------------------------------------------------------------------------------- /NOTES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/NOTES.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/README.rst -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | #known-issues-and-limitations li { 2 | margin-bottom: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /docs/_templates/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/backdoors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/backdoors.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/config.rst -------------------------------------------------------------------------------- /docs/datamodel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/datamodel.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/downloader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/downloader.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/interface.rst -------------------------------------------------------------------------------- /docs/invite-diagram-readonly.seqdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/invite-diagram-readonly.seqdiag -------------------------------------------------------------------------------- /docs/invite-diagram.seqdiag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/invite-diagram.seqdiag -------------------------------------------------------------------------------- /docs/invites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/invites.rst -------------------------------------------------------------------------------- /docs/leif-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/leif-design.rst -------------------------------------------------------------------------------- /docs/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/limitations.rst -------------------------------------------------------------------------------- /docs/magic-folder-data-model--high-level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/magic-folder-data-model--high-level.svg -------------------------------------------------------------------------------- /docs/magic-folder-data-model-abstract--conflict.plain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/magic-folder-data-model-abstract--conflict.plain.svg -------------------------------------------------------------------------------- /docs/magic-folder-data-model-abstract--conflict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/magic-folder-data-model-abstract--conflict.svg -------------------------------------------------------------------------------- /docs/magic-folder-data-model-abstract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/magic-folder-data-model-abstract.svg -------------------------------------------------------------------------------- /docs/magic-folder-data-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/magic-folder-data-model.svg -------------------------------------------------------------------------------- /docs/proposed/conflict-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/conflict-api.rst -------------------------------------------------------------------------------- /docs/proposed/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/index.rst -------------------------------------------------------------------------------- /docs/proposed/magic-folder/filesystem-integration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/magic-folder/filesystem-integration.rst -------------------------------------------------------------------------------- /docs/proposed/magic-folder/remote-to-local-sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/magic-folder/remote-to-local-sync.rst -------------------------------------------------------------------------------- /docs/proposed/magic-folder/user-interface-design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/magic-folder/user-interface-design.rst -------------------------------------------------------------------------------- /docs/proposed/recovery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/recovery.rst -------------------------------------------------------------------------------- /docs/proposed/scanning-for-changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/proposed/scanning-for-changes.rst -------------------------------------------------------------------------------- /docs/release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/release-process.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /docs/snapshots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/snapshots.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /integration/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/README -------------------------------------------------------------------------------- /integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/conftest.py -------------------------------------------------------------------------------- /integration/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_add.py -------------------------------------------------------------------------------- /integration/test_general_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_general_cli.py -------------------------------------------------------------------------------- /integration/test_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_invite.py -------------------------------------------------------------------------------- /integration/test_kitties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_kitties.py -------------------------------------------------------------------------------- /integration/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_list.py -------------------------------------------------------------------------------- /integration/test_magic_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_magic_folder.py -------------------------------------------------------------------------------- /integration/test_multiuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_multiuser.py -------------------------------------------------------------------------------- /integration/test_same_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_same_files.py -------------------------------------------------------------------------------- /integration/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_status.py -------------------------------------------------------------------------------- /integration/test_synchronize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_synchronize.py -------------------------------------------------------------------------------- /integration/test_tahoe_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/test_tahoe_objects.py -------------------------------------------------------------------------------- /integration/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/integration/util.py -------------------------------------------------------------------------------- /misc/build_helpers/platform-pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/misc/build_helpers/platform-pins.py -------------------------------------------------------------------------------- /misc/build_helpers/run-deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/misc/build_helpers/run-deprecations.py -------------------------------------------------------------------------------- /misc/build_helpers/sqlite_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/misc/build_helpers/sqlite_version.py -------------------------------------------------------------------------------- /misc/build_helpers/update-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/misc/build_helpers/update-version.py -------------------------------------------------------------------------------- /misc/coding_tools/check-debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/misc/coding_tools/check-debugging.py -------------------------------------------------------------------------------- /newsfragments/.keep-directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsfragments/750.minor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsfragments/760.installation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/newsfragments/760.installation -------------------------------------------------------------------------------- /newsfragments/764.feature: -------------------------------------------------------------------------------- 1 | Update CI, due to various deprecations and time passing 2 | -------------------------------------------------------------------------------- /newsfragments/764.minor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsfragments/769.minor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsfragments/770.minor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsfragments/773.minor: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/README -------------------------------------------------------------------------------- /requirements/base.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/base.in -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/build.in -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/platform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/platform.txt -------------------------------------------------------------------------------- /requirements/read-the-docs.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | -------------------------------------------------------------------------------- /requirements/tahoe-integration-1.17.txt: -------------------------------------------------------------------------------- 1 | tahoe-lafs==1.17.1 2 | attrs<24.1.0 3 | cryptography<43.0.0 4 | -------------------------------------------------------------------------------- /requirements/tahoe-integration-1.18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/tahoe-integration-1.18.txt -------------------------------------------------------------------------------- /requirements/tahoe-integration-1.19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/tahoe-integration-1.19.txt -------------------------------------------------------------------------------- /requirements/tahoe-integration-master.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/tahoe-integration-master.txt -------------------------------------------------------------------------------- /requirements/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/test.in -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /requirements/tox.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/tox.in -------------------------------------------------------------------------------- /requirements/tox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/requirements/tox.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/setup.py -------------------------------------------------------------------------------- /signatures/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/README.rst -------------------------------------------------------------------------------- /signatures/magic-folder-22.10.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.10.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.10.1.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.10.1.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.2.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.2.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.2.1.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.2.1.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.5.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.5.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.5.1.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.5.1.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.8.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.8.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-22.9.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-22.9.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-23.1.1.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-23.1.1.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-23.3.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-23.3.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-23.3.1.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-23.3.1.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-23.5.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-23.5.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic-folder-23.6.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic-folder-23.6.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.1.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.1.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.1.0.tar.gz.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.1.0.tar.gz.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.10.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.10.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.10.1-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.10.1-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.2.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.2.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.2.1-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.2.1-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.5.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.5.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.5.1-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.5.1-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.8.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.8.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-22.9.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-22.9.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-23.1.1-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-23.1.1-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-23.3.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-23.3.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-23.3.1-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-23.3.1-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-23.5.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-23.5.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /signatures/magic_folder-23.6.0-py3-none-any.whl.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/signatures/magic_folder-23.6.0-py3-none-any.whl.asc -------------------------------------------------------------------------------- /src/magic_folder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/__init__.py -------------------------------------------------------------------------------- /src/magic_folder/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/__main__.py -------------------------------------------------------------------------------- /src/magic_folder/_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/_coverage.py -------------------------------------------------------------------------------- /src/magic_folder/_endpoint_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/_endpoint_parser.py -------------------------------------------------------------------------------- /src/magic_folder/_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/_schema.py -------------------------------------------------------------------------------- /src/magic_folder/api_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/api_cli.py -------------------------------------------------------------------------------- /src/magic_folder/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/cli.py -------------------------------------------------------------------------------- /src/magic_folder/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/client.py -------------------------------------------------------------------------------- /src/magic_folder/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/common.py -------------------------------------------------------------------------------- /src/magic_folder/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/config.py -------------------------------------------------------------------------------- /src/magic_folder/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/downloader.py -------------------------------------------------------------------------------- /src/magic_folder/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/endpoints.py -------------------------------------------------------------------------------- /src/magic_folder/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/initialize.py -------------------------------------------------------------------------------- /src/magic_folder/invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/invite.py -------------------------------------------------------------------------------- /src/magic_folder/join.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/magic_folder/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/list.py -------------------------------------------------------------------------------- /src/magic_folder/magic_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/magic_file.py -------------------------------------------------------------------------------- /src/magic_folder/magic_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/magic_folder.py -------------------------------------------------------------------------------- /src/magic_folder/magicpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/magicpath.py -------------------------------------------------------------------------------- /src/magic_folder/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/migrate.py -------------------------------------------------------------------------------- /src/magic_folder/participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/participants.py -------------------------------------------------------------------------------- /src/magic_folder/pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/pid.py -------------------------------------------------------------------------------- /src/magic_folder/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/scanner.py -------------------------------------------------------------------------------- /src/magic_folder/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/service.py -------------------------------------------------------------------------------- /src/magic_folder/show_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/show_config.py -------------------------------------------------------------------------------- /src/magic_folder/snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/snapshot.py -------------------------------------------------------------------------------- /src/magic_folder/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/status.py -------------------------------------------------------------------------------- /src/magic_folder/tahoe_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/tahoe_client.py -------------------------------------------------------------------------------- /src/magic_folder/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/__init__.py -------------------------------------------------------------------------------- /src/magic_folder/test/agentutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/agentutil.py -------------------------------------------------------------------------------- /src/magic_folder/test/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/magic_folder/test/cli/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/cli/common.py -------------------------------------------------------------------------------- /src/magic_folder/test/cli/test_api_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/cli/test_api_cli.py -------------------------------------------------------------------------------- /src/magic_folder/test/cli/test_magic_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/cli/test_magic_folder.py -------------------------------------------------------------------------------- /src/magic_folder/test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/common.py -------------------------------------------------------------------------------- /src/magic_folder/test/eliotutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/eliotutil.py -------------------------------------------------------------------------------- /src/magic_folder/test/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/fixtures.py -------------------------------------------------------------------------------- /src/magic_folder/test/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/matchers.py -------------------------------------------------------------------------------- /src/magic_folder/test/plugins/magic_folder_tests_dropin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/plugins/magic_folder_tests_dropin.py -------------------------------------------------------------------------------- /src/magic_folder/test/strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/strategies.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_api_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_api_cli.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_cli.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_client.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_common.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_config.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_download.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_eliotutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_eliotutil.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_endpoints.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_invite.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_local_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_local_snapshot.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_magic_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_magic_file.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_magic_folder_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_magic_folder_service.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_magicpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_magicpath.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_participants.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_pid.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_scanner.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_schema.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_service.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_snapshot.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_status.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_strategies.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_tahoe_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_tahoe_client.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_testing.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_upload.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_util_attrs_zope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_util_attrs_zope.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_util_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_util_database.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_util_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_util_file.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_util_twisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_util_twisted.py -------------------------------------------------------------------------------- /src/magic_folder/test/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/test/test_web.py -------------------------------------------------------------------------------- /src/magic_folder/testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/magic_folder/testing/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/testing/web.py -------------------------------------------------------------------------------- /src/magic_folder/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/uploader.py -------------------------------------------------------------------------------- /src/magic_folder/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/magic_folder/util/attrs_zope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/attrs_zope.py -------------------------------------------------------------------------------- /src/magic_folder/util/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/capabilities.py -------------------------------------------------------------------------------- /src/magic_folder/util/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/database.py -------------------------------------------------------------------------------- /src/magic_folder/util/eliotutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/eliotutil.py -------------------------------------------------------------------------------- /src/magic_folder/util/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/encoding.py -------------------------------------------------------------------------------- /src/magic_folder/util/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/file.py -------------------------------------------------------------------------------- /src/magic_folder/util/observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/observer.py -------------------------------------------------------------------------------- /src/magic_folder/util/twisted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/twisted.py -------------------------------------------------------------------------------- /src/magic_folder/util/wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/util/wrap.py -------------------------------------------------------------------------------- /src/magic_folder/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/magic_folder/web.py -------------------------------------------------------------------------------- /src/twisted/plugins/magic_folder_dropin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/src/twisted/plugins/magic_folder_dropin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tahoe-lafs/magic-folder/HEAD/tox.ini --------------------------------------------------------------------------------