├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CHANGES.rst ├── CONTRIBUTORS.rst ├── DEVELOP.rst ├── LICENSE.GPL ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── base.cfg ├── docs ├── conf.py ├── export.png ├── import.png ├── index.rst └── starzel.png ├── requirements.txt ├── requirements_black.txt ├── setup.cfg ├── setup.py ├── src └── collective │ ├── __init__.py │ └── exportimport │ ├── __init__.py │ ├── config.py │ ├── configure.zcml │ ├── deserializer.py │ ├── export_content.py │ ├── export_other.py │ ├── export_topic.py │ ├── fix_html.py │ ├── import_content.py │ ├── import_other.py │ ├── interfaces.py │ ├── locales │ ├── README.rst │ ├── __init__.py │ ├── collective.exportimport.pot │ ├── en │ │ └── LC_MESSAGES │ │ │ └── collective.exportimport.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── collective.exportimport.po │ ├── update.py │ └── update.sh │ ├── permissions.zcml │ ├── serializer.py │ ├── templates │ ├── export_content.pt │ ├── export_other.pt │ ├── import_content.pt │ ├── import_defaultpages.pt │ ├── import_discussion.pt │ ├── import_localroles.pt │ ├── import_members.pt │ ├── import_ordering.pt │ ├── import_portlets.pt │ ├── import_redirects.pt │ ├── import_relations.pt │ ├── import_translations.pt │ └── links.pt │ ├── testing.py │ └── tests │ ├── __init__.py │ ├── file.pdf │ ├── test_drop_and_include.py │ ├── test_export.py │ ├── test_fix_html.py │ ├── test_import.py │ └── test_setup.py ├── test-4.3.x.cfg ├── test-5.0.x.cfg ├── test-5.1.x.cfg ├── test-5.2.x.cfg ├── test-6.0.x.cfg └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGES.rst merge=union -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /DEVELOP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/DEVELOP.rst -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/README.rst -------------------------------------------------------------------------------- /base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/base.cfg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/docs/export.png -------------------------------------------------------------------------------- /docs/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/docs/import.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/starzel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/docs/starzel.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_black.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/requirements_black.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/setup.py -------------------------------------------------------------------------------- /src/collective/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/__init__.py -------------------------------------------------------------------------------- /src/collective/exportimport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/__init__.py -------------------------------------------------------------------------------- /src/collective/exportimport/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/config.py -------------------------------------------------------------------------------- /src/collective/exportimport/configure.zcml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/configure.zcml -------------------------------------------------------------------------------- /src/collective/exportimport/deserializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/deserializer.py -------------------------------------------------------------------------------- /src/collective/exportimport/export_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/export_content.py -------------------------------------------------------------------------------- /src/collective/exportimport/export_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/export_other.py -------------------------------------------------------------------------------- /src/collective/exportimport/export_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/export_topic.py -------------------------------------------------------------------------------- /src/collective/exportimport/fix_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/fix_html.py -------------------------------------------------------------------------------- /src/collective/exportimport/import_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/import_content.py -------------------------------------------------------------------------------- /src/collective/exportimport/import_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/import_other.py -------------------------------------------------------------------------------- /src/collective/exportimport/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/interfaces.py -------------------------------------------------------------------------------- /src/collective/exportimport/locales/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/README.rst -------------------------------------------------------------------------------- /src/collective/exportimport/locales/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/collective/exportimport/locales/collective.exportimport.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/collective.exportimport.pot -------------------------------------------------------------------------------- /src/collective/exportimport/locales/en/LC_MESSAGES/collective.exportimport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/en/LC_MESSAGES/collective.exportimport.po -------------------------------------------------------------------------------- /src/collective/exportimport/locales/es/LC_MESSAGES/collective.exportimport.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/es/LC_MESSAGES/collective.exportimport.po -------------------------------------------------------------------------------- /src/collective/exportimport/locales/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/update.py -------------------------------------------------------------------------------- /src/collective/exportimport/locales/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/locales/update.sh -------------------------------------------------------------------------------- /src/collective/exportimport/permissions.zcml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/permissions.zcml -------------------------------------------------------------------------------- /src/collective/exportimport/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/serializer.py -------------------------------------------------------------------------------- /src/collective/exportimport/templates/export_content.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/export_content.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/export_other.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/export_other.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_content.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_content.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_defaultpages.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_defaultpages.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_discussion.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_discussion.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_localroles.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_localroles.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_members.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_members.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_ordering.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_ordering.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_portlets.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_portlets.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_redirects.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_redirects.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_relations.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_relations.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/import_translations.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/import_translations.pt -------------------------------------------------------------------------------- /src/collective/exportimport/templates/links.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/templates/links.pt -------------------------------------------------------------------------------- /src/collective/exportimport/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/testing.py -------------------------------------------------------------------------------- /src/collective/exportimport/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/collective/exportimport/tests/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/file.pdf -------------------------------------------------------------------------------- /src/collective/exportimport/tests/test_drop_and_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/test_drop_and_include.py -------------------------------------------------------------------------------- /src/collective/exportimport/tests/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/test_export.py -------------------------------------------------------------------------------- /src/collective/exportimport/tests/test_fix_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/test_fix_html.py -------------------------------------------------------------------------------- /src/collective/exportimport/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/test_import.py -------------------------------------------------------------------------------- /src/collective/exportimport/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/src/collective/exportimport/tests/test_setup.py -------------------------------------------------------------------------------- /test-4.3.x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/test-4.3.x.cfg -------------------------------------------------------------------------------- /test-5.0.x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/test-5.0.x.cfg -------------------------------------------------------------------------------- /test-5.1.x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/test-5.1.x.cfg -------------------------------------------------------------------------------- /test-5.2.x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/test-5.2.x.cfg -------------------------------------------------------------------------------- /test-6.0.x.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/test-6.0.x.cfg -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collective/collective.exportimport/HEAD/tox.ini --------------------------------------------------------------------------------