├── .gitignore ├── .gitmodules ├── .openshift ├── action_hooks │ ├── build │ ├── deploy │ ├── post_deploy │ └── pre_build └── cron │ └── daily │ └── warm_detailpage_cache ├── HINTS.md ├── LICENSE.txt ├── README.md ├── data └── .gitkeep ├── libs └── .gitkeep ├── requirements.txt ├── scripts ├── inve ├── run_task ├── update_blogs ├── update_bug_trackers ├── update_irc_meetings ├── update_mailing_lists ├── update_vcs_repositories └── warm_detailpage_cache ├── setup.py └── wsgi ├── .gitignore ├── .htaccess ├── application ├── healthmeter ├── .gitignore ├── __init__.py ├── bloginfo │ ├── __init__.py │ ├── importers │ │ ├── __init__.py │ │ ├── common.py │ │ └── rss.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── update_blogs.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── bootstrap.sql ├── btinfo │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ └── initial_data.json │ ├── importers │ │ ├── __init__.py │ │ ├── bugzilla_importer.py │ │ ├── common.py │ │ ├── github_importer.py │ │ ├── jira_importer.py │ │ └── redmine_importer.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── setup_github.py │ │ │ └── update_bug_trackers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_bugtracker_api_token.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── eventinfo │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── fields.py ├── hmeter_frontend │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── fixtures │ │ ├── initial_data.json │ │ └── initial_metrics.json │ ├── forms.py │ ├── handlers.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── calc_metric_scores.py │ │ │ ├── clear_cache.py │ │ │ ├── render_paths.py │ │ │ ├── render_project.py │ │ │ ├── trim_results.py │ │ │ ├── update_everything.py │ │ │ └── warm_detailpage_cache.py │ ├── managers.py │ ├── metrics │ │ ├── __init__.py │ │ ├── algorithms │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bugs.py │ │ │ ├── events.py │ │ │ ├── infrastructure.py │ │ │ ├── mailing_list.py │ │ │ ├── mixins.py │ │ │ ├── normalizers.py │ │ │ ├── publicity.py │ │ │ ├── quality.py │ │ │ ├── release.py │ │ │ └── vcs.py │ │ ├── calc.py │ │ ├── constants.py │ │ └── lookup.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── renderers.py │ ├── static │ │ ├── chaoss-logo.png │ │ ├── css │ │ │ ├── about.css │ │ │ ├── all-projects.less │ │ │ ├── bootstrap │ │ │ ├── bootstrap-slider.css │ │ │ ├── business-units.less │ │ │ ├── common.less │ │ │ ├── project-compare.css │ │ │ ├── project-detail.less │ │ │ ├── project-index.less │ │ │ └── project-problems.css │ │ ├── jquery-treeview │ │ ├── js │ │ │ ├── all-projects-search.js │ │ │ ├── bootstrap │ │ │ ├── bootstrap-slider.js │ │ │ ├── derived.js │ │ │ ├── excanvas.min.js │ │ │ ├── external-links.js │ │ │ ├── feedback.js │ │ │ ├── jquery-icontains.js │ │ │ ├── jquery-sortable.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.ranges.min.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tablesorter │ │ │ ├── project │ │ │ │ ├── compare │ │ │ │ │ ├── colourize.js │ │ │ │ │ ├── draggable-headers.js │ │ │ │ │ ├── expandable-metrics.js │ │ │ │ │ └── scorebars.js │ │ │ │ ├── detail │ │ │ │ │ ├── graphs.js │ │ │ │ │ ├── layout.js │ │ │ │ │ └── metrics.js │ │ │ │ ├── health-score-utils.js │ │ │ │ └── index │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── health-scores.js │ │ │ │ │ └── tablesorter.js │ │ │ └── ratelimit.js │ │ ├── pin-down.png │ │ ├── pin-up.png │ │ ├── print.png │ │ ├── redhat-logo.png │ │ ├── spinner.gif │ │ ├── trending-graph-down.png │ │ ├── trending-graph-equals.png │ │ ├── trending-graph-src.svg │ │ ├── trending-graph-up.png │ │ └── warning-na-metric.png │ ├── templates │ │ └── hmeter_frontend │ │ │ ├── about.html │ │ │ ├── all-projects.html │ │ │ ├── base.html │ │ │ ├── business-units.html │ │ │ ├── contact.html │ │ │ ├── migration-schedule.html │ │ │ └── project │ │ │ ├── compare.html │ │ │ ├── detail.html │ │ │ ├── emaildomains │ │ │ ├── fragments │ │ │ ├── detail │ │ │ │ ├── metric-tree.html │ │ │ │ └── sections │ │ │ │ │ ├── base.html │ │ │ │ │ ├── blog-graph.js │ │ │ │ │ ├── blogs-activity.html │ │ │ │ │ ├── bug-graphs.js │ │ │ │ │ ├── bug-report-activity.html │ │ │ │ │ ├── commit-activity.html │ │ │ │ │ ├── commit-graphs.js │ │ │ │ │ ├── general-quality-graphs.js │ │ │ │ │ ├── general-quality.html │ │ │ │ │ ├── mailing-list-activity.html │ │ │ │ │ ├── mailing-list-graphs.js │ │ │ │ │ ├── publicity.html │ │ │ │ │ ├── security.html │ │ │ │ │ └── tabbed.html │ │ │ └── project-listing-table.html │ │ │ ├── graph-data.js │ │ │ ├── index.html │ │ │ ├── metric-history.html │ │ │ └── problems.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── divby.py │ │ ├── includeor.py │ │ ├── jsonify.py │ │ ├── metrics.py │ │ └── recurse.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── compression.py │ │ ├── containers.py │ │ ├── filetools.py │ │ ├── iterators.py │ │ ├── mail.py │ │ ├── misc.py │ │ ├── path.py │ │ ├── stats.py │ │ └── web.py │ └── views │ │ ├── __init__.py │ │ ├── all_projects │ │ ├── __init__.py │ │ ├── first-three.json │ │ └── jboss-projects.json │ │ ├── business_units.py │ │ ├── feedback.py │ │ ├── project │ │ ├── __init__.py │ │ ├── compare.py │ │ ├── detail.py │ │ ├── graphs.py │ │ ├── index.py │ │ ├── metrichistory.py │ │ └── problems.py │ │ └── static.py ├── importerutils │ ├── __init__.py │ ├── exceptions.py │ ├── importers.py │ ├── management │ │ ├── __init__.py │ │ └── base.py │ ├── mptasks.py │ ├── registry.py │ ├── shortcuts.py │ └── signals.py ├── managers.py ├── mlinfo │ ├── __init__.py │ ├── admin.py │ ├── importers │ │ ├── __init__.py │ │ ├── common.py │ │ ├── http.py │ │ ├── importer.py │ │ ├── mbox.py │ │ └── nntp.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── update_mailing_lists.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── participantinfo │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── projectinfo │ ├── __init__.py │ ├── admin.py │ ├── decorators.py │ ├── fixtures │ │ ├── initial_business_units.json │ │ └── initial_products.json │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── dump_last_updated.py │ │ │ ├── dump_projects.py │ │ │ ├── import_releases.py │ │ │ └── list_projects.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── resources.py │ ├── tests.py │ └── views.py ├── settings │ ├── .gitignore │ ├── __init__.py │ ├── cardinal.py │ ├── cardinal1x.py │ ├── common.py │ ├── dev.py │ ├── djdt.py │ ├── openshift.py │ └── pseudo_openshift.py ├── templates │ └── 404.html ├── test-metrics.py ├── test-nntp-importer.py ├── urls.py ├── utils.py ├── vcsinfo │ ├── __init__.py │ ├── fixtures │ │ └── initial_data.json │ ├── importers │ │ ├── __init__.py │ │ ├── common.py │ │ ├── dvcsimporter.py │ │ └── git_importer.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── update_vcs_repositories.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── views │ ├── __init__.py │ ├── errors.py │ └── generic.py ├── manage.py └── static └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.gitmodules -------------------------------------------------------------------------------- /.openshift/action_hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.openshift/action_hooks/build -------------------------------------------------------------------------------- /.openshift/action_hooks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.openshift/action_hooks/deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/post_deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.openshift/action_hooks/post_deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/.openshift/action_hooks/pre_build -------------------------------------------------------------------------------- /.openshift/cron/daily/warm_detailpage_cache: -------------------------------------------------------------------------------- 1 | ../../../scripts/warm_detailpage_cache -------------------------------------------------------------------------------- /HINTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/HINTS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/inve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/scripts/inve -------------------------------------------------------------------------------- /scripts/run_task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/scripts/run_task -------------------------------------------------------------------------------- /scripts/update_blogs: -------------------------------------------------------------------------------- 1 | ./run_task -------------------------------------------------------------------------------- /scripts/update_bug_trackers: -------------------------------------------------------------------------------- 1 | run_task -------------------------------------------------------------------------------- /scripts/update_irc_meetings: -------------------------------------------------------------------------------- 1 | run_task -------------------------------------------------------------------------------- /scripts/update_mailing_lists: -------------------------------------------------------------------------------- 1 | ./run_task -------------------------------------------------------------------------------- /scripts/update_vcs_repositories: -------------------------------------------------------------------------------- 1 | ./run_task -------------------------------------------------------------------------------- /scripts/warm_detailpage_cache: -------------------------------------------------------------------------------- 1 | run_task -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/setup.py -------------------------------------------------------------------------------- /wsgi/.gitignore: -------------------------------------------------------------------------------- 1 | /media/ 2 | -------------------------------------------------------------------------------- /wsgi/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/.htaccess -------------------------------------------------------------------------------- /wsgi/application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/application -------------------------------------------------------------------------------- /wsgi/healthmeter/.gitignore: -------------------------------------------------------------------------------- 1 | sqlite3.db 2 | -------------------------------------------------------------------------------- /wsgi/healthmeter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/importers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/importers/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/importers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/importers/common.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/importers/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/importers/rss.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/management/commands/update_blogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/management/commands/update_blogs.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/bloginfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bloginfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/bootstrap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/bootstrap.sql -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/admin.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/fixtures/initial_data.json -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/bugzilla_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/bugzilla_importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/common.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/github_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/github_importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/jira_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/jira_importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/importers/redmine_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/importers/redmine_importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/management/commands/setup_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/management/commands/setup_github.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/management/commands/update_bug_trackers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/management/commands/update_bug_trackers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/migrations/0002_bugtracker_api_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/migrations/0002_bugtracker_api_token.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/tests.py -------------------------------------------------------------------------------- /wsgi/healthmeter/btinfo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/btinfo/views.py -------------------------------------------------------------------------------- /wsgi/healthmeter/eventinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/eventinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/eventinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/eventinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/eventinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/eventinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/fields.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Red Hat, Inc. 2 | # License: GPLv3 or any later version 3 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/admin.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/context_processors.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/fixtures/initial_data.json -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/fixtures/initial_metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/fixtures/initial_metrics.json -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/forms.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/handlers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/calc_metric_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/calc_metric_scores.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/clear_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/clear_cache.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/render_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/render_paths.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/render_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/render_project.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/trim_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/trim_results.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/update_everything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/update_everything.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/management/commands/warm_detailpage_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/management/commands/warm_detailpage_cache.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/managers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/base.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/bugs.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/events.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/infrastructure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/infrastructure.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/mailing_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/mailing_list.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/mixins.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/normalizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/normalizers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/publicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/publicity.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/quality.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/release.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/algorithms/vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/algorithms/vcs.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/calc.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/constants.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/metrics/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/metrics/lookup.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/renderers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/chaoss-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/chaoss-logo.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/about.css -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/all-projects.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/all-projects.less -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/bootstrap: -------------------------------------------------------------------------------- 1 | ../../../../../libs/bootstrap/less/ -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/bootstrap-slider.css: -------------------------------------------------------------------------------- 1 | ../../../../../libs/bootstrap-slider/css/bootstrap-slider.css -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/business-units.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/business-units.less -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/common.less -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/project-compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/project-compare.css -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/project-detail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/project-detail.less -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/project-index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/project-index.less -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/css/project-problems.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/css/project-problems.css -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/jquery-treeview: -------------------------------------------------------------------------------- 1 | ../../../../libs/jquery-treeview -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/all-projects-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/all-projects-search.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/bootstrap: -------------------------------------------------------------------------------- 1 | ../../../../../libs/bootstrap/dist/js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/bootstrap-slider.js: -------------------------------------------------------------------------------- 1 | ../../../../../libs/bootstrap-slider/js/bootstrap-slider.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/derived.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/derived.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/excanvas.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/external-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/external-links.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/feedback.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery-icontains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery-icontains.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery-sortable.js: -------------------------------------------------------------------------------- 1 | ../../../../../libs/jquery-sortable/source/js/jquery-sortable.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.colorhelpers.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.colorhelpers.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.canvas.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.categories.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.categories.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.crosshair.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.crosshair.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.errorbars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.errorbars.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.fillbetween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.fillbetween.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.image.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.navigate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.navigate.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.pie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.pie.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.ranges.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.ranges.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.resize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.resize.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.selection.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.selection.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.stack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.stack.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.symbol.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.threshold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.threshold.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.time.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.flot.time.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/jquery.min.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/jquery.tablesorter: -------------------------------------------------------------------------------- 1 | ../../../../../libs/tablesorter/ -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/compare/colourize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/compare/colourize.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/compare/draggable-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/compare/draggable-headers.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/compare/expandable-metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/compare/expandable-metrics.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/compare/scorebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/compare/scorebars.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/detail/graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/detail/graphs.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/detail/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/detail/layout.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/detail/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/detail/metrics.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/health-score-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/health-score-utils.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/index/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/index/compare.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/index/health-scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/index/health-scores.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/project/index/tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/project/index/tablesorter.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/js/ratelimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/js/ratelimit.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/pin-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/pin-down.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/pin-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/pin-up.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/print.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/redhat-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/redhat-logo.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/spinner.gif -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/trending-graph-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/trending-graph-down.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/trending-graph-equals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/trending-graph-equals.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/trending-graph-src.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/trending-graph-src.svg -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/trending-graph-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/trending-graph-up.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/static/warning-na-metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/static/warning-na-metric.png -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/about.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/all-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/all-projects.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/base.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/business-units.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/business-units.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/contact.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/migration-schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/migration-schedule.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/compare.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/detail.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/emaildomains: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/emaildomains -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/metric-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/metric-tree.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/base.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/blog-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/blog-graph.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/blogs-activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/blogs-activity.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/bug-graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/bug-graphs.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/bug-report-activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/bug-report-activity.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/commit-activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/commit-activity.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/commit-graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/commit-graphs.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/general-quality-graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/general-quality-graphs.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/general-quality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/general-quality.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/mailing-list-activity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/mailing-list-activity.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/mailing-list-graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/mailing-list-graphs.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/publicity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/publicity.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/security.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/tabbed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/detail/sections/tabbed.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/project-listing-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/fragments/project-listing-table.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/graph-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/graph-data.js -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/index.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/metric-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/metric-history.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/problems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templates/hmeter_frontend/project/problems.html -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/divby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templatetags/divby.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/includeor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templatetags/includeor.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/jsonify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templatetags/jsonify.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templatetags/metrics.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/templatetags/recurse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/templatetags/recurse.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/urls.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/cache.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/compression.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/containers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/filetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/filetools.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/iterators.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/mail.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/misc.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/path.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/stats.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/utils/web.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/all_projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/all_projects/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/all_projects/first-three.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/all_projects/first-three.json -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/all_projects/jboss-projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/all_projects/jboss-projects.json -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/business_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/business_units.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/feedback.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/compare.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/detail.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/graphs.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/index.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/metrichistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/metrichistory.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/project/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/project/problems.py -------------------------------------------------------------------------------- /wsgi/healthmeter/hmeter_frontend/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/hmeter_frontend/views/static.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/exceptions.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/importers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/importers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/management/base.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/mptasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/mptasks.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/registry.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/shortcuts.py -------------------------------------------------------------------------------- /wsgi/healthmeter/importerutils/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/importerutils/signals.py -------------------------------------------------------------------------------- /wsgi/healthmeter/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/managers.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/admin.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/common.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/http.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/mbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/mbox.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/importers/nntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/importers/nntp.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/management/commands/update_mailing_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/management/commands/update_mailing_lists.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/tests.py -------------------------------------------------------------------------------- /wsgi/healthmeter/mlinfo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/mlinfo/views.py -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/participantinfo/admin.py -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/participantinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/participantinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/participantinfo/tests.py -------------------------------------------------------------------------------- /wsgi/healthmeter/participantinfo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/participantinfo/views.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/admin.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/decorators.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/fixtures/initial_business_units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/fixtures/initial_business_units.json -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/fixtures/initial_products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/fixtures/initial_products.json -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/commands/dump_last_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/management/commands/dump_last_updated.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/commands/dump_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/management/commands/dump_projects.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/commands/import_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/management/commands/import_releases.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/management/commands/list_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/management/commands/list_projects.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/resources.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/tests.py -------------------------------------------------------------------------------- /wsgi/healthmeter/projectinfo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/projectinfo/views.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/.gitignore: -------------------------------------------------------------------------------- 1 | /local.py 2 | -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/cardinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/cardinal.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/cardinal1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/cardinal1x.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/common.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/dev.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/djdt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/djdt.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/openshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/openshift.py -------------------------------------------------------------------------------- /wsgi/healthmeter/settings/pseudo_openshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/settings/pseudo_openshift.py -------------------------------------------------------------------------------- /wsgi/healthmeter/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/templates/404.html -------------------------------------------------------------------------------- /wsgi/healthmeter/test-metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/test-metrics.py -------------------------------------------------------------------------------- /wsgi/healthmeter/test-nntp-importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/test-nntp-importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/urls.py -------------------------------------------------------------------------------- /wsgi/healthmeter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/utils.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/fixtures/initial_data.json -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/importers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/importers/__init__.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/importers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/importers/common.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/importers/dvcsimporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/importers/dvcsimporter.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/importers/git_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/importers/git_importer.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/management/commands/update_vcs_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/management/commands/update_vcs_repositories.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/migrations/0001_initial.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/models.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/tests.py -------------------------------------------------------------------------------- /wsgi/healthmeter/vcsinfo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/vcsinfo/views.py -------------------------------------------------------------------------------- /wsgi/healthmeter/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wsgi/healthmeter/views/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/views/errors.py -------------------------------------------------------------------------------- /wsgi/healthmeter/views/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/healthmeter/views/generic.py -------------------------------------------------------------------------------- /wsgi/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/manage.py -------------------------------------------------------------------------------- /wsgi/static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaoss/prospector/HEAD/wsgi/static/README --------------------------------------------------------------------------------