├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── converter └── aem_dispatcher_converter.py ├── main.py └── util ├── constants.py ├── conversion_report ├── conversion-report.md ├── conversion_operation.py ├── conversion_step.py └── summary_report_writer.py ├── file_operations_utility.py ├── folder_operations_utility.py ├── setup_logger_utility.py └── utilities.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | /result.log 4 | __pycache__/ 5 | *.py[cod] 6 | *$py.class 7 | .Python -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/README.md -------------------------------------------------------------------------------- /converter/aem_dispatcher_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/converter/aem_dispatcher_converter.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/main.py -------------------------------------------------------------------------------- /util/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/constants.py -------------------------------------------------------------------------------- /util/conversion_report/conversion-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/conversion_report/conversion-report.md -------------------------------------------------------------------------------- /util/conversion_report/conversion_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/conversion_report/conversion_operation.py -------------------------------------------------------------------------------- /util/conversion_report/conversion_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/conversion_report/conversion_step.py -------------------------------------------------------------------------------- /util/conversion_report/summary_report_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/conversion_report/summary_report_writer.py -------------------------------------------------------------------------------- /util/file_operations_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/file_operations_utility.py -------------------------------------------------------------------------------- /util/folder_operations_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/folder_operations_utility.py -------------------------------------------------------------------------------- /util/setup_logger_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/setup_logger_utility.py -------------------------------------------------------------------------------- /util/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aem-cloud-service-dispatcher-converter/HEAD/util/utilities.md --------------------------------------------------------------------------------