├── .gitignore ├── LICENSE ├── README.md ├── docs └── checklist.md ├── requirements └── base.txt ├── scripts └── label_updates │ ├── README.md │ ├── add_update_labels.py │ ├── github_specs │ └── template_github_specs.json │ ├── label_specs │ ├── label_input_dataverse-org.txt │ ├── label_input_eyedata.txt │ ├── label_input_geoconnect.txt │ ├── label_input_milestone-reader.txt │ ├── label_input_phthisis-ravens.txt │ ├── label_input_plaid.txt │ ├── label_input_private-zelig.txt │ ├── label_input_shared-dataverse-information.txt │ └── sample_label_input.txt │ └── make_md_table.py └── src ├── __init__.py ├── github_issues ├── __init__.py ├── github_issue_maker.py ├── label_helper.py ├── label_map.py ├── md_translate.py ├── migration_manager.py ├── milestone_helper.py ├── templates │ ├── comment.md │ ├── description.md │ └── related_issues.md └── user_map_helper.py ├── redmine_ticket ├── __init__.py ├── redmine_issue_downloader.py ├── redmine_issue_updater.py └── templates │ └── description_with_github_link.md ├── settings ├── Workbook1.xlsx ├── __init__.py ├── base.py ├── local_sample.py ├── sample_label_map.csv ├── sample_label_map2.csv ├── sample_milestone_map.csv ├── sample_milestone_map.xlsx ├── sample_milestone_map2.csv └── sample_user_map.csv └── utils ├── __init__.py └── msg_util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/README.md -------------------------------------------------------------------------------- /docs/checklist.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /scripts/label_updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/README.md -------------------------------------------------------------------------------- /scripts/label_updates/add_update_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/add_update_labels.py -------------------------------------------------------------------------------- /scripts/label_updates/github_specs/template_github_specs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/github_specs/template_github_specs.json -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_dataverse-org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_dataverse-org.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_eyedata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_eyedata.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_geoconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_geoconnect.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_milestone-reader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_milestone-reader.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_phthisis-ravens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_phthisis-ravens.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_plaid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_plaid.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_private-zelig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_private-zelig.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/label_input_shared-dataverse-information.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/label_input_shared-dataverse-information.txt -------------------------------------------------------------------------------- /scripts/label_updates/label_specs/sample_label_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/label_specs/sample_label_input.txt -------------------------------------------------------------------------------- /scripts/label_updates/make_md_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/scripts/label_updates/make_md_table.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github_issues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/github_issues/github_issue_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/github_issue_maker.py -------------------------------------------------------------------------------- /src/github_issues/label_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/label_helper.py -------------------------------------------------------------------------------- /src/github_issues/label_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/label_map.py -------------------------------------------------------------------------------- /src/github_issues/md_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/md_translate.py -------------------------------------------------------------------------------- /src/github_issues/migration_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/migration_manager.py -------------------------------------------------------------------------------- /src/github_issues/milestone_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/milestone_helper.py -------------------------------------------------------------------------------- /src/github_issues/templates/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/templates/comment.md -------------------------------------------------------------------------------- /src/github_issues/templates/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/templates/description.md -------------------------------------------------------------------------------- /src/github_issues/templates/related_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/templates/related_issues.md -------------------------------------------------------------------------------- /src/github_issues/user_map_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/github_issues/user_map_helper.py -------------------------------------------------------------------------------- /src/redmine_ticket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redmine_ticket/redmine_issue_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/redmine_ticket/redmine_issue_downloader.py -------------------------------------------------------------------------------- /src/redmine_ticket/redmine_issue_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/redmine_ticket/redmine_issue_updater.py -------------------------------------------------------------------------------- /src/redmine_ticket/templates/description_with_github_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/redmine_ticket/templates/description_with_github_link.md -------------------------------------------------------------------------------- /src/settings/Workbook1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/Workbook1.xlsx -------------------------------------------------------------------------------- /src/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/base.py -------------------------------------------------------------------------------- /src/settings/local_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/local_sample.py -------------------------------------------------------------------------------- /src/settings/sample_label_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_label_map.csv -------------------------------------------------------------------------------- /src/settings/sample_label_map2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_label_map2.csv -------------------------------------------------------------------------------- /src/settings/sample_milestone_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_milestone_map.csv -------------------------------------------------------------------------------- /src/settings/sample_milestone_map.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_milestone_map.xlsx -------------------------------------------------------------------------------- /src/settings/sample_milestone_map2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_milestone_map2.csv -------------------------------------------------------------------------------- /src/settings/sample_user_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/settings/sample_user_map.csv -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/msg_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IQSS/redmine2github/HEAD/src/utils/msg_util.py --------------------------------------------------------------------------------