├── .ci ├── build.sh ├── check_moban.sh ├── deploy.sh └── deploy_key.enc ├── .coafile ├── .gitignore ├── .gitlab-ci.yml ├── .moban.dt ├── community-gitignore.jj2 └── community-test-requirements.txt.jj2 ├── .moban.yaml ├── .nocover.yaml ├── .travis.yml ├── LICENSE ├── README.md ├── activity └── scraper.py ├── community ├── __init__.py ├── config.py ├── filters.py ├── git.py ├── settings.py ├── tests │ ├── __init__.py │ └── test_git.py ├── urls.py ├── views.py └── wsgi.py ├── conftest.py ├── data ├── __init__.py ├── apps.py ├── contrib_data.py ├── issues.py ├── management │ └── commands │ │ ├── create_org_cluster_map_and_activity_graph.py │ │ ├── fetch_deployed_data.py │ │ ├── import_contributors_data.py │ │ ├── import_issues_data.py │ │ └── import_merge_requests_data.py ├── merge_requests.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180704_1130.py │ ├── 0003_auto_20180801_0456.py │ ├── 0004_auto_20180809_2229.py │ ├── 0005_auto_20190801_1442.py │ ├── 0006_auto_20190801_1752.py │ └── __init__.py ├── models.py ├── newcomers.py ├── org_cluster_map_handler.py ├── tests │ ├── __init__.py │ ├── test_contrib_data.py │ ├── test_issues.py │ ├── test_management_commands.py │ ├── test_merge_requests.py │ ├── test_models.py │ ├── test_org_cluster_map_handler.py │ └── test_views.py ├── urls.py ├── views.py └── webservices.py ├── docs └── _static │ └── images │ └── header.png ├── gamification ├── __init__.py ├── data │ ├── config.py │ └── points.py ├── labels.py ├── management │ └── commands │ │ ├── create_config_data.py │ │ ├── create_participants.py │ │ └── update_participants_data.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── participants.py ├── points.py ├── process │ ├── __init__.py │ ├── activity.py │ ├── activity_points.py │ └── update.py ├── tests │ ├── __init__.py │ ├── test_activity.py │ ├── test_activity_points.py │ ├── test_labels.py │ ├── test_management_commands.py │ ├── test_models.py │ ├── test_points.py │ └── test_views.py └── views.py ├── gci ├── __init__.py ├── api_actions.py ├── apps.py ├── client.py ├── config.py ├── feeds.py ├── gitorg.py ├── issues.py ├── management │ └── commands │ │ ├── cleanse_gci_task_data.py │ │ ├── create_issue_tasks.py │ │ ├── fetch_gci_task_data.py │ │ ├── publish_tasks.py │ │ └── show_linked_students.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── students.py ├── task.py ├── tests.py ├── urls.py └── views.py ├── gsoc ├── __init__.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py └── models.py ├── inactive_issues └── inactive_issues_scraper.py ├── log └── view_log.py ├── manage.py ├── meta_review ├── __init__.py ├── apps.py ├── dump_to_db.py ├── handler.py ├── load_from_db.py ├── management │ └── commands │ │ └── run_meta_review_system.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180707_0305.py │ └── __init__.py ├── models.py ├── urls.py └── views.py ├── model ├── __init__.py ├── apps.py ├── migrations │ └── __init__.py ├── urls.py └── views.py ├── openhub ├── __init__.py ├── affiliated_committers.py ├── apps.py ├── data.py ├── management │ └── commands │ │ ├── import_affiliated_committers_data.py │ │ ├── import_openhub_data.py │ │ ├── import_organization_data.py │ │ ├── import_outside_committers_data.py │ │ ├── import_outside_projects_data.py │ │ └── import_portfolio_projects_data.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── oh_token.py ├── organization.py ├── outside_committers.py ├── outside_projects.py ├── portfolio_projects.py ├── urls.py └── views.py ├── requirements.txt ├── runtime.txt ├── setup.cfg ├── static ├── css │ ├── index.css │ └── main.css ├── images │ ├── favicon.ico │ ├── os_community_header.jpg │ └── os_community_logo.png ├── js │ ├── index.js │ └── main.js └── timeago.js ├── templates ├── base.html ├── contributors.html ├── gamification.html ├── index.html ├── map.html ├── meta_review.html ├── model.html ├── model │ └── templates │ │ ├── affiliated_committer_detail.html │ │ ├── affiliated_committer_list.html │ │ ├── base.html │ │ ├── organization_detail.html │ │ ├── organization_list.html │ │ ├── outside_committer_detail.html │ │ ├── outside_committer_list.html │ │ ├── outside_project_detail.html │ │ ├── outside_project_list.html │ │ ├── portfolio_project_detail.html │ │ └── portfolio_project_list.html └── openhub.html ├── test-requirements.txt └── unassigned_issues └── unassigned_issues_scraper.py /.ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.ci/build.sh -------------------------------------------------------------------------------- /.ci/check_moban.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.ci/check_moban.sh -------------------------------------------------------------------------------- /.ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.ci/deploy.sh -------------------------------------------------------------------------------- /.ci/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.ci/deploy_key.enc -------------------------------------------------------------------------------- /.coafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.coafile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.moban.dt/community-gitignore.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.moban.dt/community-gitignore.jj2 -------------------------------------------------------------------------------- /.moban.dt/community-test-requirements.txt.jj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.moban.dt/community-test-requirements.txt.jj2 -------------------------------------------------------------------------------- /.moban.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.moban.yaml -------------------------------------------------------------------------------- /.nocover.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.nocover.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/README.md -------------------------------------------------------------------------------- /activity/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/activity/scraper.py -------------------------------------------------------------------------------- /community/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/config.py -------------------------------------------------------------------------------- /community/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/filters.py -------------------------------------------------------------------------------- /community/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/git.py -------------------------------------------------------------------------------- /community/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/settings.py -------------------------------------------------------------------------------- /community/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /community/tests/test_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/tests/test_git.py -------------------------------------------------------------------------------- /community/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/urls.py -------------------------------------------------------------------------------- /community/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/views.py -------------------------------------------------------------------------------- /community/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/community/wsgi.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/conftest.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/apps.py -------------------------------------------------------------------------------- /data/contrib_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/contrib_data.py -------------------------------------------------------------------------------- /data/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/issues.py -------------------------------------------------------------------------------- /data/management/commands/create_org_cluster_map_and_activity_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/management/commands/create_org_cluster_map_and_activity_graph.py -------------------------------------------------------------------------------- /data/management/commands/fetch_deployed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/management/commands/fetch_deployed_data.py -------------------------------------------------------------------------------- /data/management/commands/import_contributors_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/management/commands/import_contributors_data.py -------------------------------------------------------------------------------- /data/management/commands/import_issues_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/management/commands/import_issues_data.py -------------------------------------------------------------------------------- /data/management/commands/import_merge_requests_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/management/commands/import_merge_requests_data.py -------------------------------------------------------------------------------- /data/merge_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/merge_requests.py -------------------------------------------------------------------------------- /data/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0001_initial.py -------------------------------------------------------------------------------- /data/migrations/0002_auto_20180704_1130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0002_auto_20180704_1130.py -------------------------------------------------------------------------------- /data/migrations/0003_auto_20180801_0456.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0003_auto_20180801_0456.py -------------------------------------------------------------------------------- /data/migrations/0004_auto_20180809_2229.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0004_auto_20180809_2229.py -------------------------------------------------------------------------------- /data/migrations/0005_auto_20190801_1442.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0005_auto_20190801_1442.py -------------------------------------------------------------------------------- /data/migrations/0006_auto_20190801_1752.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/migrations/0006_auto_20190801_1752.py -------------------------------------------------------------------------------- /data/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/models.py -------------------------------------------------------------------------------- /data/newcomers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/newcomers.py -------------------------------------------------------------------------------- /data/org_cluster_map_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/org_cluster_map_handler.py -------------------------------------------------------------------------------- /data/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/tests/test_contrib_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_contrib_data.py -------------------------------------------------------------------------------- /data/tests/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_issues.py -------------------------------------------------------------------------------- /data/tests/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_management_commands.py -------------------------------------------------------------------------------- /data/tests/test_merge_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_merge_requests.py -------------------------------------------------------------------------------- /data/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_models.py -------------------------------------------------------------------------------- /data/tests/test_org_cluster_map_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_org_cluster_map_handler.py -------------------------------------------------------------------------------- /data/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/tests/test_views.py -------------------------------------------------------------------------------- /data/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/urls.py -------------------------------------------------------------------------------- /data/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/views.py -------------------------------------------------------------------------------- /data/webservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/data/webservices.py -------------------------------------------------------------------------------- /docs/_static/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/docs/_static/images/header.png -------------------------------------------------------------------------------- /gamification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamification/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/data/config.py -------------------------------------------------------------------------------- /gamification/data/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/data/points.py -------------------------------------------------------------------------------- /gamification/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/labels.py -------------------------------------------------------------------------------- /gamification/management/commands/create_config_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/management/commands/create_config_data.py -------------------------------------------------------------------------------- /gamification/management/commands/create_participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/management/commands/create_participants.py -------------------------------------------------------------------------------- /gamification/management/commands/update_participants_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/management/commands/update_participants_data.py -------------------------------------------------------------------------------- /gamification/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/migrations/0001_initial.py -------------------------------------------------------------------------------- /gamification/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/models.py -------------------------------------------------------------------------------- /gamification/participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/participants.py -------------------------------------------------------------------------------- /gamification/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/points.py -------------------------------------------------------------------------------- /gamification/process/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamification/process/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/process/activity.py -------------------------------------------------------------------------------- /gamification/process/activity_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/process/activity_points.py -------------------------------------------------------------------------------- /gamification/process/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/process/update.py -------------------------------------------------------------------------------- /gamification/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gamification/tests/test_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_activity.py -------------------------------------------------------------------------------- /gamification/tests/test_activity_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_activity_points.py -------------------------------------------------------------------------------- /gamification/tests/test_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_labels.py -------------------------------------------------------------------------------- /gamification/tests/test_management_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_management_commands.py -------------------------------------------------------------------------------- /gamification/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_models.py -------------------------------------------------------------------------------- /gamification/tests/test_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_points.py -------------------------------------------------------------------------------- /gamification/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/tests/test_views.py -------------------------------------------------------------------------------- /gamification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gamification/views.py -------------------------------------------------------------------------------- /gci/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gci/api_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/api_actions.py -------------------------------------------------------------------------------- /gci/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/apps.py -------------------------------------------------------------------------------- /gci/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/client.py -------------------------------------------------------------------------------- /gci/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/config.py -------------------------------------------------------------------------------- /gci/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/feeds.py -------------------------------------------------------------------------------- /gci/gitorg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/gitorg.py -------------------------------------------------------------------------------- /gci/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/issues.py -------------------------------------------------------------------------------- /gci/management/commands/cleanse_gci_task_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/management/commands/cleanse_gci_task_data.py -------------------------------------------------------------------------------- /gci/management/commands/create_issue_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/management/commands/create_issue_tasks.py -------------------------------------------------------------------------------- /gci/management/commands/fetch_gci_task_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/management/commands/fetch_gci_task_data.py -------------------------------------------------------------------------------- /gci/management/commands/publish_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/management/commands/publish_tasks.py -------------------------------------------------------------------------------- /gci/management/commands/show_linked_students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/management/commands/show_linked_students.py -------------------------------------------------------------------------------- /gci/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/migrations/0001_initial.py -------------------------------------------------------------------------------- /gci/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gci/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/models.py -------------------------------------------------------------------------------- /gci/students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/students.py -------------------------------------------------------------------------------- /gci/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/task.py -------------------------------------------------------------------------------- /gci/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/tests.py -------------------------------------------------------------------------------- /gci/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/urls.py -------------------------------------------------------------------------------- /gci/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gci/views.py -------------------------------------------------------------------------------- /gsoc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gsoc/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gsoc/apps.py -------------------------------------------------------------------------------- /gsoc/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gsoc/migrations/0001_initial.py -------------------------------------------------------------------------------- /gsoc/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gsoc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/gsoc/models.py -------------------------------------------------------------------------------- /inactive_issues/inactive_issues_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/inactive_issues/inactive_issues_scraper.py -------------------------------------------------------------------------------- /log/view_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/log/view_log.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/manage.py -------------------------------------------------------------------------------- /meta_review/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta_review/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/apps.py -------------------------------------------------------------------------------- /meta_review/dump_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/dump_to_db.py -------------------------------------------------------------------------------- /meta_review/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/handler.py -------------------------------------------------------------------------------- /meta_review/load_from_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/load_from_db.py -------------------------------------------------------------------------------- /meta_review/management/commands/run_meta_review_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/management/commands/run_meta_review_system.py -------------------------------------------------------------------------------- /meta_review/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/migrations/0001_initial.py -------------------------------------------------------------------------------- /meta_review/migrations/0002_auto_20180707_0305.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/migrations/0002_auto_20180707_0305.py -------------------------------------------------------------------------------- /meta_review/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meta_review/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/models.py -------------------------------------------------------------------------------- /meta_review/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/urls.py -------------------------------------------------------------------------------- /meta_review/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/meta_review/views.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/model/apps.py -------------------------------------------------------------------------------- /model/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/model/urls.py -------------------------------------------------------------------------------- /model/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/model/views.py -------------------------------------------------------------------------------- /openhub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openhub/affiliated_committers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/affiliated_committers.py -------------------------------------------------------------------------------- /openhub/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/apps.py -------------------------------------------------------------------------------- /openhub/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_affiliated_committers_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_affiliated_committers_data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_openhub_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_openhub_data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_organization_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_organization_data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_outside_committers_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_outside_committers_data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_outside_projects_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_outside_projects_data.py -------------------------------------------------------------------------------- /openhub/management/commands/import_portfolio_projects_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/management/commands/import_portfolio_projects_data.py -------------------------------------------------------------------------------- /openhub/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/migrations/0001_initial.py -------------------------------------------------------------------------------- /openhub/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openhub/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/models.py -------------------------------------------------------------------------------- /openhub/oh_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/oh_token.py -------------------------------------------------------------------------------- /openhub/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/organization.py -------------------------------------------------------------------------------- /openhub/outside_committers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/outside_committers.py -------------------------------------------------------------------------------- /openhub/outside_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/outside_projects.py -------------------------------------------------------------------------------- /openhub/portfolio_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/portfolio_projects.py -------------------------------------------------------------------------------- /openhub/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/urls.py -------------------------------------------------------------------------------- /openhub/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/openhub/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.7 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/setup.cfg -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/os_community_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/images/os_community_header.jpg -------------------------------------------------------------------------------- /static/images/os_community_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/images/os_community_logo.png -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/static/timeago.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/contributors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/contributors.html -------------------------------------------------------------------------------- /templates/gamification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/gamification.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/map.html -------------------------------------------------------------------------------- /templates/meta_review.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/meta_review.html -------------------------------------------------------------------------------- /templates/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model.html -------------------------------------------------------------------------------- /templates/model/templates/affiliated_committer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/affiliated_committer_detail.html -------------------------------------------------------------------------------- /templates/model/templates/affiliated_committer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/affiliated_committer_list.html -------------------------------------------------------------------------------- /templates/model/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/base.html -------------------------------------------------------------------------------- /templates/model/templates/organization_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/organization_detail.html -------------------------------------------------------------------------------- /templates/model/templates/organization_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/organization_list.html -------------------------------------------------------------------------------- /templates/model/templates/outside_committer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/outside_committer_detail.html -------------------------------------------------------------------------------- /templates/model/templates/outside_committer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/outside_committer_list.html -------------------------------------------------------------------------------- /templates/model/templates/outside_project_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/outside_project_detail.html -------------------------------------------------------------------------------- /templates/model/templates/outside_project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/outside_project_list.html -------------------------------------------------------------------------------- /templates/model/templates/portfolio_project_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/portfolio_project_detail.html -------------------------------------------------------------------------------- /templates/model/templates/portfolio_project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/model/templates/portfolio_project_list.html -------------------------------------------------------------------------------- /templates/openhub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/templates/openhub.html -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /unassigned_issues/unassigned_issues_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coala/community/HEAD/unassigned_issues/unassigned_issues_scraper.py --------------------------------------------------------------------------------